]> git.xonotic.org Git - xonotic/mediasource.git/commitdiff
Minigame texture sources
authorMattia Basaglia <mattia.basaglia@gmail.com>
Thu, 5 Feb 2015 17:47:21 +0000 (18:47 +0100)
committerMattia Basaglia <mattia.basaglia@gmail.com>
Thu, 5 Feb 2015 17:47:21 +0000 (18:47 +0100)
The files gfx/minigames/*/piece*.xcf are by Snow_56767

15 files changed:
gfx/minigames/build.sh [new file with mode: 0755]
gfx/minigames/nmm/board.svg [new file with mode: 0644]
gfx/minigames/nmm/icon.svg [new file with mode: 0644]
gfx/minigames/nmm/icon_notif.svg [new file with mode: 0644]
gfx/minigames/nmm/piece1.xcf [new file with mode: 0644]
gfx/minigames/nmm/piece2.xcf [new file with mode: 0644]
gfx/minigames/nmm/tile_active.svg [new file with mode: 0644]
gfx/minigames/nmm/tile_available.svg [new file with mode: 0644]
gfx/minigames/nmm/tile_selected.svg [new file with mode: 0644]
gfx/minigames/ttt/board.svg [new file with mode: 0644]
gfx/minigames/ttt/icon.svg [new file with mode: 0644]
gfx/minigames/ttt/icon_notif.svg [new file with mode: 0644]
gfx/minigames/ttt/piece1.xcf [new file with mode: 0644]
gfx/minigames/ttt/piece2.xcf [new file with mode: 0644]
gfx/minigames/ttt/winglow.svg [new file with mode: 0644]

diff --git a/gfx/minigames/build.sh b/gfx/minigames/build.sh
new file mode 100755 (executable)
index 0000000..49e0e4a
--- /dev/null
@@ -0,0 +1,120 @@
+#!/bin/bash
+
+CONVERT=convert
+SED="sed -r"
+MKDIR="mkdir -p"
+
+OUT_DIR=/tmp/minigames
+JPEG_QUALITY=75
+TEXTURE_SIZE=2048
+FORMAT=png
+
+# Converts images into $FORMAT
+# Synopsis: convert_image input.png output
+# Genreates output.jpg and output_alpha.jpg
+function convert_image()
+{
+       local covert_flags="-layers flatten"
+       if [ "$FORMAT" = "jpg" ]
+       then
+               covert_flags="$covert_flags -quality $JPEG_QUALITY"
+       fi
+       convert -background none "$1" $covert_flags "$2.$FORMAT"
+       if [ "$FORMAT" = "jpg" ]
+       then
+               convert -background none "$1" $covert_flags -alpha Extract "$2_alpha.jpg"
+       fi
+}
+
+# Ensure that the output jpg are of the appropriate size
+# Synopsis: scale_image output
+# Where "output" is the same as $2 in convert_image
+function scale_image()
+{
+       let max_w=$TEXTURE_SIZE
+       
+       if echo -n "$1" | grep -q ".*/piece.*"
+       then
+               let max_w/=4
+       fi
+       
+       if [ "$max_w" -gt 0 ]
+       then
+               let img_w=$(identify -format %w "$1.$FORMAT")
+               if [ "$img_w" -gt "$max_w" ]
+               then
+                       local scale=$(echo "scale=10; $max_w/$img_w*100" | bc)
+                       convert "$1.$FORMAT" -resize "$scale%" "$1.$FORMAT"
+                       if [ "$FORMAT" = "jpg" ]
+                       then
+                               convert "$1_alpha.jpg" -resize "$scale%" "$1_alpha.jpg"
+                       fi
+               fi
+       fi
+}
+
+# Create the files for packaging
+function generate()
+{
+       for src_file in $(git ls-files)
+       do
+               local out_dir="$OUT_DIR/gfx/hud/default/"
+               local out_file="$out_dir/$src_file"
+               $MKDIR "$out_dir/$(dirname "$src_file")"
+               
+               local file_extension="$(echo "$src_file" | sed -r "s/^(.*)\.([^.]+)$/\2/")"
+               local base_file="$(echo "$out_file" | sed -r "s/^(.*)\.([^.]+)$/\1/")"
+               
+               if echo -n "$file_extension" | grep -Eq "^(png|svg|tga|xcf)$" && 
+                       [ "$file_extension" != "$FORMAT" ]
+               then
+                       out_file="$base_file.$FORMAT"
+                       echo "$base_file"
+                       if [ "$src_file" -nt "$out_file" ]
+                       then
+                               echo -e "Compressing \x1b[1m$src_file\x1b[0m"
+                               convert_image "$src_file" "$base_file"
+                               scale_image "$base_file"
+                               continue
+                       fi
+               elif [ "$src_file" -nt "$out_file" ]
+               then
+                       echo -e "Copying \x1b[1m$src_file\x1b[0m"
+                       cp -T "$src_file" "$out_file"
+                       continue
+               fi
+               
+               echo -e "Skipping \x1b[1m$src_file\x1b[0m"
+               
+       done
+}
+
+SYSTEM_NAME=$(uname)
+if [ "$SYSTEM_NAME" = Darwin -o "$SYSTEM_NAME" = FreeBSD ]
+then
+       SED="sed -E"
+fi
+
+
+$MKDIR "$OUT_DIR"
+
+
+while [ "$1" ]
+do
+       case $1 in
+               help|-h|--help)
+                       echo TODO
+                       exit
+                       ;;
+               clean)
+                       echo -e "Removing old files"
+                       [ -n "$OUT_DIR" -a -e "$OUT_DIR" ] && rm -rf "$OUT_DIR"
+                       ;;
+               *)
+                       echo 1>&2 "Unknown option: $1"
+                       ;;
+       esac
+       shift
+done
+
+generate
diff --git a/gfx/minigames/nmm/board.svg b/gfx/minigames/nmm/board.svg
new file mode 100644 (file)
index 0000000..46b0170
--- /dev/null
@@ -0,0 +1,1379 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<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"
+   width="2048"
+   height="2048"
+   id="svg5104"
+   version="1.1"
+   inkscape:version="0.91pre2 r"
+   viewBox="0 0 2048 2048"
+   sodipodi:docname="nmm_board.svg"
+   inkscape:export-filename="nmm_board.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <defs
+     id="defs5106">
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter4927"
+       x="-0.096000001"
+       width="1.192"
+       y="-0.096000001"
+       height="1.192">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="3.171879"
+         id="feGaussianBlur4929" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter4975"
+       x="-0.1116"
+       width="1.2232"
+       y="-0.1116"
+       height="1.2232">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="3.3115325"
+         id="feGaussianBlur4977" />
+    </filter>
+    <linearGradient
+       id="linearGradient3606">
+      <stop
+         style="stop-color:#5fafff;stop-opacity:1"
+         offset="0"
+         id="stop3608" />
+      <stop
+         id="stop3614"
+         offset="0.80000001"
+         style="stop-color:#5fafff;stop-opacity:1;" />
+      <stop
+         style="stop-color:#bfdfff;stop-opacity:1;"
+         offset="1"
+         id="stop3610" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3698">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop3700" />
+      <stop
+         id="stop3706"
+         offset="0.78676492"
+         style="stop-color:#0f3f6f;stop-opacity:1;" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="1"
+         id="stop3702" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter7150"
+       x="-0.012"
+       width="1.024"
+       y="-0.012"
+       height="1.024">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="8.777143"
+         id="feGaussianBlur7152" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3606"
+       id="radialGradient7172"
+       cx="1018.2857"
+       cy="1020.5714"
+       fx="1018.2857"
+       fy="1020.5714"
+       r="883.71429"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3698"
+       id="radialGradient7176"
+       gradientUnits="userSpaceOnUse"
+       cx="1018.2857"
+       cy="1020.5714"
+       fx="1018.2857"
+       fy="1020.5714"
+       r="883.71429" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3606"
+       id="radialGradient7178"
+       gradientUnits="userSpaceOnUse"
+       cx="295.21707"
+       cy="592.49023"
+       fx="295.21707"
+       fy="592.49023"
+       r="35.607876" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3698"
+       id="radialGradient7184"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.92903975,0,0,0.92903975,20.948675,42.043252)"
+       cx="295.21707"
+       cy="592.49023"
+       fx="295.21707"
+       fy="592.49023"
+       r="35.607876" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3700"
+       id="radialGradient3715"
+       gradientUnits="userSpaceOnUse"
+       cx="1024"
+       cy="494"
+       fx="1024"
+       fy="494"
+       r="256" />
+    <linearGradient
+       id="linearGradient3700">
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="0"
+         id="stop3705" />
+      <stop
+         id="stop3707"
+         offset="0.31"
+         style="stop-color:#000000;stop-opacity:0;" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0.18431373;"
+         offset="0.44"
+         id="stop3709" />
+      <stop
+         id="stop3711"
+         offset="0.85000002"
+         style="stop-color:#000000;stop-opacity:0;" />
+      <stop
+         id="stop3713"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:0;" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3681"
+       id="radialGradient3687"
+       cx="1024"
+       cy="494"
+       fx="1024"
+       fy="494"
+       r="256"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient3681">
+      <stop
+         id="stop3691"
+         offset="0"
+         style="stop-color:#1f7fff;stop-opacity:0;" />
+      <stop
+         style="stop-color:#1f7fff;stop-opacity:0;"
+         offset="0.31"
+         id="stop3695" />
+      <stop
+         id="stop3689"
+         offset="0.44"
+         style="stop-color:#1f7fff;stop-opacity:0.18431373;" />
+      <stop
+         style="stop-color:#1f7fff;stop-opacity:0;"
+         offset="0.85000002"
+         id="stop3704" />
+      <stop
+         style="stop-color:#1f7fff;stop-opacity:0;"
+         offset="1"
+         id="stop3685" />
+    </linearGradient>
+    <filter
+       style="color-interpolation-filters:sRGB"
+       inkscape:collect="always"
+       id="filter3852"
+       inkscape:label="BlurGlow">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="7"
+         id="feGaussianBlur3854" />
+    </filter>
+    <filter
+       style="color-interpolation-filters:sRGB"
+       inkscape:collect="always"
+       id="filter3806"
+       x="-0.075428568"
+       width="1.1508571"
+       y="-0.132"
+       height="1.2640001"
+       inkscape:label="BlurShadow">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="6"
+         id="feGaussianBlur3808" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3699"
+       id="linearGradient3836"
+       x1="1024"
+       y1="640"
+       x2="1024"
+       y2="384"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient3699">
+      <stop
+         id="stop3701"
+         offset="0"
+         style="stop-color:#3f0f00;stop-opacity:0.56078434;" />
+      <stop
+         style="stop-color:#ff7f2f;stop-opacity:0.56078434;"
+         offset="0.75"
+         id="stop3673" />
+      <stop
+         id="stop3703"
+         offset="1"
+         style="stop-color:#ff9f5f;stop-opacity:0.56078434;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3674"
+       id="linearGradient3680"
+       x1="1024"
+       y1="592"
+       x2="1024"
+       y2="384"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient3674">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop3676" />
+      <stop
+         style="stop-color:#3f0b00;stop-opacity:1;"
+         offset="1"
+         id="stop3678" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3699"
+       id="linearGradient3672"
+       x1="1024"
+       y1="592"
+       x2="1024"
+       y2="384"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3699"
+       id="linearGradient4214"
+       x1="1024"
+       y1="640"
+       x2="1024"
+       y2="440"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3674"
+       id="linearGradient4196"
+       x1="1024"
+       y1="640"
+       x2="1024"
+       y2="440"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3606-5"
+       id="linearGradient3612"
+       x1="1024"
+       y1="1592"
+       x2="1024"
+       y2="1480"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)" />
+    <linearGradient
+       id="linearGradient3606-5">
+      <stop
+         style="stop-color:#bfdfff;stop-opacity:1;"
+         offset="0"
+         id="stop3608-2" />
+      <stop
+         id="stop3616"
+         offset="0.2"
+         style="stop-color:#5fafff;stop-opacity:1;" />
+      <stop
+         id="stop3614-2"
+         offset="0.80000001"
+         style="stop-color:#5fafff;stop-opacity:1;" />
+      <stop
+         style="stop-color:#bfdfff;stop-opacity:1;"
+         offset="1"
+         id="stop3610-6" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3698-5"
+       id="linearGradient3704"
+       x1="1024"
+       y1="1600"
+       x2="1024"
+       y2="1376"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)" />
+    <linearGradient
+       id="linearGradient3698-5">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop3700-4" />
+      <stop
+         id="stop3706-4"
+         offset="0.5"
+         style="stop-color:#0f3f6f;stop-opacity:1;" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="1"
+         id="stop3702-0" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3606-5"
+       id="linearGradient3689"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1664"
+       x2="1024"
+       y2="1480" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3698-5"
+       id="linearGradient3686"
+       gradientUnits="userSpaceOnUse"
+       x1="1024"
+       y1="640"
+       x2="1024"
+       y2="384" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3699"
+       id="linearGradient7859"
+       gradientUnits="userSpaceOnUse"
+       x1="1024"
+       y1="640"
+       x2="1024"
+       y2="440" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3606-5"
+       id="linearGradient7861"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1592"
+       x2="1024"
+       y2="1480" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3698-5"
+       id="linearGradient7863"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1600"
+       x2="1024"
+       y2="1376" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3606-5"
+       id="linearGradient7865"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1592"
+       x2="1024"
+       y2="1480" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3698-5"
+       id="linearGradient7867"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1600"
+       x2="1024"
+       y2="1376" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3606-5"
+       id="linearGradient7869"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1592"
+       x2="1024"
+       y2="1480" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3698-5"
+       id="linearGradient7871"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1600"
+       x2="1024"
+       y2="1376" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3606-5"
+       id="linearGradient7873"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1592"
+       x2="1024"
+       y2="1480" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3698-5"
+       id="linearGradient7875"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1600"
+       x2="1024"
+       y2="1376" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3606-5"
+       id="linearGradient7877"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1592"
+       x2="1024"
+       y2="1480" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3698-5"
+       id="linearGradient7879"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1600"
+       x2="1024"
+       y2="1376" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.175"
+     inkscape:cx="-209.49148"
+     inkscape:cy="1025.291"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer4"
+     showgrid="false"
+     inkscape:object-nodes="true"
+     inkscape:window-width="1753"
+     inkscape:window-height="1180"
+     inkscape:window-x="50"
+     inkscape:window-y="-3"
+     inkscape:window-maximized="1"
+     inkscape:snap-object-midpoints="true" />
+  <metadata
+     id="metadata5109">
+    <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>
+  <g
+     inkscape:label="grid"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,995.63782)"
+     style="display:none">
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986"
+       width="292.57144"
+       height="292.57144"
+       x="-5.7142859"
+       y="-999.06641" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0"
+       width="292.57144"
+       height="292.57144"
+       x="286.85715"
+       y="-999.06647" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9"
+       width="292.57144"
+       height="292.57144"
+       x="579.42859"
+       y="-999.06641" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5"
+       width="292.57144"
+       height="292.57144"
+       x="872"
+       y="-999.06647" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-6"
+       width="292.57144"
+       height="292.57144"
+       x="1164.5714"
+       y="-999.06641" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-6-4"
+       width="292.57144"
+       height="292.57144"
+       x="1457.1428"
+       y="-999.06641" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-6-4-1"
+       width="292.57144"
+       height="292.57144"
+       x="1749.7142"
+       y="-999.06641" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-3"
+       width="292.57144"
+       height="292.57144"
+       x="-5.7142963"
+       y="-706.495" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-4"
+       width="292.57144"
+       height="292.57144"
+       x="286.85715"
+       y="-706.49506" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-7"
+       width="292.57144"
+       height="292.57144"
+       x="579.42859"
+       y="-706.495" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-8"
+       width="292.57144"
+       height="292.57144"
+       x="872"
+       y="-706.49506" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-6-45"
+       width="292.57144"
+       height="292.57144"
+       x="1164.5713"
+       y="-706.495" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-6-4-3"
+       width="292.57144"
+       height="292.57144"
+       x="1457.1427"
+       y="-706.495" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-6-4-1-6"
+       width="292.57144"
+       height="292.57144"
+       x="1749.7142"
+       y="-706.495" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-6"
+       width="292.57144"
+       height="292.57144"
+       x="-5.7142563"
+       y="-413.92349" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-40"
+       width="292.57144"
+       height="292.57144"
+       x="286.85718"
+       y="-413.92355" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-78"
+       width="292.57144"
+       height="292.57144"
+       x="579.42859"
+       y="-413.92349" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-9"
+       width="292.57144"
+       height="292.57144"
+       x="872"
+       y="-413.92355" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-6-7"
+       width="292.57144"
+       height="292.57144"
+       x="1164.5715"
+       y="-413.92349" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-6-4-9"
+       width="292.57144"
+       height="292.57144"
+       x="1457.1429"
+       y="-413.92349" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-6-4-1-4"
+       width="292.57144"
+       height="292.57144"
+       x="1749.7144"
+       y="-413.92349" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-3-3"
+       width="292.57144"
+       height="292.57144"
+       x="-5.7142639"
+       y="-121.35207" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-4-2"
+       width="292.57144"
+       height="292.57144"
+       x="286.85718"
+       y="-121.35205" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-7-0"
+       width="292.57144"
+       height="292.57144"
+       x="579.42859"
+       y="-121.35207" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-8-9"
+       width="292.57144"
+       height="292.57144"
+       x="872"
+       y="-121.35213" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-6-45-2"
+       width="292.57144"
+       height="292.57144"
+       x="1164.5714"
+       y="-121.35207" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-6-4-3-5"
+       width="292.57144"
+       height="292.57144"
+       x="1457.1428"
+       y="-121.35207" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-6-4-1-6-5"
+       width="292.57144"
+       height="292.57144"
+       x="1749.7144"
+       y="-121.35207" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-66"
+       width="292.57144"
+       height="292.57144"
+       x="-5.7142868"
+       y="171.21936" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-5"
+       width="292.57144"
+       height="292.57144"
+       x="286.85715"
+       y="171.2193" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-4"
+       width="292.57144"
+       height="292.57144"
+       x="579.42859"
+       y="171.21936" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-4"
+       width="292.57144"
+       height="292.57144"
+       x="872"
+       y="171.2193" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-6-1"
+       width="292.57144"
+       height="292.57144"
+       x="1164.5714"
+       y="171.21936" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-6-4-5"
+       width="292.57144"
+       height="292.57144"
+       x="1457.1428"
+       y="171.21936" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-6-4-1-8"
+       width="292.57144"
+       height="292.57144"
+       x="1749.7142"
+       y="171.21936" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-3-6"
+       width="292.57144"
+       height="292.57144"
+       x="-5.7143021"
+       y="463.79077" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-4-3"
+       width="292.57144"
+       height="292.57144"
+       x="286.85715"
+       y="463.79071" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-7-8"
+       width="292.57144"
+       height="292.57144"
+       x="579.42859"
+       y="463.79077" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-8-0"
+       width="292.57144"
+       height="292.57144"
+       x="872"
+       y="463.79071" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-6-45-0"
+       width="292.57144"
+       height="292.57144"
+       x="1164.5713"
+       y="463.79077" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-6-4-3-3"
+       width="292.57144"
+       height="292.57144"
+       x="1457.1427"
+       y="463.79077" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-6-4-1-6-6"
+       width="292.57144"
+       height="292.57144"
+       x="1749.7142"
+       y="463.79077" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-3-6-6"
+       width="292.57144"
+       height="292.57144"
+       x="-5.7142334"
+       y="756.36218" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-4-3-8"
+       width="292.57144"
+       height="292.57144"
+       x="286.85724"
+       y="756.36212" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-7-8-7"
+       width="292.57144"
+       height="292.57144"
+       x="579.42865"
+       y="756.36218" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-8-0-6"
+       width="292.57144"
+       height="292.57144"
+       x="872.00006"
+       y="756.36212" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-6-45-0-8"
+       width="292.57144"
+       height="292.57144"
+       x="1164.5714"
+       y="756.36218" />
+    <rect
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-6-4-3-3-6"
+       width="292.57144"
+       height="292.57144"
+       x="1457.1428"
+       y="756.36218" />
+    <rect
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#000000;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986-0-9-5-6-4-1-6-6-3"
+       width="292.57144"
+       height="292.57144"
+       x="1749.7144"
+       y="756.36218" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="logo"
+     style="opacity:1">
+    <g
+       transform="matrix(1.4511793,0,0,1.4511793,-462.0077,274.79249)"
+       id="Background">
+      <path
+         inkscape:connector-curvature="0"
+         id="BackgroundShadow"
+         d="m 1024,238 c -141.3849,0 -256,114.61514 -256,256 0,141.38486 114.6151,256 256,256 141.3849,0 256,-114.61514 256,-256 0,-141.38486 -114.6151,-256 -256,-256 z"
+         style="fill:url(#radialGradient3715);fill-opacity:1;stroke:none" />
+      <path
+         inkscape:connector-curvature="0"
+         id="BackgroundGlow"
+         d="m 1024,238 c -141.3849,0 -256,114.61514 -256,256 0,141.38486 114.6151,256 256,256 141.3849,0 256,-114.61514 256,-256 0,-141.38486 -114.6151,-256 -256,-256 z"
+         style="fill:url(#radialGradient3687);fill-opacity:1;stroke:none" />
+    </g>
+    <path
+       inkscape:connector-curvature="0"
+       style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3852)"
+       d="m 873.31548,1158.3216 c -43.30025,20.5296 -73.28125,64.6413 -73.28125,115.7188 0,70.656 57.344,128 128.0001,128 70.656,0 127.99997,-57.344 127.99997,-128 0,-51.0775 -29.9809,-95.1892 -73.28117,-115.7188 34.17527,19.1854 57.28117,55.7626 57.28117,97.7188 0,54.5462 -39.0631,100.0173 -90.71877,109.9688 -6.8922,1.3277 -15.2812,32.0312 -21.2812,32.0312 -6,0 -14.3892,-30.7034 -21.2814,-32.0312 -51.65555,-9.9516 -90.7187,-55.4226 -90.7187,-109.9688 0,-41.9562 23.1059,-78.5334 57.28125,-97.7188 z"
+       id="RingShadow"
+       transform="matrix(1.4511793,0,0,1.4511793,-322.74416,-831.06478)" />
+    <g
+       transform="matrix(1.4511793,0,0,1.4511793,-462.0077,274.79249)"
+       id="PhoenixWings">
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccsccsccsccscccccccccccccccccccccccccccsccsccsccscccccccccccccccccccccccc"
+         id="PhoenixWingsShadow"
+         d="m 963.1564,392.59366 c -42.0773,21.5031 -71.5053,64.6482 -73.0937,115.18754 -1.8047,57.4284 32.8771,107.5971 83.0937,128.2188 -33.9373,-6.472 -64.4034,-4.6532 -70.125,-20.625 -9.0599,-25.2922 -35.7391,-19.5329 -35.5,5.2812 -15.9172,-0.5544 -41.5116,-6.8278 -66.375,23.125 -0.3236,-69.3254 88.7025,-51.3827 68.3438,-92.2187 -11.4573,-22.9812 -47.1194,-3.6252 -33.2188,11.7187 -43.7311,8.6319 -78.6774,-7.9545 -143.7812,23.7188 57.9038,-87.515 183.1784,-49.3092 177.375,-96.9688 -4.4479,-36.52854 -59.0747,-17.88214 -40.3438,5.9376 -32.8596,11.1489 -92.7975,-23.66494 -186.0312,-6 86.8789,-71.80594 245.6412,-13.53974 252.25,-59.78144 5.2199,-36.5233 -48.6339,-37.3963 -46.9688,-7.3125 -69.5102,-34.2136 -90.7714,-6.9472 -182.6562,-37.8125 106.7993,-1.3978 205.2723,-40.0233 297.0312,7.5313 z m -146.1874,45.75 c -72.1386,-4.1051 -67.8282,6.7189 -105.75,2.9062 9.5721,-34.9773 -83.3977,-18.1818 -24.9063,4.1875 -122.3622,-6.045 -120.1966,41.321 -243.2187,18.5313 138.9101,-14.4677 251.7149,-95.7363 373.875,-25.625 z M 617.7502,498.2188 c -33.6187,14.8186 -54.0136,42.4886 -123.9688,36.4687 47.1809,2.2177 83.6544,-55.76864 123.9688,-36.4687 z M 804.0627,511.25 c -71.7584,7.7129 -47.6423,20.7324 -82.2813,23.1875 4.3319,-33.8963 -76.6293,-6.2663 -21.7187,7.0937 -109.4336,15.7829 -83.3162,59.8172 -196.5313,44.375 114.6242,-14.995 145.9733,-121.46254 300.5313,-74.6562 z m 25.5313,71.4062 c -33.6461,9.7591 -25.5352,19.343 -43.6563,22.9063 -6.9518,-35.849 -69.7214,18.9937 -12.5,15.25 -61.62,10.5711 -48.8094,43.131 -111.4063,35.1563 56.3342,-14.164 68.1221,-100.8935 167.5626,-73.3126 z m -153.1563,22.875 c -25.8486,15.1417 -22.8468,30.7866 -86.1875,35.6876 32.9392,-0.19 60.583,-52.5888 86.1875,-35.6876 z m 408.4061,-212.93754 c 42.0773,21.5031 71.5052,64.6482 73.0936,115.18744 1.8046,57.4284 -32.8771,107.5971 -83.0937,128.2189 33.9373,-6.4721 64.4034,-4.6533 70.125,-20.625 9.0599,-25.2922 35.7391,-19.533 35.5,5.2811 15.9172,-0.5544 41.5116,-6.8278 66.375,23.125 0.3236,-69.3254 -88.7025,-51.3827 -68.3438,-92.2186 11.4573,-22.9813 47.1194,-3.6252 33.2188,11.7186 43.7311,8.6319 78.6774,-7.9544 143.7813,23.7189 -57.904,-87.515 -183.1785,-49.3093 -177.375,-96.9689 4.4477,-36.52844 59.0745,-17.88204 40.3438,5.9376 32.8596,11.149 92.7975,-23.66484 186.0313,-6 -86.879,-71.80584 -245.6415,-13.53964 -252.2501,-59.78134 -5.2201,-36.5233 48.6339,-37.3964 46.9688,-7.3125 69.5102,-34.2136 90.7714,-6.9472 182.6563,-37.8125 -106.7994,-1.3979 -205.2726,-40.0233 -297.0313,7.5313 z m 146.1873,45.75 c 72.1386,-4.1051 67.8282,6.7189 105.75,2.9062 -9.5721,-34.9773 83.3977,-18.1818 24.9065,4.1875 122.3622,-6.045 120.1965,41.321 243.2185,18.5313 -138.9101,-14.4677 -251.7149,-95.7363 -373.875,-25.625 z m 199.219,59.87504 c 33.6185,14.8187 54.0135,42.4887 123.9687,36.4688 -47.1808,2.2177 -83.6544,-55.76864 -123.9687,-36.4688 z m -186.3126,13.0312 c 71.7582,7.7129 47.6422,20.7324 82.2813,23.1876 -4.3319,-33.8963 76.6293,-6.2663 21.7187,7.0936 109.4337,15.783 83.3162,59.8172 196.5313,44.375 -114.6243,-14.9949 -145.9734,-121.46244 -300.5313,-74.6562 z m -25.5314,71.4062 c 33.6461,9.7592 25.5351,19.343 43.6564,22.9064 6.9518,-35.8491 69.7212,18.9936 12.5,15.25 61.6197,10.5711 48.8092,43.1309 111.4061,35.1563 -56.3342,-14.1641 -68.122,-100.8936 -167.5625,-73.3127 z m 153.1565,22.875 c 25.8485,15.1418 22.8468,30.7866 86.1875,35.6877 -32.9393,-0.19 -60.5834,-52.5888 -86.1875,-35.6877 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:8;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3806)" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:url(#linearGradient3836);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3852)"
+         d="m 963.1564,392.59366 c -42.0773,21.5031 -71.5053,64.6482 -73.0937,115.18754 -1.8047,57.4284 32.8771,107.5971 83.0937,128.2188 -33.9373,-6.472 -64.4034,-4.6532 -70.125,-20.625 -9.0599,-25.2922 -35.7391,-19.5329 -35.5,5.2812 -15.9172,-0.5544 -41.5116,-6.8278 -66.375,23.125 -0.3236,-69.3254 88.7025,-51.3827 68.3438,-92.2187 -11.4573,-22.9812 -47.1194,-3.6252 -33.2188,11.7187 -43.7311,8.6319 -78.6774,-7.9545 -143.7812,23.7188 57.9038,-87.515 183.1784,-49.3092 177.375,-96.9688 -4.4479,-36.52854 -59.0747,-17.88214 -40.3438,5.9376 -32.8596,11.1489 -92.7975,-23.66494 -186.0312,-6 86.8789,-71.80594 245.6412,-13.53974 252.25,-59.78144 5.2199,-36.5233 -48.6339,-37.3963 -46.9688,-7.3125 -69.5102,-34.2136 -90.7714,-6.9472 -182.6562,-37.8125 106.7993,-1.3978 205.2723,-40.0233 297.0312,7.5313 z m -146.1874,45.75 c -72.1386,-4.1051 -67.8282,6.7189 -105.75,2.9062 9.5721,-34.9773 -83.3977,-18.1818 -24.9063,4.1875 -122.3622,-6.045 -120.1966,41.321 -243.2187,18.5313 138.9101,-14.4677 251.7149,-95.7363 373.875,-25.625 z M 617.7502,498.2188 c -33.6187,14.8186 -54.0136,42.4886 -123.9688,36.4687 47.1809,2.2177 83.6544,-55.76864 123.9688,-36.4687 z M 804.0627,511.25 c -71.7584,7.7129 -47.6423,20.7324 -82.2813,23.1875 4.3319,-33.8963 -76.6293,-6.2663 -21.7187,7.0937 -109.4336,15.7829 -83.3162,59.8172 -196.5313,44.375 114.6242,-14.995 145.9733,-121.46254 300.5313,-74.6562 z m 25.5313,71.4062 c -33.6461,9.7591 -25.5352,19.343 -43.6563,22.9063 -6.9518,-35.849 -69.7214,18.9937 -12.5,15.25 -61.62,10.5711 -48.8094,43.131 -111.4063,35.1563 56.3342,-14.164 68.1221,-100.8935 167.5626,-73.3126 z m -153.1563,22.875 c -25.8486,15.1417 -22.8468,30.7866 -86.1875,35.6876 32.9392,-0.19 60.583,-52.5888 86.1875,-35.6876 z m 408.4061,-212.93754 c 42.0773,21.5031 71.5052,64.6482 73.0936,115.18744 1.8046,57.4284 -32.8771,107.5971 -83.0937,128.2189 33.9373,-6.4721 64.4034,-4.6533 70.125,-20.625 9.0599,-25.2922 35.7391,-19.533 35.5,5.2811 15.9172,-0.5544 41.5116,-6.8278 66.375,23.125 0.3236,-69.3254 -88.7025,-51.3827 -68.3438,-92.2186 11.4573,-22.9813 47.1194,-3.6252 33.2188,11.7186 43.7311,8.6319 78.6774,-7.9544 143.7813,23.7189 -57.904,-87.515 -183.1785,-49.3093 -177.375,-96.9689 4.4477,-36.52844 59.0745,-17.88204 40.3438,5.9376 32.8596,11.149 92.7975,-23.66484 186.0313,-6 -86.879,-71.80584 -245.6415,-13.53964 -252.2501,-59.78134 -5.2201,-36.5233 48.6339,-37.3964 46.9688,-7.3125 69.5102,-34.2136 90.7714,-6.9472 182.6563,-37.8125 -106.7994,-1.3979 -205.2726,-40.0233 -297.0313,7.5313 z m 146.1873,45.75 c 72.1386,-4.1051 67.8282,6.7189 105.75,2.9062 -9.5721,-34.9773 83.3977,-18.1818 24.9065,4.1875 122.3622,-6.045 120.1965,41.321 243.2185,18.5313 -138.9101,-14.4677 -251.7149,-95.7363 -373.875,-25.625 z m 199.219,59.87504 c 33.6185,14.8187 54.0135,42.4887 123.9687,36.4688 -47.1808,2.2177 -83.6544,-55.76864 -123.9687,-36.4688 z m -186.3126,13.0312 c 71.7582,7.7129 47.6422,20.7324 82.2813,23.1876 -4.3319,-33.8963 76.6293,-6.2663 21.7187,7.0936 109.4337,15.783 83.3162,59.8172 196.5313,44.375 -114.6243,-14.9949 -145.9734,-121.46244 -300.5313,-74.6562 z m -25.5314,71.4062 c 33.6461,9.7592 25.5351,19.343 43.6564,22.9064 6.9518,-35.8491 69.7212,18.9936 12.5,15.25 61.6197,10.5711 48.8092,43.1309 111.4061,35.1563 -56.3342,-14.1641 -68.122,-100.8936 -167.5625,-73.3127 z m 153.1565,22.875 c 25.8485,15.1418 22.8468,30.7866 86.1875,35.6877 -32.9393,-0.19 -60.5834,-52.5888 -86.1875,-35.6877 z"
+         id="PhoenixWingsGlow"
+         sodipodi:nodetypes="cccsccsccsccscccccccccccccccccccccccccccsccsccsccscccccccccccccccccccccccc" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccsccsccsccscccccccccccccccccccccccccccsccsccsccscccccccccccccccccccccccc"
+         id="PhoenixWingsFill"
+         d="m 963.1564,392.59366 c -42.0773,21.5031 -71.5053,64.6482 -73.0937,115.18754 -1.8047,57.4284 32.8771,107.5971 83.0937,128.2188 -33.9373,-6.472 -64.4034,-4.6532 -70.125,-20.625 -9.0599,-25.2922 -35.7391,-19.5329 -35.5,5.2812 -15.9172,-0.5544 -41.5116,-6.8278 -66.375,23.125 -0.3236,-69.3254 88.7025,-51.3827 68.3438,-92.2187 -11.4573,-22.9812 -47.1194,-3.6252 -33.2188,11.7187 -43.7311,8.6319 -78.6774,-7.9545 -143.7812,23.7188 57.9038,-87.515 183.1784,-49.3092 177.375,-96.9688 -4.4479,-36.52854 -59.0747,-17.88214 -40.3438,5.9376 -32.8596,11.1489 -92.7975,-23.66494 -186.0312,-6 86.8789,-71.80594 245.6412,-13.53974 252.25,-59.78144 5.2199,-36.5233 -48.6339,-37.3963 -46.9688,-7.3125 -69.5102,-34.2136 -90.7714,-6.9472 -182.6562,-37.8125 106.7993,-1.3978 205.2723,-40.0233 297.0312,7.5313 z m -146.1874,45.75 c -72.1386,-4.1051 -67.8282,6.7189 -105.75,2.9062 9.5721,-34.9773 -83.3977,-18.1818 -24.9063,4.1875 -122.3622,-6.045 -120.1966,41.321 -243.2187,18.5313 138.9101,-14.4677 251.7149,-95.7363 373.875,-25.625 z M 617.7502,498.2188 c -33.6187,14.8186 -54.0136,42.4886 -123.9688,36.4687 47.1809,2.2177 83.6544,-55.76864 123.9688,-36.4687 z M 804.0627,511.25 c -71.7584,7.7129 -47.6423,20.7324 -82.2813,23.1875 4.3319,-33.8963 -76.6293,-6.2663 -21.7187,7.0937 -109.4336,15.7829 -83.3162,59.8172 -196.5313,44.375 114.6242,-14.995 145.9733,-121.46254 300.5313,-74.6562 z m 25.5313,71.4062 c -33.6461,9.7591 -25.5352,19.343 -43.6563,22.9063 -6.9518,-35.849 -69.7214,18.9937 -12.5,15.25 -61.62,10.5711 -48.8094,43.131 -111.4063,35.1563 56.3342,-14.164 68.1221,-100.8935 167.5626,-73.3126 z m -153.1563,22.875 c -25.8486,15.1417 -22.8468,30.7866 -86.1875,35.6876 32.9392,-0.19 60.583,-52.5888 86.1875,-35.6876 z m 408.4061,-212.93754 c 42.0773,21.5031 71.5052,64.6482 73.0936,115.18744 1.8046,57.4284 -32.8771,107.5971 -83.0937,128.2189 33.9373,-6.4721 64.4034,-4.6533 70.125,-20.625 9.0599,-25.2922 35.7391,-19.533 35.5,5.2811 15.9172,-0.5544 41.5116,-6.8278 66.375,23.125 0.3236,-69.3254 -88.7025,-51.3827 -68.3438,-92.2186 11.4573,-22.9813 47.1194,-3.6252 33.2188,11.7186 43.7311,8.6319 78.6774,-7.9544 143.7813,23.7189 -57.904,-87.515 -183.1785,-49.3093 -177.375,-96.9689 4.4477,-36.52844 59.0745,-17.88204 40.3438,5.9376 32.8596,11.149 92.7975,-23.66484 186.0313,-6 -86.879,-71.80584 -245.6415,-13.53964 -252.2501,-59.78134 -5.2201,-36.5233 48.6339,-37.3964 46.9688,-7.3125 69.5102,-34.2136 90.7714,-6.9472 182.6563,-37.8125 -106.7994,-1.3979 -205.2726,-40.0233 -297.0313,7.5313 z m 146.1873,45.75 c 72.1386,-4.1051 67.8282,6.7189 105.75,2.9062 -9.5721,-34.9773 83.3977,-18.1818 24.9065,4.1875 122.3622,-6.045 120.1965,41.321 243.2185,18.5313 -138.9101,-14.4677 -251.7149,-95.7363 -373.875,-25.625 z m 199.219,59.87504 c 33.6185,14.8187 54.0135,42.4887 123.9687,36.4688 -47.1808,2.2177 -83.6544,-55.76864 -123.9687,-36.4688 z m -186.3126,13.0312 c 71.7582,7.7129 47.6422,20.7324 82.2813,23.1876 -4.3319,-33.8963 76.6293,-6.2663 21.7187,7.0936 109.4337,15.783 83.3162,59.8172 196.5313,44.375 -114.6243,-14.9949 -145.9734,-121.46244 -300.5313,-74.6562 z m -25.5314,71.4062 c 33.6461,9.7592 25.5351,19.343 43.6564,22.9064 6.9518,-35.8491 69.7212,18.9936 12.5,15.25 61.6197,10.5711 48.8092,43.1309 111.4061,35.1563 -56.3342,-14.1641 -68.122,-100.8936 -167.5625,-73.3127 z m 153.1565,22.875 c 25.8485,15.1418 22.8468,30.7866 86.1875,35.6877 -32.9393,-0.19 -60.5834,-52.5888 -86.1875,-35.6877 z"
+         style="fill:url(#linearGradient3680);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3672);stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
+         inkscape:export-xdpi="45"
+         inkscape:export-ydpi="45" />
+    </g>
+    <g
+       transform="matrix(1.4511793,0,0,1.4511793,-462.0077,274.79249)"
+       id="PhoenixHead">
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccsccccccccccc"
+         id="PhoenixHeadShadow"
+         d="m 1057.0938,439.71875 c -34.0014,5.48439 -77.51225,47.9452 -119.9063,82.0625 l 52.125,-24.0625 -30.125,32.03125 26.03125,-12.1875 c -8.54487,16.84277 -7.62992,45.97673 -35.75,51.71875 14.64181,14.49069 33.4581,24.78052 54.50005,28.8125 C 1014,600 1021,628 1024,628 c 3,0 10,-28 20.0312,-29.90625 21.8482,-4.18648 41.2906,-15.12031 56.1563,-30.5 -74.3924,0.92961 -69.6917,-74.54814 -3.9687,-91.0625 -5.069,-4.72305 -21.9395,-3.83806 -35.75,-1.65625 2.4067,-16.09443 25.2286,-23.80249 42.0937,-21.71875 -9.6384,-9.77813 -21.3735,-16.84255 -40.8437,-8.71875 l -4.625,-4.71875 z m -9.3438,13.5625 5.0625,5 c -6.6098,5.59761 -12.4827,5.96968 -18.0625,0.96875 l 13,-5.96875 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:8;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3806)" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:url(#linearGradient7859);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3852)"
+         d="m 1057.0938,439.71875 c -34.0014,5.48439 -77.51225,47.9452 -119.9063,82.0625 l 52.125,-24.0625 -30.125,32.03125 26.03125,-12.1875 c -8.54487,16.84277 -7.62992,45.97673 -35.75,51.71875 14.64181,14.49069 33.4581,24.78052 54.50005,28.8125 C 1014,600 1021,628 1024,628 c 3,0 10,-28 20.0312,-29.90625 21.8482,-4.18648 41.2906,-15.12031 56.1563,-30.5 -74.3924,0.92961 -69.6917,-74.54814 -3.9687,-91.0625 -5.069,-4.72305 -21.9395,-3.83806 -35.75,-1.65625 2.4067,-16.09443 25.2286,-23.80249 42.0937,-21.71875 -9.6384,-9.77813 -21.3735,-16.84255 -40.8437,-8.71875 l -4.625,-4.71875 z m -9.3438,13.5625 5.0625,5 c -6.6098,5.59761 -12.4827,5.96968 -18.0625,0.96875 l 13,-5.96875 z"
+         id="PhoenixHeadGlow"
+         sodipodi:nodetypes="cccccccsccccccccccc" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccsccccccccccc"
+         id="PhoenixHeadFill"
+         d="m 1057.0938,439.71875 c -34.0014,5.48439 -77.51225,47.9452 -119.9063,82.0625 l 52.125,-24.0625 -30.125,32.03125 26.03125,-12.1875 c -8.54487,16.84277 -7.62992,45.97673 -35.75,51.71875 14.64181,14.49069 33.4581,24.78052 54.50005,28.8125 C 1014,600 1021,628 1024,628 c 3,0 10,-28 20.0312,-29.90625 21.8482,-4.18648 41.2906,-15.12031 56.1563,-30.5 -74.3924,0.92961 -69.6917,-74.54814 -3.9687,-91.0625 -5.069,-4.72305 -21.9395,-3.83806 -35.75,-1.65625 2.4067,-16.09443 25.2286,-23.80249 42.0937,-21.71875 -9.6384,-9.77813 -21.3735,-16.84255 -40.8437,-8.71875 l -4.625,-4.71875 z m -9.3438,13.5625 5.0625,5 c -6.6098,5.59761 -12.4827,5.96968 -18.0625,0.96875 l 13,-5.96875 z"
+         style="fill:url(#linearGradient4196);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4214);stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    </g>
+    <g
+       transform="matrix(1.4511793,0,0,1.4511793,-462.0077,274.79249)"
+       id="Ring">
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#1f7fff;fill-opacity:1;stroke:none;filter:url(#filter3852)"
+         d="M 969.28125,396.2812 C 925.981,416.8108 896,460.9225 896,512 c 0,70.656 57.344,128 128.0001,128 70.656,0 128,-57.344 128,-128 0,-51.0775 -29.9809,-95.1892 -73.2812,-115.7188 34.1753,19.1854 57.2812,55.7626 57.2812,97.7188 0,54.5462 -39.0631,100.0173 -90.7188,109.9688 -6.8922,1.3277 -15.2812,32.0312 -21.2812,32.0312 -6,0 -14.3892,-30.7034 -21.2814,-32.0312 C 951.06315,594.0172 912,548.5462 912,494 c 0,-41.9562 23.1059,-78.5334 57.28125,-97.7188 z"
+         id="RingGlow" />
+      <path
+         inkscape:connector-curvature="0"
+         id="RingBorder"
+         d="M 969.28125,396.2812 C 925.981,416.8108 896,460.9225 896,512 c 0,70.656 57.344,128 128.0001,128 70.656,0 128,-57.344 128,-128 0,-51.0775 -29.9809,-95.1892 -73.2812,-115.7188 34.1753,19.1854 57.2812,55.7626 57.2812,97.7188 0,54.5462 -39.0631,100.0173 -90.7188,109.9688 -6.8922,1.3277 -15.2812,32.0312 -21.2812,32.0312 -6,0 -14.3892,-30.7034 -21.2814,-32.0312 C 951.06315,594.0172 912,548.5462 912,494 c 0,-41.9562 23.1059,-78.5334 57.28125,-97.7188 z"
+         style="fill:url(#linearGradient3689);fill-opacity:1;stroke:none" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csccsccsccsc"
+         id="RingFill"
+         d="M 924.4375,436.40625 C 908.47534,457.39804 899,483.594 899,512 c 0,67.6951 53.81855,122.8847 121,125 -8,-7 -14,-29 -18,-30 -53.03387,-10.23 -93,-56.9795 -93,-113 0,-20.98082 5.62297,-40.66002 15.4375,-57.59375 z m 199.125,0 C 1133.377,453.33998 1139,473.01918 1139,494 c 0,56.0205 -39.9661,102.77 -93,113 -4,1 -10,23 -18,30 67.1815,-2.1153 121,-57.3049 121,-125 0,-28.406 -9.4753,-54.60196 -25.4375,-75.59375 z"
+         style="fill:url(#linearGradient3686);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    </g>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="lines"
+     sodipodi:insensitive="true"
+     style="display:inline">
+    <path
+       id="path7079"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter7150)"
+       d="m 725.7143,1020.5715 -585.14285,0 m -2e-5,-877.71436 1755.42847,-10e-6 10e-5,1755.42857 -1755.42857,0 z m 292.57143,1462.85706 0,-1170.28572 1170.28554,6e-5 0,1170.28576 z m 292.57144,-877.71416 585.1429,0 -10e-5,585.14286 -585.1428,0 z m 292.5714,-585.14297 0,585.14291 m 292.5714,292.57152 585.1429,0 m -877.7143,292.5713 10e-5,585.1428"
+       inkscape:connector-curvature="0" />
+    <path
+       d="m 725.7143,1020.5715 -585.14285,0 m -2e-5,-877.71436 1755.42847,-10e-6 10e-5,1755.42857 -1755.42857,0 z m 292.57143,1462.85706 0,-1170.28572 1170.28554,6e-5 0,1170.28576 z m 292.57144,-877.71416 585.1429,0 -10e-5,585.14286 -585.1428,0 z m 292.5714,-585.14297 0,585.14291 m 292.5714,292.57152 585.1429,0 m -877.7143,292.5713 10e-5,585.1428"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#1f7fff;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter7150)"
+       id="path7154"
+       inkscape:connector-curvature="0" />
+    <path
+       id="path7156"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#radialGradient7172);stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="m 725.7143,1020.5715 -585.14285,0 m -2e-5,-877.71436 1755.42847,-10e-6 10e-5,1755.42857 -1755.42857,0 z m 292.57143,1462.85706 0,-1170.28572 1170.28554,6e-5 0,1170.28576 z m 292.57144,-877.71416 585.1429,0 -10e-5,585.14286 -585.1428,0 z m 292.5714,-585.14297 0,585.14291 m 292.5714,292.57152 585.1429,0 m -877.7143,292.5713 10e-5,585.1428"
+       inkscape:connector-curvature="0" />
+    <path
+       d="m 725.7143,1020.5715 -585.14285,0 m -2e-5,-877.71436 1755.42847,-10e-6 10e-5,1755.42857 -1755.42857,0 z m 292.57143,1462.85706 0,-1170.28572 1170.28554,6e-5 0,1170.28576 z m 292.57144,-877.71416 585.1429,0 -10e-5,585.14286 -585.1428,0 z m 292.5714,-585.14297 0,585.14291 m 292.5714,292.57152 585.1429,0 m -877.7143,292.5713 10e-5,585.1428"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#radialGradient7176);stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path7174"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="circles"
+     style="display:inline">
+    <g
+       transform="matrix(1.6952274,0,0,1.6952274,-359.88864,-861.54855)"
+       id="g5029">
+      <circle
+         r="39.648487"
+         cy="592.49023"
+         cx="295.21707"
+         id="path4891"
+         style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4927)"
+         transform="matrix(1.0401193,0,0,1.0401193,-11.84391,-23.770309)" />
+      <circle
+         style="opacity:1;fill:#1f7fff;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4975)"
+         id="circle4893"
+         cx="295.21707"
+         cy="592.49023"
+         r="35.607876" />
+      <circle
+         r="35.607876"
+         cy="592.49023"
+         cx="295.21707"
+         id="circle4979"
+         style="opacity:1;fill:url(#radialGradient7178);fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+      <circle
+         style="opacity:1;fill:url(#radialGradient7184);fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         id="circle5025"
+         cx="295.21707"
+         cy="592.49023"
+         r="33.081131" />
+    </g>
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7030"
+       transform="translate(877.71428,-7.0579591e-5)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7032"
+       transform="translate(1755.4285,-9.5444348e-6)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7034"
+       transform="translate(292.57143,292.57134)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7036"
+       transform="translate(877.71428,292.57134)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7038"
+       transform="translate(1462.857,292.5714)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7040"
+       transform="translate(2.0095839e-5,877.71432)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7042"
+       transform="translate(0,1755.4286)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7044"
+       transform="translate(585.14287,585.1429)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7046"
+       transform="translate(877.71428,585.14284)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7048"
+       transform="translate(1170.2858,585.1429)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7050"
+       transform="translate(292.57146,877.71435)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7052"
+       transform="translate(585.14287,877.71432)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7054"
+       transform="translate(1170.2857,877.71432)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7056"
+       transform="translate(1462.8571,877.71432)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7058"
+       transform="translate(1755.4286,877.71432)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7060"
+       transform="translate(585.14287,1170.2858)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7062"
+       transform="translate(877.71428,1170.2857)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7064"
+       transform="translate(1170.2857,1170.2858)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7066"
+       transform="translate(292.57143,1462.8571)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7068"
+       transform="translate(877.71428,1462.8571)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7070"
+       transform="translate(1462.857,1462.8572)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7072"
+       transform="translate(877.71435,1755.4285)"
+       width="100%"
+       height="100%" />
+    <use
+       x="0"
+       y="0"
+       xlink:href="#g5029"
+       id="use7074"
+       transform="translate(1755.4286,1755.4286)"
+       width="100%"
+       height="100%" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer5"
+     inkscape:label="xonotic"
+     style="display:none">
+    <g
+       style="opacity:1"
+       transform="matrix(1.4511793,0,0,1.4511793,-454.41208,277.56762)"
+       id="LetterX">
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3806)"
+         d="m 317.25,456 c 0,0 27.92,0.75 32.75,6 L 396.09375,512 350,562 c -5.52,6 -34,6 -34,6 l 48,0 c 4,0 8.31499,0 12,-4 L 410,527.0938 444,564 c 3.68501,4 8,4 12,4 l 48,0 c 0,0 -28.48,0 -34,-6 L 423.90625,512 470,462 c 4.83,-5.25 32.75,-6 32.75,-6 L 456,456 c -4,0 -8.31499,0 -12,4 L 410,496.9063 376,460 c -3.68501,-4 -8,-4 -12,-4 l -46.75,0 z"
+         id="LetterXShadow"
+         sodipodi:nodetypes="cccccsscscccccccscssc" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#1f7fff;fill-opacity:1;stroke:none;filter:url(#filter3852)"
+         d="m 317.25,456 c 0,0 27.92,0.75 32.75,6 L 396.09375,512 350,562 c -5.52,6 -34,6 -34,6 l 48,0 c 4,0 8.31499,0 12,-4 L 410,527.0938 444,564 c 3.68501,4 8,4 12,4 l 48,0 c 0,0 -28.48,0 -34,-6 L 423.90625,512 470,462 c 4.83,-5.25 32.75,-6 32.75,-6 L 456,456 c -4,0 -8.31499,0 -12,4 L 410,496.9063 376,460 c -3.68501,-4 -8,-4 -12,-4 l -46.75,0 z"
+         id="LetterXGlow"
+         sodipodi:nodetypes="cccccsscscccccccscssc" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccsscscccccccscssc"
+         id="LetterXBorder"
+         d="m 317.25,456 c 0,0 27.92,0.75 32.75,6 L 396.09375,512 350,562 c -5.52,6 -34,6 -34,6 l 48,0 c 4,0 8.31499,0 12,-4 L 410,527.0938 444,564 c 3.68501,4 8,4 12,4 l 48,0 c 0,0 -28.48,0 -34,-6 L 423.90625,512 470,462 c 4.83,-5.25 32.75,-6 32.75,-6 L 456,456 c -4,0 -8.31499,0 -12,4 L 410,496.9063 376,460 c -3.68501,-4 -8,-4 -12,-4 l -46.75,0 z"
+         style="fill:url(#linearGradient7861);fill-opacity:1;stroke:none" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccccccccccc"
+         id="LetterXFill"
+         d="m 400,512 -49,53 16,0 c 3,0 4.15,0 6,-2 l 37,-40 37,40 c 1.85,2 3,2 6,2 l 16,0 -49,-53 49,-53 -16,0 c -3,0 -4.15,0 -6,2 l -37,40 -37,-40 c -1.85,-2 -3,-2 -6,-2 l -16,0 49,53 z"
+         style="fill:url(#linearGradient7863);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    </g>
+    <g
+       style="opacity:1"
+       transform="matrix(1.4511793,0,0,1.4511793,-420.15055,277.56765)"
+       id="LetterO">
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3806)"
+         d="m 540,456 c -12,0 -24,16 -24,32 l 0,48 c 0,16 12,32 24,32 l 96,0 c 12,0 24,-16 24,-32 l 0,-48 c 0,-16 -12,-32 -24,-32 l -96,0 z m 12,20 72,0 c 10,0 12,8 12,16 l 0,40 c 0,8 -2,16 -12,16 l -72,0 c -10,0 -12,-8 -12,-16 l 0,-40 c 0,-8 2,-16 12,-16 z"
+         id="LetterOShadow"
+         sodipodi:nodetypes="cccccccccccccccccc" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#1f7fff;fill-opacity:1;stroke:none;filter:url(#filter3852)"
+         d="m 540,456 c -12,0 -24,16 -24,32 l 0,48 c 0,16 12,32 24,32 l 96,0 c 12,0 24,-16 24,-32 l 0,-48 c 0,-16 -12,-32 -24,-32 l -96,0 z m 12,20 72,0 c 10,0 12,8 12,16 l 0,40 c 0,8 -2,16 -12,16 l -72,0 c -10,0 -12,-8 -12,-16 l 0,-40 c 0,-8 2,-16 12,-16 z"
+         id="LetterOGlow"
+         sodipodi:nodetypes="cccccccccccccccccc" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccccccccccccc"
+         id="LetterOBorder"
+         d="m 540,456 c -12,0 -24,16 -24,32 l 0,48 c 0,16 12,32 24,32 l 96,0 c 12,0 24,-16 24,-32 l 0,-48 c 0,-16 -12,-32 -24,-32 l -96,0 z m 12,20 72,0 c 10,0 12,8 12,16 l 0,40 c 0,8 -2,16 -12,16 l -72,0 c -10,0 -12,-8 -12,-16 l 0,-40 c 0,-8 2,-16 12,-16 z"
+         style="fill:url(#linearGradient7865);fill-opacity:1;stroke:none" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccccccccccccc"
+         id="LetterOFill"
+         d="m 541,459 c -12,0 -22,16 -22,30 l 0,46 c 0,14 10,30 22,30 l 94,0 c 12,0 22,-16 22,-30 l 0,-46 c 0,-14 -10,-30 -22,-30 l -94,0 z m 12,14 70,0 c 12,0 15.99471,8.0001 15.875,20.1563 l 0,37.6875 C 638.99471,543 635,551 623,551 l -70,0 c -12,0 -15.99471,-8 -15.875,-20.1562 l 0,-37.6875 C 537.00529,481.0001 541,473 553,473 Z"
+         style="fill:url(#linearGradient7867);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    </g>
+    <g
+       style="opacity:1"
+       transform="matrix(1.4511793,0,0,1.4511793,-397.4985,277.56762)"
+       id="LetterN">
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3806)"
+         d="m 676,456 c 0,0 38.66667,0 52,0 4,0 5.94939,2.0519 8,4 l 80,76 0,-74 c 0,-6 -32,-6 -32,-6 l 88,0 c 0,0 -32,0 -32,6 l 0,100 c 0,6 32,6 32,6 0,0 -36,0 -48,0 -4,0 -5.95183,-2.0494 -8,-4 l -84,-80 0,78 c 0,6 32,6 32,6 l -88,0 c 0,0 32,0 32,-6 l 0,-100 c 0,-6 -32,-6 -32,-6 z"
+         id="LetterNShadow"
+         sodipodi:nodetypes="csscccccccssccccccc" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#1f7fff;fill-opacity:1;stroke:none;filter:url(#filter3852)"
+         d="m 676,456 c 0,0 38.66667,0 52,0 4,0 5.94939,2.0519 8,4 l 80,76 0,-74 c 0,-6 -32,-6 -32,-6 l 88,0 c 0,0 -32,0 -32,6 l 0,100 c 0,6 32,6 32,6 0,0 -36,0 -48,0 -4,0 -5.95183,-2.0494 -8,-4 l -84,-80 0,78 c 0,6 32,6 32,6 l -88,0 c 0,0 32,0 32,-6 l 0,-100 c 0,-6 -32,-6 -32,-6 z"
+         id="LetterNGlow"
+         sodipodi:nodetypes="csscccccccssccccccc" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscccccccssccccccc"
+         id="LetterNBorder"
+         d="m 676,456 c 0,0 38.66667,0 52,0 4,0 5.94939,2.0519 8,4 l 80,76 0,-74 c 0,-6 -32,-6 -32,-6 l 88,0 c 0,0 -32,0 -32,6 l 0,100 c 0,6 32,6 32,6 0,0 -36,0 -48,0 -4,0 -5.95183,-2.0494 -8,-4 l -84,-80 0,78 c 0,6 32,6 32,6 l -88,0 c 0,0 32,0 32,-6 l 0,-100 c 0,-6 -32,-6 -32,-6 z"
+         style="fill:url(#linearGradient7869);fill-opacity:1;stroke:none" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccccccccccc"
+         id="LetterNFill"
+         d="m 839,459 -22,0 c 0,0 2,1 2,2 l 0,82 -89,-84 -21,0 c 0,0 2,1 2,2 l 0,102 c 0,1 -2,2 -2,2 l 22,0 c 0,0 -2,-1 -2,-2 l 0,-86 93,88 17,0 c 0,0 -2,-1 -2,-2 l 0,-102 c 0,-1 2,-2 2,-2 z"
+         style="fill:url(#linearGradient7871);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    </g>
+    <g
+       style="opacity:1"
+       transform="matrix(1.4511793,0,0,1.4511793,-523.43353,277.56762)"
+       id="LetterT">
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3806)"
+         d="m 1220,568 88,0 c 0,0 -32,0 -32,-6 l 0,-86 40,0 c 8,0 12.3729,-14.1865 16,-16 8,-4 32,-4 32,-4 l -200,0 c 0,0 24,0 32,4 3.6271,1.8135 8,16 16,16 l 40,0 0,86 c 0,6 -32,6 -32,6 z"
+         id="LetterTShadow"
+         sodipodi:nodetypes="cccccsccscccc" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#1f7fff;fill-opacity:1;stroke:none;filter:url(#filter3852)"
+         d="m 1220,568 88,0 c 0,0 -32,0 -32,-6 l 0,-86 40,0 c 8,0 12.3729,-14.1865 16,-16 8,-4 32,-4 32,-4 l -200,0 c 0,0 24,0 32,4 3.6271,1.8135 8,16 16,16 l 40,0 0,86 c 0,6 -32,6 -32,6 z"
+         id="LetterTGlow"
+         sodipodi:nodetypes="cccccsccscccc" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccsccscccc"
+         id="LetterTBorder"
+         d="m 1220,568 88,0 c 0,0 -32,0 -32,-6 l 0,-86 40,0 c 8,0 12.3729,-14.1865 16,-16 8,-4 32,-4 32,-4 l -200,0 c 0,0 24,0 32,4 3.6271,1.8135 8,16 16,16 l 40,0 0,86 c 0,6 -32,6 -32,6 z"
+         style="fill:url(#linearGradient7873);fill-opacity:1;stroke:none" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccccc"
+         id="LetterTFill"
+         d="m 1212,473 43,0 0,90 c 0,1 -2,2 -2,2 l 22,0 c 0,0 -2,-1 -2,-2 l 0,-90 43,0 c 4,0 12,-14 12,-14 0,0 -128,0 -128,0 0,0 8,14 12,14 z"
+         style="fill:url(#linearGradient7875);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    </g>
+    <g
+       style="opacity:1"
+       transform="matrix(1.4511793,0,0,1.4511793,-463.05081,277.56762)"
+       id="LetterI">
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3806)"
+         d="m 1380,456 88,0 c 0,0 -32,0 -32,6 l 0,100 c 0,6 32,6 32,6 l -88,0 c 0,0 32,0 32,-6 l 0,-100 c 0,-6 -32,-6 -32,-6 z"
+         id="LetterIShadow"
+         sodipodi:nodetypes="ccccccccc" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#1f7fff;fill-opacity:1;stroke:none;filter:url(#filter3852)"
+         d="m 1380,456 88,0 c 0,0 -32,0 -32,6 l 0,100 c 0,6 32,6 32,6 l -88,0 c 0,0 32,0 32,-6 l 0,-100 c 0,-6 -32,-6 -32,-6 z"
+         id="LetterIGlow"
+         sodipodi:nodetypes="ccccccccc" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccc"
+         id="LetterIBorder"
+         d="m 1380,456 88,0 c 0,0 -32,0 -32,6 l 0,100 c 0,6 32,6 32,6 l -88,0 c 0,0 32,0 32,-6 l 0,-100 c 0,-6 -32,-6 -32,-6 z"
+         style="fill:url(#linearGradient7877);fill-opacity:1;stroke:none" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccc"
+         id="LetterIFill"
+         d="m 1433,461 c 0,-1 2,-2 2,-2 l -22,0 c 0,0 2,1 2,2 l 0,102 c 0,1 -2,2 -2,2 l 22,0 c 0,0 -2,-1 -2,-2 l 0,-102 z"
+         style="fill:url(#linearGradient7879);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    </g>
+    <g
+       style="opacity:1"
+       transform="matrix(1.4511793,0,0,1.4511793,-402.90492,277.56762)"
+       id="LetterC">
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3806)"
+         d="m 1540,456 c -12,0 -24,16 -24,32 l 0,48 c 0,16 12,32 24,32 l 96,0 c 20,0 16,-48 16,-48 0,0 -4,28 -28,28 l -72,0 c -10,0 -12,-8 -12,-16 l 0,-40 c 0,-8 2,-16 12,-16 l 72,0 c 24,0 28,28 28,28 0,0 4,-48 -16,-48 l -96,0 z"
+         id="LetterCShadow"
+         sodipodi:nodetypes="ccccccccccccccc" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#1f7fff;fill-opacity:1;stroke:none;filter:url(#filter3852)"
+         d="m 1540,456 c -12,0 -24,16 -24,32 l 0,48 c 0,16 12,32 24,32 l 96,0 c 20,0 16,-48 16,-48 0,0 -4,28 -28,28 l -72,0 c -10,0 -12,-8 -12,-16 l 0,-40 c 0,-8 2,-16 12,-16 l 72,0 c 24,0 28,28 28,28 0,0 4,-48 -16,-48 l -96,0 z"
+         id="LetterCGlow"
+         sodipodi:nodetypes="ccccccccccccccc" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccccccccc"
+         id="LetterCBorder"
+         d="m 1540,456 c -12,0 -24,16 -24,32 l 0,48 c 0,16 12,32 24,32 l 96,0 c 20,0 16,-48 16,-48 0,0 -4,28 -28,28 l -72,0 c -10,0 -12,-8 -12,-16 l 0,-40 c 0,-8 2,-16 12,-16 l 72,0 c 24,0 28,28 28,28 0,0 4,-48 -16,-48 l -96,0 z"
+         style="fill:url(#linearGradient3612);fill-opacity:1;stroke:none" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccccccccc"
+         id="LetterCFill"
+         d="m 1541,459 c -12,0 -22,16 -22,30 l 0,46 c 0,14 10,30 22,30 l 94,0 c 14,0 15,-31 15,-31 0,0 -6,17 -27,17 l -70,0 c -12,0 -15.9947,-8 -15.875,-20.1562 l 0,-37.6875 C 1537.0053,481.0001 1541,473 1553,473 l 70,0 c 21,0 27,17 27,17 0,0 -1,-31 -15,-31 l -94,0 z"
+         style="fill:url(#linearGradient3704);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    </g>
+  </g>
+</svg>
diff --git a/gfx/minigames/nmm/icon.svg b/gfx/minigames/nmm/icon.svg
new file mode 100644 (file)
index 0000000..e1fe59e
--- /dev/null
@@ -0,0 +1,250 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="64"
+   height="64"
+   id="svg5177"
+   version="1.1"
+   inkscape:version="0.91+devel r"
+   viewBox="0 0 64 64"
+   sodipodi:docname="icon.svg"
+   inkscape:export-filename="icon_notif.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <defs
+     id="defs5179" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1.4"
+     inkscape:cx="-70.242633"
+     inkscape:cy="205.83429"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:object-nodes="true"
+     inkscape:snap-object-midpoints="true"
+     inkscape:window-width="1753"
+     inkscape:window-height="1180"
+     inkscape:window-x="50"
+     inkscape:window-y="-3"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata5182">
+    <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>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-988.36218)">
+    <g
+       id="g4160"
+       transform="matrix(0.4,0,0,0.4,-32,631.41731)">
+      <rect
+         y="892.36218"
+         x="80"
+         height="160"
+         width="160"
+         id="rect5725"
+         style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 160,994.6955 0,44.6667 m -67,-134.00002 134,0 0,134.00002 -134,0 z m 67,0 0,44.66669 m 22.33334,22.33331 44.66666,0 m -111.66666,-44.66668 89.33333,0 0,89.3334 -89.33333,0 z m 22.33333,22.33337 44.66667,0 0,44.66663 -44.66667,0 z M 93,972.36218 l 44.66667,0"
+         style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         id="path5968" />
+      <g
+         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+         id="g5971">
+        <circle
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           id="path5727"
+           cx="93"
+           cy="1039.3622"
+           r="8"
+           d="m 101,1039.3622 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           id="path5727-12"
+           cx="160"
+           cy="1039.3622"
+           r="8"
+           d="m 168,1039.3622 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           id="path5727-96"
+           cx="227"
+           cy="1039.3622"
+           r="8"
+           d="m 235,1039.3622 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           r="8"
+           cy="1017.0289"
+           cx="115.33334"
+           id="circle5870"
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           d="m 123.33334,1017.0289 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           r="8"
+           cy="1017.0289"
+           cx="160"
+           id="circle5874"
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           d="m 168,1017.0289 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           r="8"
+           cy="1017.0289"
+           cx="204.66667"
+           id="circle5878"
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           d="m 212.66667,1017.0289 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           id="circle5882"
+           cx="93"
+           cy="972.36218"
+           r="8"
+           d="m 101,972.36218 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           id="circle5884"
+           cx="115.33334"
+           cy="972.36218"
+           r="8"
+           d="m 123.33334,972.36218 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           id="circle5886"
+           cx="137.66667"
+           cy="972.36218"
+           r="8"
+           d="m 145.66667,972.36218 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           id="circle5890"
+           cx="182.33334"
+           cy="972.36218"
+           r="8"
+           d="m 190.33334,972.36218 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           id="circle5892"
+           cx="204.66667"
+           cy="972.36218"
+           r="8"
+           d="m 212.66667,972.36218 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           id="circle5894"
+           cx="227"
+           cy="972.36218"
+           r="8"
+           d="m 235,972.36218 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           r="8"
+           cy="994.6955"
+           cx="137.66667"
+           id="circle5900"
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           d="m 145.66667,994.6955 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           r="8"
+           cy="994.6955"
+           cx="160"
+           id="circle5902"
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           d="m 168,994.6955 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           r="8"
+           cy="994.6955"
+           cx="182.33334"
+           id="circle5904"
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           d="m 190.33334,994.6955 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           id="circle5914"
+           cx="137.66667"
+           cy="950.02887"
+           r="8"
+           d="m 145.66667,950.02887 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           id="circle5916"
+           cx="160"
+           cy="950.02887"
+           r="8"
+           d="m 168,950.02887 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           id="circle5918"
+           cx="182.33334"
+           cy="950.02887"
+           r="8"
+           d="m 190.33334,950.02887 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           r="8"
+           cy="927.6955"
+           cx="115.33334"
+           id="circle5926"
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           d="m 123.33334,927.6955 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           r="8"
+           cy="927.6955"
+           cx="160"
+           id="circle5930"
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           d="m 168,927.6955 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           r="8"
+           cy="927.6955"
+           cx="204.66667"
+           id="circle5934"
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           d="m 212.66667,927.6955 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           r="8"
+           cy="905.36218"
+           cx="93"
+           id="circle5952"
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           d="m 101,905.36218 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           r="8"
+           cy="905.36218"
+           cx="160"
+           id="circle5958"
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           d="m 168,905.36218 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+        <circle
+           r="8"
+           cy="905.36218"
+           cx="227"
+           id="circle5964"
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860337"
+           d="m 235,905.36218 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
+      </g>
+    </g>
+  </g>
+</svg>
diff --git a/gfx/minigames/nmm/icon_notif.svg b/gfx/minigames/nmm/icon_notif.svg
new file mode 100644 (file)
index 0000000..ea4a9ce
--- /dev/null
@@ -0,0 +1,221 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="320"
+   height="160"
+   id="svg5177"
+   version="1.1"
+   inkscape:version="0.91pre2 r"
+   viewBox="0 0 320 160"
+   sodipodi:docname="icon_notif.svg"
+   inkscape:export-filename="icon_notif.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <defs
+     id="defs5179" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1.4"
+     inkscape:cx="42.61451"
+     inkscape:cy="212.62"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:object-nodes="true"
+     inkscape:snap-object-midpoints="true"
+     inkscape:window-width="1753"
+     inkscape:window-height="1180"
+     inkscape:window-x="50"
+     inkscape:window-y="-3"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata5182">
+    <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>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-892.36218)">
+    <rect
+       style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
+       id="rect5725"
+       width="160"
+       height="160"
+       x="80"
+       y="892.36218" />
+    <path
+       id="path5968"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="m 160,994.6955 0,44.6667 m -67,-134.00002 134,0 0,134.00002 -134,0 z m 67,0 0,44.66669 m 22.33334,22.33331 44.66666,0 m -111.66666,-44.66668 89.33333,0 0,89.3334 -89.33333,0 z m 22.33333,22.33337 44.66667,0 0,44.66663 -44.66667,0 z M 93,972.36218 l 44.66667,0" />
+    <g
+       id="g5971"
+       style="stroke:#000000;fill:#ffffff;stroke-width:4;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334;fill-opacity:1">
+      <circle
+         r="8"
+         cy="1039.3622"
+         cx="93"
+         id="path5727"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334" />
+      <circle
+         r="8"
+         cy="1039.3622"
+         cx="160"
+         id="path5727-12"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334" />
+      <circle
+         r="8"
+         cy="1039.3622"
+         cx="227"
+         id="path5727-96"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334" />
+      <circle
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334"
+         id="circle5870"
+         cx="115.33334"
+         cy="1017.0289"
+         r="8" />
+      <circle
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334"
+         id="circle5874"
+         cx="160"
+         cy="1017.0289"
+         r="8" />
+      <circle
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334"
+         id="circle5878"
+         cx="204.66667"
+         cy="1017.0289"
+         r="8" />
+      <circle
+         r="8"
+         cy="972.36218"
+         cx="93"
+         id="circle5882"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334" />
+      <circle
+         r="8"
+         cy="972.36218"
+         cx="115.33334"
+         id="circle5884"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334" />
+      <circle
+         r="8"
+         cy="972.36218"
+         cx="137.66667"
+         id="circle5886"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334" />
+      <circle
+         r="8"
+         cy="972.36218"
+         cx="182.33334"
+         id="circle5890"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334" />
+      <circle
+         r="8"
+         cy="972.36218"
+         cx="204.66667"
+         id="circle5892"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334" />
+      <circle
+         r="8"
+         cy="972.36218"
+         cx="227"
+         id="circle5894"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334" />
+      <circle
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334"
+         id="circle5900"
+         cx="137.66667"
+         cy="994.6955"
+         r="8" />
+      <circle
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334"
+         id="circle5902"
+         cx="160"
+         cy="994.6955"
+         r="8" />
+      <circle
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334"
+         id="circle5904"
+         cx="182.33334"
+         cy="994.6955"
+         r="8" />
+      <circle
+         r="8"
+         cy="950.02887"
+         cx="137.66667"
+         id="circle5914"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334" />
+      <circle
+         r="8"
+         cy="950.02887"
+         cx="160"
+         id="circle5916"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334" />
+      <circle
+         r="8"
+         cy="950.02887"
+         cx="182.33334"
+         id="circle5918"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334" />
+      <circle
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334"
+         id="circle5926"
+         cx="115.33334"
+         cy="927.6955"
+         r="8" />
+      <circle
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334"
+         id="circle5930"
+         cx="160"
+         cy="927.6955"
+         r="8" />
+      <circle
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334"
+         id="circle5934"
+         cx="204.66667"
+         cy="927.6955"
+         r="8" />
+      <circle
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334"
+         id="circle5952"
+         cx="93"
+         cy="905.36218"
+         r="8" />
+      <circle
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334"
+         id="circle5958"
+         cx="160"
+         cy="905.36218"
+         r="8" />
+      <circle
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.74860334"
+         id="circle5964"
+         cx="227"
+         cy="905.36218"
+         r="8" />
+    </g>
+  </g>
+</svg>
diff --git a/gfx/minigames/nmm/piece1.xcf b/gfx/minigames/nmm/piece1.xcf
new file mode 100644 (file)
index 0000000..f56a7f4
Binary files /dev/null and b/gfx/minigames/nmm/piece1.xcf differ
diff --git a/gfx/minigames/nmm/piece2.xcf b/gfx/minigames/nmm/piece2.xcf
new file mode 100644 (file)
index 0000000..848eaa8
Binary files /dev/null and b/gfx/minigames/nmm/piece2.xcf differ
diff --git a/gfx/minigames/nmm/tile_active.svg b/gfx/minigames/nmm/tile_active.svg
new file mode 100644 (file)
index 0000000..f24f976
--- /dev/null
@@ -0,0 +1,107 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<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"
+   width="512"
+   height="512"
+   id="svg8858"
+   version="1.1"
+   inkscape:version="0.91pre2 r"
+   viewBox="0 0 512 512.00001"
+   sodipodi:docname="tile_active.svg"
+   inkscape:export-filename="tile_active.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <defs
+     id="defs8860">
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3606"
+       id="radialGradient7178-2"
+       gradientUnits="userSpaceOnUse"
+       cx="295.21707"
+       cy="592.49023"
+       fx="295.21707"
+       fy="592.49023"
+       r="35.607876"
+       gradientTransform="matrix(7.1894206,0,0,7.1894152,-1552.7254,-3994.1531)" />
+    <linearGradient
+       id="linearGradient3606">
+      <stop
+         style="stop-color:#ff5f5f;stop-opacity:0.50196081"
+         offset="0"
+         id="stop3608" />
+      <stop
+         id="stop3614"
+         offset="0.4465813"
+         style="stop-color:#ff5f5f;stop-opacity:0.50196081" />
+      <stop
+         style="stop-color:#ffbfbf;stop-opacity:0.50196081"
+         offset="0.59929818"
+         id="stop9678" />
+      <stop
+         style="stop-color:#ffbfbf;stop-opacity:0.50196081"
+         offset="0.71970063"
+         id="stop9676" />
+      <stop
+         style="stop-color:#ffbfbf;stop-opacity:0"
+         offset="1"
+         id="stop3610" />
+    </linearGradient>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.49497475"
+     inkscape:cx="-395.7449"
+     inkscape:cy="-20.46353"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     borderlayer="true"
+     inkscape:window-width="1753"
+     inkscape:window-height="1180"
+     inkscape:window-x="50"
+     inkscape:window-y="-3"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata8863">
+    <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>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(-313.71429,-9.5050517)">
+    <circle
+       style="opacity:1;fill:url(#radialGradient7178-2);fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="circle4979-2"
+       cx="569.71429"
+       cy="265.50507"
+       r="256" />
+  </g>
+</svg>
diff --git a/gfx/minigames/nmm/tile_available.svg b/gfx/minigames/nmm/tile_available.svg
new file mode 100644 (file)
index 0000000..8208667
--- /dev/null
@@ -0,0 +1,122 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<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"
+   width="512"
+   height="512"
+   id="svg8858"
+   version="1.1"
+   inkscape:version="0.91pre2 r"
+   viewBox="0 0 512 512.00001"
+   sodipodi:docname="tile_available.svg"
+   inkscape:export-filename="tile_available.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <defs
+     id="defs8860">
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3606"
+       id="radialGradient7178-2"
+       gradientUnits="userSpaceOnUse"
+       cx="295.21707"
+       cy="592.49023"
+       fx="295.21707"
+       fy="592.49023"
+       r="35.607876"
+       gradientTransform="matrix(7.1894206,0,0,7.1894152,-1552.7254,-3994.1531)" />
+    <linearGradient
+       id="linearGradient3606">
+      <stop
+         style="stop-color:#5fffcc;stop-opacity:0.50196081"
+         offset="0"
+         id="stop3608" />
+      <stop
+         id="stop3614"
+         offset="0.4465813"
+         style="stop-color:#5fffcc;stop-opacity:0.50196081" />
+      <stop
+         style="stop-color:#bfffeb;stop-opacity:0.50196081"
+         offset="0.59929818"
+         id="stop9678" />
+      <stop
+         style="stop-color:#bfffeb;stop-opacity:0.50196081"
+         offset="0.71970063"
+         id="stop9676" />
+      <stop
+         style="stop-color:#bfffeb;stop-opacity:0"
+         offset="1"
+         id="stop3610" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3698">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop3700" />
+      <stop
+         id="stop3706"
+         offset="0.78676492"
+         style="stop-color:#0f3f6f;stop-opacity:1;" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="1"
+         id="stop3702" />
+    </linearGradient>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.49497475"
+     inkscape:cx="-87.648374"
+     inkscape:cy="-1.2706322"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     borderlayer="true"
+     inkscape:window-width="1753"
+     inkscape:window-height="1180"
+     inkscape:window-x="50"
+     inkscape:window-y="-3"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata8863">
+    <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>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(-313.71429,-9.5050517)">
+    <circle
+       style="opacity:1;fill:url(#radialGradient7178-2);fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="circle4979-2"
+       cx="569.71429"
+       cy="265.50507"
+       r="256" />
+  </g>
+</svg>
diff --git a/gfx/minigames/nmm/tile_selected.svg b/gfx/minigames/nmm/tile_selected.svg
new file mode 100644 (file)
index 0000000..af0bc62
--- /dev/null
@@ -0,0 +1,122 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<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"
+   width="512"
+   height="512"
+   id="svg8858"
+   version="1.1"
+   inkscape:version="0.91pre2 r"
+   viewBox="0 0 512 512.00001"
+   sodipodi:docname="tile_selected.svg"
+   inkscape:export-filename="tile_selected.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <defs
+     id="defs8860">
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3606"
+       id="radialGradient7178-2"
+       gradientUnits="userSpaceOnUse"
+       cx="295.21707"
+       cy="592.49023"
+       fx="295.21707"
+       fy="592.49023"
+       r="35.607876"
+       gradientTransform="matrix(7.1894206,0,0,7.1894152,-1552.7254,-3994.1531)" />
+    <linearGradient
+       id="linearGradient3606">
+      <stop
+         style="stop-color:#5fafff;stop-opacity:0.50196081"
+         offset="0"
+         id="stop3608" />
+      <stop
+         id="stop3614"
+         offset="0.4465813"
+         style="stop-color:#5fafff;stop-opacity:0.50196081" />
+      <stop
+         style="stop-color:#bfdfff;stop-opacity:0.50196081"
+         offset="0.59929818"
+         id="stop9678" />
+      <stop
+         style="stop-color:#bfdfff;stop-opacity:0.50196081"
+         offset="0.71970063"
+         id="stop9676" />
+      <stop
+         style="stop-color:#bfdfff;stop-opacity:0"
+         offset="1"
+         id="stop3610" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3698">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop3700" />
+      <stop
+         id="stop3706"
+         offset="0.78676492"
+         style="stop-color:#0f3f6f;stop-opacity:1;" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="1"
+         id="stop3702" />
+    </linearGradient>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.49497475"
+     inkscape:cx="-87.648374"
+     inkscape:cy="-1.2706322"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     borderlayer="true"
+     inkscape:window-width="1753"
+     inkscape:window-height="1180"
+     inkscape:window-x="50"
+     inkscape:window-y="-3"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata8863">
+    <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>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(-313.71429,-9.5050517)">
+    <circle
+       style="opacity:1;fill:url(#radialGradient7178-2);fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="circle4979-2"
+       cx="569.71429"
+       cy="265.50507"
+       r="256" />
+  </g>
+</svg>
diff --git a/gfx/minigames/ttt/board.svg b/gfx/minigames/ttt/board.svg
new file mode 100644 (file)
index 0000000..3ddb560
--- /dev/null
@@ -0,0 +1,844 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<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"
+   width="2048"
+   height="2048"
+   id="svg5104"
+   version="1.1"
+   inkscape:version="0.91+devel r"
+   viewBox="0 0 2048 2048"
+   sodipodi:docname="board.svg"
+   inkscape:export-filename="board.png"
+   inkscape:export-xdpi="96"
+   inkscape:export-ydpi="96">
+  <defs
+     id="defs5106">
+    <linearGradient
+       id="linearGradient3606">
+      <stop
+         style="stop-color:#5fafff;stop-opacity:1"
+         offset="0"
+         id="stop3608" />
+      <stop
+         id="stop3614"
+         offset="0.80000001"
+         style="stop-color:#5fafff;stop-opacity:1;" />
+      <stop
+         style="stop-color:#bfdfff;stop-opacity:1;"
+         offset="1"
+         id="stop3610" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3698">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop3700" />
+      <stop
+         id="stop3706"
+         offset="0.78676492"
+         style="stop-color:#0f3f6f;stop-opacity:1;" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="1"
+         id="stop3702" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter7150"
+       x="-0.012"
+       width="1.024"
+       y="-0.012"
+       height="1.024">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="8.777143"
+         id="feGaussianBlur7152" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3606"
+       id="radialGradient7172"
+       cx="1018.2857"
+       cy="1020.5714"
+       fx="1018.2857"
+       fy="1020.5714"
+       r="883.71429"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.97656196,0,0,0.97627906,24.000019,24.587487)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3700"
+       id="radialGradient3715"
+       gradientUnits="userSpaceOnUse"
+       cx="1024"
+       cy="494"
+       fx="1024"
+       fy="494"
+       r="256" />
+    <linearGradient
+       id="linearGradient3700">
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="0"
+         id="stop3705" />
+      <stop
+         id="stop3707"
+         offset="0.31"
+         style="stop-color:#000000;stop-opacity:0;" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0.18431373;"
+         offset="0.44"
+         id="stop3709" />
+      <stop
+         id="stop3711"
+         offset="0.85000002"
+         style="stop-color:#000000;stop-opacity:0;" />
+      <stop
+         id="stop3713"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:0;" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3681"
+       id="radialGradient3687"
+       cx="1024"
+       cy="494"
+       fx="1024"
+       fy="494"
+       r="256"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient3681">
+      <stop
+         id="stop3691"
+         offset="0"
+         style="stop-color:#1f7fff;stop-opacity:0;" />
+      <stop
+         style="stop-color:#1f7fff;stop-opacity:0;"
+         offset="0.31"
+         id="stop3695" />
+      <stop
+         id="stop3689"
+         offset="0.44"
+         style="stop-color:#1f7fff;stop-opacity:0.18431373;" />
+      <stop
+         style="stop-color:#1f7fff;stop-opacity:0;"
+         offset="0.85000002"
+         id="stop3704" />
+      <stop
+         style="stop-color:#1f7fff;stop-opacity:0;"
+         offset="1"
+         id="stop3685" />
+    </linearGradient>
+    <filter
+       style="color-interpolation-filters:sRGB"
+       inkscape:collect="always"
+       id="filter3852"
+       inkscape:label="BlurGlow">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="7"
+         id="feGaussianBlur3854" />
+    </filter>
+    <filter
+       style="color-interpolation-filters:sRGB"
+       inkscape:collect="always"
+       id="filter3806"
+       x="-0.075428568"
+       width="1.1508571"
+       y="-0.132"
+       height="1.2640001"
+       inkscape:label="BlurShadow">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="6"
+         id="feGaussianBlur3808" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3699"
+       id="linearGradient3836"
+       x1="1024"
+       y1="640"
+       x2="1024"
+       y2="384"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient3699">
+      <stop
+         id="stop3701"
+         offset="0"
+         style="stop-color:#3f0f00;stop-opacity:0.56078434;" />
+      <stop
+         style="stop-color:#ff7f2f;stop-opacity:0.56078434;"
+         offset="0.75"
+         id="stop3673" />
+      <stop
+         id="stop3703"
+         offset="1"
+         style="stop-color:#ff9f5f;stop-opacity:0.56078434;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3674"
+       id="linearGradient3680"
+       x1="1024"
+       y1="592"
+       x2="1024"
+       y2="384"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient3674">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop3676" />
+      <stop
+         style="stop-color:#3f0b00;stop-opacity:1;"
+         offset="1"
+         id="stop3678" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3699"
+       id="linearGradient3672"
+       x1="1024"
+       y1="592"
+       x2="1024"
+       y2="384"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3699"
+       id="linearGradient4214"
+       x1="1024"
+       y1="640"
+       x2="1024"
+       y2="440"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3674"
+       id="linearGradient4196"
+       x1="1024"
+       y1="640"
+       x2="1024"
+       y2="440"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3606-5"
+       id="linearGradient3612"
+       x1="1024"
+       y1="1592"
+       x2="1024"
+       y2="1480"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)" />
+    <linearGradient
+       id="linearGradient3606-5">
+      <stop
+         style="stop-color:#bfdfff;stop-opacity:1;"
+         offset="0"
+         id="stop3608-2" />
+      <stop
+         id="stop3616"
+         offset="0.2"
+         style="stop-color:#5fafff;stop-opacity:1;" />
+      <stop
+         id="stop3614-2"
+         offset="0.80000001"
+         style="stop-color:#5fafff;stop-opacity:1;" />
+      <stop
+         style="stop-color:#bfdfff;stop-opacity:1;"
+         offset="1"
+         id="stop3610-6" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3698-5"
+       id="linearGradient3704"
+       x1="1024"
+       y1="1600"
+       x2="1024"
+       y2="1376"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)" />
+    <linearGradient
+       id="linearGradient3698-5">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop3700-4" />
+      <stop
+         id="stop3706-4"
+         offset="0.5"
+         style="stop-color:#0f3f6f;stop-opacity:1;" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="1"
+         id="stop3702-0" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3606-5"
+       id="linearGradient3689"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1664"
+       x2="1024"
+       y2="1480" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3698-5"
+       id="linearGradient3686"
+       gradientUnits="userSpaceOnUse"
+       x1="1024"
+       y1="640"
+       x2="1024"
+       y2="384" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3699"
+       id="linearGradient7859"
+       gradientUnits="userSpaceOnUse"
+       x1="1024"
+       y1="640"
+       x2="1024"
+       y2="440" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3606-5"
+       id="linearGradient7861"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1592"
+       x2="1024"
+       y2="1480" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3698-5"
+       id="linearGradient7863"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1600"
+       x2="1024"
+       y2="1376" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3606-5"
+       id="linearGradient7865"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1592"
+       x2="1024"
+       y2="1480" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3698-5"
+       id="linearGradient7867"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1600"
+       x2="1024"
+       y2="1376" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3606-5"
+       id="linearGradient7869"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1592"
+       x2="1024"
+       y2="1480" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3698-5"
+       id="linearGradient7871"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1600"
+       x2="1024"
+       y2="1376" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3606-5"
+       id="linearGradient7873"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1592"
+       x2="1024"
+       y2="1480" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3698-5"
+       id="linearGradient7875"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1600"
+       x2="1024"
+       y2="1376" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3606-5"
+       id="linearGradient7877"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1592"
+       x2="1024"
+       y2="1480" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3698-5"
+       id="linearGradient7879"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-1024)"
+       x1="1024"
+       y1="1600"
+       x2="1024"
+       y2="1376" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3698"
+       id="radialGradient4811"
+       cx="-540.79626"
+       cy="577.21521"
+       fx="-540.79626"
+       fy="577.21521"
+       r="1006.0854"
+       gradientTransform="matrix(1,0,0,0.9997121,1564.7963,447.24771)"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.32402479"
+     inkscape:cx="951.88111"
+     inkscape:cy="838.51138"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer3"
+     showgrid="false"
+     inkscape:object-nodes="true"
+     inkscape:window-width="1753"
+     inkscape:window-height="1180"
+     inkscape:window-x="50"
+     inkscape:window-y="-3"
+     inkscape:window-maximized="1"
+     inkscape:snap-object-midpoints="true" />
+  <metadata
+     id="metadata5109">
+    <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 />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="grid"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,995.63782)"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       style="opacity:1;fill:#f13e32;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5986"
+       width="682.66699"
+       height="682.66699"
+       x="0"
+       y="369.69516" />
+    <rect
+       y="-312.97186"
+       x="0"
+       height="682.66699"
+       width="682.66699"
+       id="rect4658"
+       style="opacity:1;fill:#f67634;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    <rect
+       y="-995.63885"
+       x="0"
+       height="682.66699"
+       width="682.66699"
+       id="rect4658-3"
+       style="display:inline;opacity:1;fill:#f5eb7e;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    <rect
+       y="-995.63885"
+       x="682.66699"
+       height="682.66699"
+       width="682.66699"
+       id="rect4658-3-0"
+       style="display:inline;opacity:1;fill:#7ac240;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    <rect
+       y="-312.97186"
+       x="682.66699"
+       height="682.66699"
+       width="682.66699"
+       id="rect4658-3-0-6"
+       style="display:inline;opacity:1;fill:#0193cf;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    <rect
+       y="369.69519"
+       x="682.66699"
+       height="682.66699"
+       width="682.66699"
+       id="rect4658-3-0-6-0"
+       style="display:inline;opacity:1;fill:#583b92;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    <rect
+       y="369.69516"
+       x="1365.334"
+       height="682.66699"
+       width="682.66699"
+       id="rect4658-3-0-6-0-5"
+       style="display:inline;opacity:1;fill:#9dd9f8;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    <rect
+       y="-312.97186"
+       x="1365.334"
+       height="682.66699"
+       width="682.66699"
+       id="rect4658-3-0-6-0-5-2"
+       style="display:inline;opacity:1;fill:#6aaadd;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    <rect
+       y="-995.63885"
+       x="1365.334"
+       height="682.66699"
+       width="682.66699"
+       id="rect4658-3-0-6-0-5-2-2"
+       style="display:inline;opacity:1;fill:#c6006f;fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer4"
+     inkscape:label="logo"
+     style="display:inline;opacity:1">
+    <g
+       id="g4767"
+       transform="matrix(1.1525399,0,0,1.1525399,-156.20088,-151.27004)">
+      <g
+         id="Background"
+         transform="matrix(1.4511793,0,0,1.4511793,-462.0077,274.79249)">
+        <path
+           style="fill:url(#radialGradient3715);fill-opacity:1;stroke:none"
+           d="m 1024,238 c -141.3849,0 -256,114.61514 -256,256 0,141.38486 114.6151,256 256,256 141.3849,0 256,-114.61514 256,-256 0,-141.38486 -114.6151,-256 -256,-256 z"
+           id="BackgroundShadow"
+           inkscape:connector-curvature="0" />
+        <path
+           style="fill:url(#radialGradient3687);fill-opacity:1;stroke:none"
+           d="m 1024,238 c -141.3849,0 -256,114.61514 -256,256 0,141.38486 114.6151,256 256,256 141.3849,0 256,-114.61514 256,-256 0,-141.38486 -114.6151,-256 -256,-256 z"
+           id="BackgroundGlow"
+           inkscape:connector-curvature="0" />
+      </g>
+      <path
+         transform="matrix(1.4511793,0,0,1.4511793,-322.74416,-831.06478)"
+         id="RingShadow"
+         d="m 873.31548,1158.3216 c -43.30025,20.5296 -73.28125,64.6413 -73.28125,115.7188 0,70.656 57.344,128 128.0001,128 70.656,0 127.99997,-57.344 127.99997,-128 0,-51.0775 -29.9809,-95.1892 -73.28117,-115.7188 34.17527,19.1854 57.28117,55.7626 57.28117,97.7188 0,54.5462 -39.0631,100.0173 -90.71877,109.9688 -6.8922,1.3277 -15.2812,32.0312 -21.2812,32.0312 -6,0 -14.3892,-30.7034 -21.2814,-32.0312 -51.65555,-9.9516 -90.7187,-55.4226 -90.7187,-109.9688 0,-41.9562 23.1059,-78.5334 57.28125,-97.7188 z"
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3852)"
+         inkscape:connector-curvature="0" />
+      <g
+         id="PhoenixWings"
+         transform="matrix(1.4511793,0,0,1.4511793,-462.0077,274.79249)">
+        <path
+           style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:8;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3806)"
+           d="m 963.1564,392.59366 c -42.0773,21.5031 -71.5053,64.6482 -73.0937,115.18754 -1.8047,57.4284 32.8771,107.5971 83.0937,128.2188 -33.9373,-6.472 -64.4034,-4.6532 -70.125,-20.625 -9.0599,-25.2922 -35.7391,-19.5329 -35.5,5.2812 -15.9172,-0.5544 -41.5116,-6.8278 -66.375,23.125 -0.3236,-69.3254 88.7025,-51.3827 68.3438,-92.2187 -11.4573,-22.9812 -47.1194,-3.6252 -33.2188,11.7187 -43.7311,8.6319 -78.6774,-7.9545 -143.7812,23.7188 57.9038,-87.515 183.1784,-49.3092 177.375,-96.9688 -4.4479,-36.52854 -59.0747,-17.88214 -40.3438,5.9376 -32.8596,11.1489 -92.7975,-23.66494 -186.0312,-6 86.8789,-71.80594 245.6412,-13.53974 252.25,-59.78144 5.2199,-36.5233 -48.6339,-37.3963 -46.9688,-7.3125 -69.5102,-34.2136 -90.7714,-6.9472 -182.6562,-37.8125 106.7993,-1.3978 205.2723,-40.0233 297.0312,7.5313 z m -146.1874,45.75 c -72.1386,-4.1051 -67.8282,6.7189 -105.75,2.9062 9.5721,-34.9773 -83.3977,-18.1818 -24.9063,4.1875 -122.3622,-6.045 -120.1966,41.321 -243.2187,18.5313 138.9101,-14.4677 251.7149,-95.7363 373.875,-25.625 z M 617.7502,498.2188 c -33.6187,14.8186 -54.0136,42.4886 -123.9688,36.4687 47.1809,2.2177 83.6544,-55.76864 123.9688,-36.4687 z M 804.0627,511.25 c -71.7584,7.7129 -47.6423,20.7324 -82.2813,23.1875 4.3319,-33.8963 -76.6293,-6.2663 -21.7187,7.0937 -109.4336,15.7829 -83.3162,59.8172 -196.5313,44.375 114.6242,-14.995 145.9733,-121.46254 300.5313,-74.6562 z m 25.5313,71.4062 c -33.6461,9.7591 -25.5352,19.343 -43.6563,22.9063 -6.9518,-35.849 -69.7214,18.9937 -12.5,15.25 -61.62,10.5711 -48.8094,43.131 -111.4063,35.1563 56.3342,-14.164 68.1221,-100.8935 167.5626,-73.3126 z m -153.1563,22.875 c -25.8486,15.1417 -22.8468,30.7866 -86.1875,35.6876 32.9392,-0.19 60.583,-52.5888 86.1875,-35.6876 z m 408.4061,-212.93754 c 42.0773,21.5031 71.5052,64.6482 73.0936,115.18744 1.8046,57.4284 -32.8771,107.5971 -83.0937,128.2189 33.9373,-6.4721 64.4034,-4.6533 70.125,-20.625 9.0599,-25.2922 35.7391,-19.533 35.5,5.2811 15.9172,-0.5544 41.5116,-6.8278 66.375,23.125 0.3236,-69.3254 -88.7025,-51.3827 -68.3438,-92.2186 11.4573,-22.9813 47.1194,-3.6252 33.2188,11.7186 43.7311,8.6319 78.6774,-7.9544 143.7813,23.7189 -57.904,-87.515 -183.1785,-49.3093 -177.375,-96.9689 4.4477,-36.52844 59.0745,-17.88204 40.3438,5.9376 32.8596,11.149 92.7975,-23.66484 186.0313,-6 -86.879,-71.80584 -245.6415,-13.53964 -252.2501,-59.78134 -5.2201,-36.5233 48.6339,-37.3964 46.9688,-7.3125 69.5102,-34.2136 90.7714,-6.9472 182.6563,-37.8125 -106.7994,-1.3979 -205.2726,-40.0233 -297.0313,7.5313 z m 146.1873,45.75 c 72.1386,-4.1051 67.8282,6.7189 105.75,2.9062 -9.5721,-34.9773 83.3977,-18.1818 24.9065,4.1875 122.3622,-6.045 120.1965,41.321 243.2185,18.5313 -138.9101,-14.4677 -251.7149,-95.7363 -373.875,-25.625 z m 199.219,59.87504 c 33.6185,14.8187 54.0135,42.4887 123.9687,36.4688 -47.1808,2.2177 -83.6544,-55.76864 -123.9687,-36.4688 z m -186.3126,13.0312 c 71.7582,7.7129 47.6422,20.7324 82.2813,23.1876 -4.3319,-33.8963 76.6293,-6.2663 21.7187,7.0936 109.4337,15.783 83.3162,59.8172 196.5313,44.375 -114.6243,-14.9949 -145.9734,-121.46244 -300.5313,-74.6562 z m -25.5314,71.4062 c 33.6461,9.7592 25.5351,19.343 43.6564,22.9064 6.9518,-35.8491 69.7212,18.9936 12.5,15.25 61.6197,10.5711 48.8092,43.1309 111.4061,35.1563 -56.3342,-14.1641 -68.122,-100.8936 -167.5625,-73.3127 z m 153.1565,22.875 c 25.8485,15.1418 22.8468,30.7866 86.1875,35.6877 -32.9393,-0.19 -60.5834,-52.5888 -86.1875,-35.6877 z"
+           id="PhoenixWingsShadow"
+           sodipodi:nodetypes="cccsccsccsccscccccccccccccccccccccccccccsccsccsccscccccccccccccccccccccccc"
+           inkscape:connector-curvature="0" />
+        <path
+           sodipodi:nodetypes="cccsccsccsccscccccccccccccccccccccccccccsccsccsccscccccccccccccccccccccccc"
+           id="PhoenixWingsGlow"
+           d="m 963.1564,392.59366 c -42.0773,21.5031 -71.5053,64.6482 -73.0937,115.18754 -1.8047,57.4284 32.8771,107.5971 83.0937,128.2188 -33.9373,-6.472 -64.4034,-4.6532 -70.125,-20.625 -9.0599,-25.2922 -35.7391,-19.5329 -35.5,5.2812 -15.9172,-0.5544 -41.5116,-6.8278 -66.375,23.125 -0.3236,-69.3254 88.7025,-51.3827 68.3438,-92.2187 -11.4573,-22.9812 -47.1194,-3.6252 -33.2188,11.7187 -43.7311,8.6319 -78.6774,-7.9545 -143.7812,23.7188 57.9038,-87.515 183.1784,-49.3092 177.375,-96.9688 -4.4479,-36.52854 -59.0747,-17.88214 -40.3438,5.9376 -32.8596,11.1489 -92.7975,-23.66494 -186.0312,-6 86.8789,-71.80594 245.6412,-13.53974 252.25,-59.78144 5.2199,-36.5233 -48.6339,-37.3963 -46.9688,-7.3125 -69.5102,-34.2136 -90.7714,-6.9472 -182.6562,-37.8125 106.7993,-1.3978 205.2723,-40.0233 297.0312,7.5313 z m -146.1874,45.75 c -72.1386,-4.1051 -67.8282,6.7189 -105.75,2.9062 9.5721,-34.9773 -83.3977,-18.1818 -24.9063,4.1875 -122.3622,-6.045 -120.1966,41.321 -243.2187,18.5313 138.9101,-14.4677 251.7149,-95.7363 373.875,-25.625 z M 617.7502,498.2188 c -33.6187,14.8186 -54.0136,42.4886 -123.9688,36.4687 47.1809,2.2177 83.6544,-55.76864 123.9688,-36.4687 z M 804.0627,511.25 c -71.7584,7.7129 -47.6423,20.7324 -82.2813,23.1875 4.3319,-33.8963 -76.6293,-6.2663 -21.7187,7.0937 -109.4336,15.7829 -83.3162,59.8172 -196.5313,44.375 114.6242,-14.995 145.9733,-121.46254 300.5313,-74.6562 z m 25.5313,71.4062 c -33.6461,9.7591 -25.5352,19.343 -43.6563,22.9063 -6.9518,-35.849 -69.7214,18.9937 -12.5,15.25 -61.62,10.5711 -48.8094,43.131 -111.4063,35.1563 56.3342,-14.164 68.1221,-100.8935 167.5626,-73.3126 z m -153.1563,22.875 c -25.8486,15.1417 -22.8468,30.7866 -86.1875,35.6876 32.9392,-0.19 60.583,-52.5888 86.1875,-35.6876 z m 408.4061,-212.93754 c 42.0773,21.5031 71.5052,64.6482 73.0936,115.18744 1.8046,57.4284 -32.8771,107.5971 -83.0937,128.2189 33.9373,-6.4721 64.4034,-4.6533 70.125,-20.625 9.0599,-25.2922 35.7391,-19.533 35.5,5.2811 15.9172,-0.5544 41.5116,-6.8278 66.375,23.125 0.3236,-69.3254 -88.7025,-51.3827 -68.3438,-92.2186 11.4573,-22.9813 47.1194,-3.6252 33.2188,11.7186 43.7311,8.6319 78.6774,-7.9544 143.7813,23.7189 -57.904,-87.515 -183.1785,-49.3093 -177.375,-96.9689 4.4477,-36.52844 59.0745,-17.88204 40.3438,5.9376 32.8596,11.149 92.7975,-23.66484 186.0313,-6 -86.879,-71.80584 -245.6415,-13.53964 -252.2501,-59.78134 -5.2201,-36.5233 48.6339,-37.3964 46.9688,-7.3125 69.5102,-34.2136 90.7714,-6.9472 182.6563,-37.8125 -106.7994,-1.3979 -205.2726,-40.0233 -297.0313,7.5313 z m 146.1873,45.75 c 72.1386,-4.1051 67.8282,6.7189 105.75,2.9062 -9.5721,-34.9773 83.3977,-18.1818 24.9065,4.1875 122.3622,-6.045 120.1965,41.321 243.2185,18.5313 -138.9101,-14.4677 -251.7149,-95.7363 -373.875,-25.625 z m 199.219,59.87504 c 33.6185,14.8187 54.0135,42.4887 123.9687,36.4688 -47.1808,2.2177 -83.6544,-55.76864 -123.9687,-36.4688 z m -186.3126,13.0312 c 71.7582,7.7129 47.6422,20.7324 82.2813,23.1876 -4.3319,-33.8963 76.6293,-6.2663 21.7187,7.0936 109.4337,15.783 83.3162,59.8172 196.5313,44.375 -114.6243,-14.9949 -145.9734,-121.46244 -300.5313,-74.6562 z m -25.5314,71.4062 c 33.6461,9.7592 25.5351,19.343 43.6564,22.9064 6.9518,-35.8491 69.7212,18.9936 12.5,15.25 61.6197,10.5711 48.8092,43.1309 111.4061,35.1563 -56.3342,-14.1641 -68.122,-100.8936 -167.5625,-73.3127 z m 153.1565,22.875 c 25.8485,15.1418 22.8468,30.7866 86.1875,35.6877 -32.9393,-0.19 -60.5834,-52.5888 -86.1875,-35.6877 z"
+           style="fill:url(#linearGradient3836);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3852)"
+           inkscape:connector-curvature="0" />
+        <path
+           inkscape:export-ydpi="45"
+           inkscape:export-xdpi="45"
+           style="fill:url(#linearGradient3680);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3672);stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
+           d="m 963.1564,392.59366 c -42.0773,21.5031 -71.5053,64.6482 -73.0937,115.18754 -1.8047,57.4284 32.8771,107.5971 83.0937,128.2188 -33.9373,-6.472 -64.4034,-4.6532 -70.125,-20.625 -9.0599,-25.2922 -35.7391,-19.5329 -35.5,5.2812 -15.9172,-0.5544 -41.5116,-6.8278 -66.375,23.125 -0.3236,-69.3254 88.7025,-51.3827 68.3438,-92.2187 -11.4573,-22.9812 -47.1194,-3.6252 -33.2188,11.7187 -43.7311,8.6319 -78.6774,-7.9545 -143.7812,23.7188 57.9038,-87.515 183.1784,-49.3092 177.375,-96.9688 -4.4479,-36.52854 -59.0747,-17.88214 -40.3438,5.9376 -32.8596,11.1489 -92.7975,-23.66494 -186.0312,-6 86.8789,-71.80594 245.6412,-13.53974 252.25,-59.78144 5.2199,-36.5233 -48.6339,-37.3963 -46.9688,-7.3125 -69.5102,-34.2136 -90.7714,-6.9472 -182.6562,-37.8125 106.7993,-1.3978 205.2723,-40.0233 297.0312,7.5313 z m -146.1874,45.75 c -72.1386,-4.1051 -67.8282,6.7189 -105.75,2.9062 9.5721,-34.9773 -83.3977,-18.1818 -24.9063,4.1875 -122.3622,-6.045 -120.1966,41.321 -243.2187,18.5313 138.9101,-14.4677 251.7149,-95.7363 373.875,-25.625 z M 617.7502,498.2188 c -33.6187,14.8186 -54.0136,42.4886 -123.9688,36.4687 47.1809,2.2177 83.6544,-55.76864 123.9688,-36.4687 z M 804.0627,511.25 c -71.7584,7.7129 -47.6423,20.7324 -82.2813,23.1875 4.3319,-33.8963 -76.6293,-6.2663 -21.7187,7.0937 -109.4336,15.7829 -83.3162,59.8172 -196.5313,44.375 114.6242,-14.995 145.9733,-121.46254 300.5313,-74.6562 z m 25.5313,71.4062 c -33.6461,9.7591 -25.5352,19.343 -43.6563,22.9063 -6.9518,-35.849 -69.7214,18.9937 -12.5,15.25 -61.62,10.5711 -48.8094,43.131 -111.4063,35.1563 56.3342,-14.164 68.1221,-100.8935 167.5626,-73.3126 z m -153.1563,22.875 c -25.8486,15.1417 -22.8468,30.7866 -86.1875,35.6876 32.9392,-0.19 60.583,-52.5888 86.1875,-35.6876 z m 408.4061,-212.93754 c 42.0773,21.5031 71.5052,64.6482 73.0936,115.18744 1.8046,57.4284 -32.8771,107.5971 -83.0937,128.2189 33.9373,-6.4721 64.4034,-4.6533 70.125,-20.625 9.0599,-25.2922 35.7391,-19.533 35.5,5.2811 15.9172,-0.5544 41.5116,-6.8278 66.375,23.125 0.3236,-69.3254 -88.7025,-51.3827 -68.3438,-92.2186 11.4573,-22.9813 47.1194,-3.6252 33.2188,11.7186 43.7311,8.6319 78.6774,-7.9544 143.7813,23.7189 -57.904,-87.515 -183.1785,-49.3093 -177.375,-96.9689 4.4477,-36.52844 59.0745,-17.88204 40.3438,5.9376 32.8596,11.149 92.7975,-23.66484 186.0313,-6 -86.879,-71.80584 -245.6415,-13.53964 -252.2501,-59.78134 -5.2201,-36.5233 48.6339,-37.3964 46.9688,-7.3125 69.5102,-34.2136 90.7714,-6.9472 182.6563,-37.8125 -106.7994,-1.3979 -205.2726,-40.0233 -297.0313,7.5313 z m 146.1873,45.75 c 72.1386,-4.1051 67.8282,6.7189 105.75,2.9062 -9.5721,-34.9773 83.3977,-18.1818 24.9065,4.1875 122.3622,-6.045 120.1965,41.321 243.2185,18.5313 -138.9101,-14.4677 -251.7149,-95.7363 -373.875,-25.625 z m 199.219,59.87504 c 33.6185,14.8187 54.0135,42.4887 123.9687,36.4688 -47.1808,2.2177 -83.6544,-55.76864 -123.9687,-36.4688 z m -186.3126,13.0312 c 71.7582,7.7129 47.6422,20.7324 82.2813,23.1876 -4.3319,-33.8963 76.6293,-6.2663 21.7187,7.0936 109.4337,15.783 83.3162,59.8172 196.5313,44.375 -114.6243,-14.9949 -145.9734,-121.46244 -300.5313,-74.6562 z m -25.5314,71.4062 c 33.6461,9.7592 25.5351,19.343 43.6564,22.9064 6.9518,-35.8491 69.7212,18.9936 12.5,15.25 61.6197,10.5711 48.8092,43.1309 111.4061,35.1563 -56.3342,-14.1641 -68.122,-100.8936 -167.5625,-73.3127 z m 153.1565,22.875 c 25.8485,15.1418 22.8468,30.7866 86.1875,35.6877 -32.9393,-0.19 -60.5834,-52.5888 -86.1875,-35.6877 z"
+           id="PhoenixWingsFill"
+           sodipodi:nodetypes="cccsccsccsccscccccccccccccccccccccccccccsccsccsccscccccccccccccccccccccccc"
+           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         id="PhoenixHead"
+         transform="matrix(1.4511793,0,0,1.4511793,-462.0077,274.79249)">
+        <path
+           style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:8;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3806)"
+           d="m 1057.0938,439.71875 c -34.0014,5.48439 -77.51225,47.9452 -119.9063,82.0625 l 52.125,-24.0625 -30.125,32.03125 26.03125,-12.1875 c -8.54487,16.84277 -7.62992,45.97673 -35.75,51.71875 14.64181,14.49069 33.4581,24.78052 54.50005,28.8125 C 1014,600 1021,628 1024,628 c 3,0 10,-28 20.0312,-29.90625 21.8482,-4.18648 41.2906,-15.12031 56.1563,-30.5 -74.3924,0.92961 -69.6917,-74.54814 -3.9687,-91.0625 -5.069,-4.72305 -21.9395,-3.83806 -35.75,-1.65625 2.4067,-16.09443 25.2286,-23.80249 42.0937,-21.71875 -9.6384,-9.77813 -21.3735,-16.84255 -40.8437,-8.71875 l -4.625,-4.71875 z m -9.3438,13.5625 5.0625,5 c -6.6098,5.59761 -12.4827,5.96968 -18.0625,0.96875 l 13,-5.96875 z"
+           id="PhoenixHeadShadow"
+           sodipodi:nodetypes="cccccccsccccccccccc"
+           inkscape:connector-curvature="0" />
+        <path
+           sodipodi:nodetypes="cccccccsccccccccccc"
+           id="PhoenixHeadGlow"
+           d="m 1057.0938,439.71875 c -34.0014,5.48439 -77.51225,47.9452 -119.9063,82.0625 l 52.125,-24.0625 -30.125,32.03125 26.03125,-12.1875 c -8.54487,16.84277 -7.62992,45.97673 -35.75,51.71875 14.64181,14.49069 33.4581,24.78052 54.50005,28.8125 C 1014,600 1021,628 1024,628 c 3,0 10,-28 20.0312,-29.90625 21.8482,-4.18648 41.2906,-15.12031 56.1563,-30.5 -74.3924,0.92961 -69.6917,-74.54814 -3.9687,-91.0625 -5.069,-4.72305 -21.9395,-3.83806 -35.75,-1.65625 2.4067,-16.09443 25.2286,-23.80249 42.0937,-21.71875 -9.6384,-9.77813 -21.3735,-16.84255 -40.8437,-8.71875 l -4.625,-4.71875 z m -9.3438,13.5625 5.0625,5 c -6.6098,5.59761 -12.4827,5.96968 -18.0625,0.96875 l 13,-5.96875 z"
+           style="fill:url(#linearGradient7859);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3852)"
+           inkscape:connector-curvature="0" />
+        <path
+           style="fill:url(#linearGradient4196);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4214);stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+           d="m 1057.0938,439.71875 c -34.0014,5.48439 -77.51225,47.9452 -119.9063,82.0625 l 52.125,-24.0625 -30.125,32.03125 26.03125,-12.1875 c -8.54487,16.84277 -7.62992,45.97673 -35.75,51.71875 14.64181,14.49069 33.4581,24.78052 54.50005,28.8125 C 1014,600 1021,628 1024,628 c 3,0 10,-28 20.0312,-29.90625 21.8482,-4.18648 41.2906,-15.12031 56.1563,-30.5 -74.3924,0.92961 -69.6917,-74.54814 -3.9687,-91.0625 -5.069,-4.72305 -21.9395,-3.83806 -35.75,-1.65625 2.4067,-16.09443 25.2286,-23.80249 42.0937,-21.71875 -9.6384,-9.77813 -21.3735,-16.84255 -40.8437,-8.71875 l -4.625,-4.71875 z m -9.3438,13.5625 5.0625,5 c -6.6098,5.59761 -12.4827,5.96968 -18.0625,0.96875 l 13,-5.96875 z"
+           id="PhoenixHeadFill"
+           sodipodi:nodetypes="cccccccsccccccccccc"
+           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         id="Ring"
+         transform="matrix(1.4511793,0,0,1.4511793,-462.0077,274.79249)">
+        <path
+           id="RingGlow"
+           d="M 969.28125,396.2812 C 925.981,416.8108 896,460.9225 896,512 c 0,70.656 57.344,128 128.0001,128 70.656,0 128,-57.344 128,-128 0,-51.0775 -29.9809,-95.1892 -73.2812,-115.7188 34.1753,19.1854 57.2812,55.7626 57.2812,97.7188 0,54.5462 -39.0631,100.0173 -90.7188,109.9688 -6.8922,1.3277 -15.2812,32.0312 -21.2812,32.0312 -6,0 -14.3892,-30.7034 -21.2814,-32.0312 C 951.06315,594.0172 912,548.5462 912,494 c 0,-41.9562 23.1059,-78.5334 57.28125,-97.7188 z"
+           style="fill:#1f7fff;fill-opacity:1;stroke:none;filter:url(#filter3852)"
+           inkscape:connector-curvature="0" />
+        <path
+           style="fill:url(#linearGradient3689);fill-opacity:1;stroke:none"
+           d="M 969.28125,396.2812 C 925.981,416.8108 896,460.9225 896,512 c 0,70.656 57.344,128 128.0001,128 70.656,0 128,-57.344 128,-128 0,-51.0775 -29.9809,-95.1892 -73.2812,-115.7188 34.1753,19.1854 57.2812,55.7626 57.2812,97.7188 0,54.5462 -39.0631,100.0173 -90.7188,109.9688 -6.8922,1.3277 -15.2812,32.0312 -21.2812,32.0312 -6,0 -14.3892,-30.7034 -21.2814,-32.0312 C 951.06315,594.0172 912,548.5462 912,494 c 0,-41.9562 23.1059,-78.5334 57.28125,-97.7188 z"
+           id="RingBorder"
+           inkscape:connector-curvature="0" />
+        <path
+           style="fill:url(#linearGradient3686);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+           d="M 924.4375,436.40625 C 908.47534,457.39804 899,483.594 899,512 c 0,67.6951 53.81855,122.8847 121,125 -8,-7 -14,-29 -18,-30 -53.03387,-10.23 -93,-56.9795 -93,-113 0,-20.98082 5.62297,-40.66002 15.4375,-57.59375 z m 199.125,0 C 1133.377,453.33998 1139,473.01918 1139,494 c 0,56.0205 -39.9661,102.77 -93,113 -4,1 -10,23 -18,30 67.1815,-2.1153 121,-57.3049 121,-125 0,-28.406 -9.4753,-54.60196 -25.4375,-75.59375 z"
+           id="RingFill"
+           sodipodi:nodetypes="csccsccsccsc"
+           inkscape:connector-curvature="0" />
+      </g>
+    </g>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="lines"
+     style="display:inline">
+    <path
+       id="path7079"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:30.72446759;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter7150)"
+       d="M 682.66699,-0.00103498 682.66699,2048 M 1365.334,-0.00103498 1365.334,2048 m 682.667,-682.667 -2048.001,0 m 0,-682.66704 2048.001,0"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cccccccc"
+       transform="matrix(0.97656196,0,0,0.97627906,24.000019,24.587487)" />
+    <path
+       d="M 682.66699,-0.00103498 682.66699,2048 M 0,1365.333 l 2048.001,0 M 1365.334,2048 l 0,-2048.00103498 M 0,682.66596 l 2048.001,0"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#1f7fff;stroke-width:18.43468055;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter7150)"
+       id="path7154"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cccccccc"
+       transform="matrix(0.97656196,0,0,0.97627906,24.000019,24.587487)" />
+    <path
+       id="path7156"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#radialGradient7172);stroke-width:17.57556915;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="m 24.000019,691.05997 1999.999881,0 M 24.000019,1357.5335 l 1999.999881,0 m -1333.33327,666.4735 0,-1999.420523 m 666.66667,0 0,1999.420523"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cccccccc" />
+    <path
+       style="opacity:1;fill:none;fill-opacity:0;stroke:url(#radialGradient4811);stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="m 24.000063,691.05998 1999.999837,0 m 0,666.47352 -1999.999837,0 m 666.666567,666.4735 0,-1999.420523 m 666.66667,0 0,1999.420523"
+       id="path4795"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer5"
+     inkscape:label="xonotic"
+     style="display:none">
+    <g
+       style="opacity:1"
+       transform="matrix(1.4511793,0,0,1.4511793,-454.41208,277.56762)"
+       id="LetterX">
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3806)"
+         d="m 317.25,456 c 0,0 27.92,0.75 32.75,6 L 396.09375,512 350,562 c -5.52,6 -34,6 -34,6 l 48,0 c 4,0 8.31499,0 12,-4 L 410,527.0938 444,564 c 3.68501,4 8,4 12,4 l 48,0 c 0,0 -28.48,0 -34,-6 L 423.90625,512 470,462 c 4.83,-5.25 32.75,-6 32.75,-6 L 456,456 c -4,0 -8.31499,0 -12,4 L 410,496.9063 376,460 c -3.68501,-4 -8,-4 -12,-4 l -46.75,0 z"
+         id="LetterXShadow"
+         sodipodi:nodetypes="cccccsscscccccccscssc" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#1f7fff;fill-opacity:1;stroke:none;filter:url(#filter3852)"
+         d="m 317.25,456 c 0,0 27.92,0.75 32.75,6 L 396.09375,512 350,562 c -5.52,6 -34,6 -34,6 l 48,0 c 4,0 8.31499,0 12,-4 L 410,527.0938 444,564 c 3.68501,4 8,4 12,4 l 48,0 c 0,0 -28.48,0 -34,-6 L 423.90625,512 470,462 c 4.83,-5.25 32.75,-6 32.75,-6 L 456,456 c -4,0 -8.31499,0 -12,4 L 410,496.9063 376,460 c -3.68501,-4 -8,-4 -12,-4 l -46.75,0 z"
+         id="LetterXGlow"
+         sodipodi:nodetypes="cccccsscscccccccscssc" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccsscscccccccscssc"
+         id="LetterXBorder"
+         d="m 317.25,456 c 0,0 27.92,0.75 32.75,6 L 396.09375,512 350,562 c -5.52,6 -34,6 -34,6 l 48,0 c 4,0 8.31499,0 12,-4 L 410,527.0938 444,564 c 3.68501,4 8,4 12,4 l 48,0 c 0,0 -28.48,0 -34,-6 L 423.90625,512 470,462 c 4.83,-5.25 32.75,-6 32.75,-6 L 456,456 c -4,0 -8.31499,0 -12,4 L 410,496.9063 376,460 c -3.68501,-4 -8,-4 -12,-4 l -46.75,0 z"
+         style="fill:url(#linearGradient7861);fill-opacity:1;stroke:none" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccccccccccc"
+         id="LetterXFill"
+         d="m 400,512 -49,53 16,0 c 3,0 4.15,0 6,-2 l 37,-40 37,40 c 1.85,2 3,2 6,2 l 16,0 -49,-53 49,-53 -16,0 c -3,0 -4.15,0 -6,2 l -37,40 -37,-40 c -1.85,-2 -3,-2 -6,-2 l -16,0 49,53 z"
+         style="fill:url(#linearGradient7863);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    </g>
+    <g
+       style="opacity:1"
+       transform="matrix(1.4511793,0,0,1.4511793,-420.15055,277.56765)"
+       id="LetterO">
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3806)"
+         d="m 540,456 c -12,0 -24,16 -24,32 l 0,48 c 0,16 12,32 24,32 l 96,0 c 12,0 24,-16 24,-32 l 0,-48 c 0,-16 -12,-32 -24,-32 l -96,0 z m 12,20 72,0 c 10,0 12,8 12,16 l 0,40 c 0,8 -2,16 -12,16 l -72,0 c -10,0 -12,-8 -12,-16 l 0,-40 c 0,-8 2,-16 12,-16 z"
+         id="LetterOShadow"
+         sodipodi:nodetypes="cccccccccccccccccc" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#1f7fff;fill-opacity:1;stroke:none;filter:url(#filter3852)"
+         d="m 540,456 c -12,0 -24,16 -24,32 l 0,48 c 0,16 12,32 24,32 l 96,0 c 12,0 24,-16 24,-32 l 0,-48 c 0,-16 -12,-32 -24,-32 l -96,0 z m 12,20 72,0 c 10,0 12,8 12,16 l 0,40 c 0,8 -2,16 -12,16 l -72,0 c -10,0 -12,-8 -12,-16 l 0,-40 c 0,-8 2,-16 12,-16 z"
+         id="LetterOGlow"
+         sodipodi:nodetypes="cccccccccccccccccc" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccccccccccccc"
+         id="LetterOBorder"
+         d="m 540,456 c -12,0 -24,16 -24,32 l 0,48 c 0,16 12,32 24,32 l 96,0 c 12,0 24,-16 24,-32 l 0,-48 c 0,-16 -12,-32 -24,-32 l -96,0 z m 12,20 72,0 c 10,0 12,8 12,16 l 0,40 c 0,8 -2,16 -12,16 l -72,0 c -10,0 -12,-8 -12,-16 l 0,-40 c 0,-8 2,-16 12,-16 z"
+         style="fill:url(#linearGradient7865);fill-opacity:1;stroke:none" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccccccccccccc"
+         id="LetterOFill"
+         d="m 541,459 c -12,0 -22,16 -22,30 l 0,46 c 0,14 10,30 22,30 l 94,0 c 12,0 22,-16 22,-30 l 0,-46 c 0,-14 -10,-30 -22,-30 l -94,0 z m 12,14 70,0 c 12,0 15.99471,8.0001 15.875,20.1563 l 0,37.6875 C 638.99471,543 635,551 623,551 l -70,0 c -12,0 -15.99471,-8 -15.875,-20.1562 l 0,-37.6875 C 537.00529,481.0001 541,473 553,473 Z"
+         style="fill:url(#linearGradient7867);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    </g>
+    <g
+       style="opacity:1"
+       transform="matrix(1.4511793,0,0,1.4511793,-397.4985,277.56762)"
+       id="LetterN">
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3806)"
+         d="m 676,456 c 0,0 38.66667,0 52,0 4,0 5.94939,2.0519 8,4 l 80,76 0,-74 c 0,-6 -32,-6 -32,-6 l 88,0 c 0,0 -32,0 -32,6 l 0,100 c 0,6 32,6 32,6 0,0 -36,0 -48,0 -4,0 -5.95183,-2.0494 -8,-4 l -84,-80 0,78 c 0,6 32,6 32,6 l -88,0 c 0,0 32,0 32,-6 l 0,-100 c 0,-6 -32,-6 -32,-6 z"
+         id="LetterNShadow"
+         sodipodi:nodetypes="csscccccccssccccccc" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#1f7fff;fill-opacity:1;stroke:none;filter:url(#filter3852)"
+         d="m 676,456 c 0,0 38.66667,0 52,0 4,0 5.94939,2.0519 8,4 l 80,76 0,-74 c 0,-6 -32,-6 -32,-6 l 88,0 c 0,0 -32,0 -32,6 l 0,100 c 0,6 32,6 32,6 0,0 -36,0 -48,0 -4,0 -5.95183,-2.0494 -8,-4 l -84,-80 0,78 c 0,6 32,6 32,6 l -88,0 c 0,0 32,0 32,-6 l 0,-100 c 0,-6 -32,-6 -32,-6 z"
+         id="LetterNGlow"
+         sodipodi:nodetypes="csscccccccssccccccc" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="csscccccccssccccccc"
+         id="LetterNBorder"
+         d="m 676,456 c 0,0 38.66667,0 52,0 4,0 5.94939,2.0519 8,4 l 80,76 0,-74 c 0,-6 -32,-6 -32,-6 l 88,0 c 0,0 -32,0 -32,6 l 0,100 c 0,6 32,6 32,6 0,0 -36,0 -48,0 -4,0 -5.95183,-2.0494 -8,-4 l -84,-80 0,78 c 0,6 32,6 32,6 l -88,0 c 0,0 32,0 32,-6 l 0,-100 c 0,-6 -32,-6 -32,-6 z"
+         style="fill:url(#linearGradient7869);fill-opacity:1;stroke:none" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccccccccccc"
+         id="LetterNFill"
+         d="m 839,459 -22,0 c 0,0 2,1 2,2 l 0,82 -89,-84 -21,0 c 0,0 2,1 2,2 l 0,102 c 0,1 -2,2 -2,2 l 22,0 c 0,0 -2,-1 -2,-2 l 0,-86 93,88 17,0 c 0,0 -2,-1 -2,-2 l 0,-102 c 0,-1 2,-2 2,-2 z"
+         style="fill:url(#linearGradient7871);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    </g>
+    <g
+       style="opacity:1"
+       transform="matrix(1.4511793,0,0,1.4511793,-523.43353,277.56762)"
+       id="LetterT">
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3806)"
+         d="m 1220,568 88,0 c 0,0 -32,0 -32,-6 l 0,-86 40,0 c 8,0 12.3729,-14.1865 16,-16 8,-4 32,-4 32,-4 l -200,0 c 0,0 24,0 32,4 3.6271,1.8135 8,16 16,16 l 40,0 0,86 c 0,6 -32,6 -32,6 z"
+         id="LetterTShadow"
+         sodipodi:nodetypes="cccccsccscccc" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#1f7fff;fill-opacity:1;stroke:none;filter:url(#filter3852)"
+         d="m 1220,568 88,0 c 0,0 -32,0 -32,-6 l 0,-86 40,0 c 8,0 12.3729,-14.1865 16,-16 8,-4 32,-4 32,-4 l -200,0 c 0,0 24,0 32,4 3.6271,1.8135 8,16 16,16 l 40,0 0,86 c 0,6 -32,6 -32,6 z"
+         id="LetterTGlow"
+         sodipodi:nodetypes="cccccsccscccc" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccsccscccc"
+         id="LetterTBorder"
+         d="m 1220,568 88,0 c 0,0 -32,0 -32,-6 l 0,-86 40,0 c 8,0 12.3729,-14.1865 16,-16 8,-4 32,-4 32,-4 l -200,0 c 0,0 24,0 32,4 3.6271,1.8135 8,16 16,16 l 40,0 0,86 c 0,6 -32,6 -32,6 z"
+         style="fill:url(#linearGradient7873);fill-opacity:1;stroke:none" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccccc"
+         id="LetterTFill"
+         d="m 1212,473 43,0 0,90 c 0,1 -2,2 -2,2 l 22,0 c 0,0 -2,-1 -2,-2 l 0,-90 43,0 c 4,0 12,-14 12,-14 0,0 -128,0 -128,0 0,0 8,14 12,14 z"
+         style="fill:url(#linearGradient7875);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    </g>
+    <g
+       style="opacity:1"
+       transform="matrix(1.4511793,0,0,1.4511793,-463.05081,277.56762)"
+       id="LetterI">
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3806)"
+         d="m 1380,456 88,0 c 0,0 -32,0 -32,6 l 0,100 c 0,6 32,6 32,6 l -88,0 c 0,0 32,0 32,-6 l 0,-100 c 0,-6 -32,-6 -32,-6 z"
+         id="LetterIShadow"
+         sodipodi:nodetypes="ccccccccc" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#1f7fff;fill-opacity:1;stroke:none;filter:url(#filter3852)"
+         d="m 1380,456 88,0 c 0,0 -32,0 -32,6 l 0,100 c 0,6 32,6 32,6 l -88,0 c 0,0 32,0 32,-6 l 0,-100 c 0,-6 -32,-6 -32,-6 z"
+         id="LetterIGlow"
+         sodipodi:nodetypes="ccccccccc" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccc"
+         id="LetterIBorder"
+         d="m 1380,456 88,0 c 0,0 -32,0 -32,6 l 0,100 c 0,6 32,6 32,6 l -88,0 c 0,0 32,0 32,-6 l 0,-100 c 0,-6 -32,-6 -32,-6 z"
+         style="fill:url(#linearGradient7877);fill-opacity:1;stroke:none" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccc"
+         id="LetterIFill"
+         d="m 1433,461 c 0,-1 2,-2 2,-2 l -22,0 c 0,0 2,1 2,2 l 0,102 c 0,1 -2,2 -2,2 l 22,0 c 0,0 -2,-1 -2,-2 l 0,-102 z"
+         style="fill:url(#linearGradient7879);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    </g>
+    <g
+       style="opacity:1"
+       transform="matrix(1.4511793,0,0,1.4511793,-402.90492,277.56762)"
+       id="LetterC">
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3806)"
+         d="m 1540,456 c -12,0 -24,16 -24,32 l 0,48 c 0,16 12,32 24,32 l 96,0 c 20,0 16,-48 16,-48 0,0 -4,28 -28,28 l -72,0 c -10,0 -12,-8 -12,-16 l 0,-40 c 0,-8 2,-16 12,-16 l 72,0 c 24,0 28,28 28,28 0,0 4,-48 -16,-48 l -96,0 z"
+         id="LetterCShadow"
+         sodipodi:nodetypes="ccccccccccccccc" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#1f7fff;fill-opacity:1;stroke:none;filter:url(#filter3852)"
+         d="m 1540,456 c -12,0 -24,16 -24,32 l 0,48 c 0,16 12,32 24,32 l 96,0 c 20,0 16,-48 16,-48 0,0 -4,28 -28,28 l -72,0 c -10,0 -12,-8 -12,-16 l 0,-40 c 0,-8 2,-16 12,-16 l 72,0 c 24,0 28,28 28,28 0,0 4,-48 -16,-48 l -96,0 z"
+         id="LetterCGlow"
+         sodipodi:nodetypes="ccccccccccccccc" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccccccccc"
+         id="LetterCBorder"
+         d="m 1540,456 c -12,0 -24,16 -24,32 l 0,48 c 0,16 12,32 24,32 l 96,0 c 20,0 16,-48 16,-48 0,0 -4,28 -28,28 l -72,0 c -10,0 -12,-8 -12,-16 l 0,-40 c 0,-8 2,-16 12,-16 l 72,0 c 24,0 28,28 28,28 0,0 4,-48 -16,-48 l -96,0 z"
+         style="fill:url(#linearGradient3612);fill-opacity:1;stroke:none" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccccccccc"
+         id="LetterCFill"
+         d="m 1541,459 c -12,0 -22,16 -22,30 l 0,46 c 0,14 10,30 22,30 l 94,0 c 14,0 15,-31 15,-31 0,0 -6,17 -27,17 l -70,0 c -12,0 -15.9947,-8 -15.875,-20.1562 l 0,-37.6875 C 1537.0053,481.0001 1541,473 1553,473 l 70,0 c 21,0 27,17 27,17 0,0 -1,-31 -15,-31 l -94,0 z"
+         style="fill:url(#linearGradient3704);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    </g>
+  </g>
+</svg>
diff --git a/gfx/minigames/ttt/icon.svg b/gfx/minigames/ttt/icon.svg
new file mode 100644 (file)
index 0000000..b049e95
--- /dev/null
@@ -0,0 +1,136 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="64"
+   height="64"
+   id="svg5177"
+   version="1.1"
+   inkscape:version="0.91+devel r"
+   viewBox="0 0 64 64"
+   sodipodi:docname="icon.svg"
+   inkscape:export-filename="icon.png"
+   inkscape:export-xdpi="38.399998"
+   inkscape:export-ydpi="38.399998">
+  <defs
+     id="defs5179" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1.979899"
+     inkscape:cx="55.318837"
+     inkscape:cy="73.725628"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:object-nodes="true"
+     inkscape:snap-object-midpoints="true"
+     inkscape:window-width="1753"
+     inkscape:window-height="1180"
+     inkscape:window-x="50"
+     inkscape:window-y="-3"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata5182">
+    <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>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-988.36218)">
+    <g
+       id="g4144"
+       transform="matrix(0.4,0,0,0.39999995,-32,631.41737)">
+      <rect
+         y="892.36218"
+         x="80"
+         height="160"
+         width="160"
+         id="rect5725"
+         style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path4195"
+         d="m 133.33333,892.36218 0,160.00002 m 53.33333,-160.00002 0,160.00002 M 240,999.02881 l -160,0 m 160,-53.33331 -160,0"
+         style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 125.28274,900.41277 -37.232149,37.23214 m 0,-37.23214 37.232149,37.23214"
+         style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         id="path4946" />
+      <ellipse
+         ry="18.61607"
+         rx="18.616074"
+         cy="972.36218"
+         cx="213.33334"
+         id="path4951"
+         style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         d="m 231.94942,972.36218 a 18.616074,18.61607 0 0 1 -18.61608,18.61607 18.616074,18.61607 0 0 1 -18.61607,-18.61607 18.616074,18.61607 0 0 1 18.61607,-18.61607 18.616074,18.61607 0 0 1 18.61608,18.61607 z" />
+      <path
+         d="m 178.61606,1007.0795 -37.23214,37.2321 m 0,-37.2321 37.23214,37.2321"
+         style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         id="path4946-1"
+         inkscape:connector-curvature="0" />
+      <path
+         d="m 125.28273,1007.0795 -37.232135,37.2321 m 0,-37.2321 37.232135,37.2321"
+         style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         id="path4946-0"
+         inkscape:connector-curvature="0" />
+      <path
+         d="m 178.61607,953.74611 -37.23214,37.23214 m 0,-37.23214 37.23214,37.23214"
+         style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         id="path4946-05"
+         inkscape:connector-curvature="0" />
+      <ellipse
+         ry="18.61607"
+         rx="18.616074"
+         cy="972.36218"
+         cx="106.66666"
+         id="path4951-5"
+         style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         d="m 125.28273,972.36218 a 18.616074,18.61607 0 0 1 -18.61607,18.61607 18.616074,18.61607 0 0 1 -18.616077,-18.61607 18.616074,18.61607 0 0 1 18.616077,-18.61607 18.616074,18.61607 0 0 1 18.61607,18.61607 z" />
+      <ellipse
+         ry="18.61607"
+         rx="18.616074"
+         cy="1025.6956"
+         cx="213.33334"
+         id="path4951-3"
+         style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         d="m 231.94942,1025.6956 a 18.616074,18.61607 0 0 1 -18.61608,18.616 18.616074,18.61607 0 0 1 -18.61607,-18.616 18.616074,18.61607 0 0 1 18.61607,-18.6161 18.616074,18.61607 0 0 1 18.61608,18.6161 z" />
+      <ellipse
+         ry="18.61607"
+         rx="18.616074"
+         cy="919.02881"
+         cx="213.33334"
+         id="path4951-4"
+         style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         d="m 231.94942,919.02881 a 18.616074,18.61607 0 0 1 -18.61608,18.61607 18.616074,18.61607 0 0 1 -18.61607,-18.61607 18.616074,18.61607 0 0 1 18.61607,-18.61607 18.616074,18.61607 0 0 1 18.61608,18.61607 z" />
+      <path
+         sodipodi:nodetypes="cc"
+         inkscape:connector-curvature="0"
+         id="path5018"
+         d="m 213.75,896.46933 0,151.78567"
+         style="opacity:1;fill:#ccaed7;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    </g>
+  </g>
+</svg>
diff --git a/gfx/minigames/ttt/icon_notif.svg b/gfx/minigames/ttt/icon_notif.svg
new file mode 100644 (file)
index 0000000..68552e2
--- /dev/null
@@ -0,0 +1,132 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="320"
+   height="160"
+   id="svg5177"
+   version="1.1"
+   inkscape:version="0.91+devel r"
+   viewBox="0 0 320 160"
+   sodipodi:docname="icon_notif.svg"
+   inkscape:export-filename="icon.png"
+   inkscape:export-xdpi="38.399998"
+   inkscape:export-ydpi="38.399998">
+  <defs
+     id="defs5179" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="3.959798"
+     inkscape:cx="88.197155"
+     inkscape:cy="107.23733"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:object-nodes="true"
+     inkscape:snap-object-midpoints="true"
+     inkscape:window-width="1753"
+     inkscape:window-height="1180"
+     inkscape:window-x="50"
+     inkscape:window-y="-3"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata5182">
+    <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 />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-892.36218)">
+    <rect
+       style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078"
+       id="rect5725"
+       width="160"
+       height="160"
+       x="80"
+       y="892.36218" />
+    <path
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="m 133.33333,892.36218 0,160.00002 m 53.33333,-160.00002 0,160.00002 M 240,999.02881 l -160,0 m 160,-53.33331 -160,0"
+       id="path4195"
+       inkscape:connector-curvature="0" />
+    <path
+       id="path4946"
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="m 125.28274,900.41277 -37.232149,37.23214 m 0,-37.23214 37.232149,37.23214"
+       inkscape:connector-curvature="0" />
+    <ellipse
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path4951"
+       cx="213.33334"
+       cy="972.36218"
+       rx="18.616074"
+       ry="18.61607"
+       d="m 231.94942,972.36218 a 18.616074,18.61607 0 0 1 -18.61608,18.61607 18.616074,18.61607 0 0 1 -18.61607,-18.61607 18.616074,18.61607 0 0 1 18.61607,-18.61607 18.616074,18.61607 0 0 1 18.61608,18.61607 z" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4946-1"
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="m 178.61606,1007.0795 -37.23214,37.2321 m 0,-37.2321 37.23214,37.2321" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4946-0"
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="m 125.28273,1007.0795 -37.232135,37.2321 m 0,-37.2321 37.232135,37.2321" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4946-05"
+       style="opacity:1;fill:#7e4a99;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="m 178.61607,953.74611 -37.23214,37.23214 m 0,-37.23214 37.23214,37.23214" />
+    <ellipse
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path4951-5"
+       cx="106.66666"
+       cy="972.36218"
+       rx="18.616074"
+       ry="18.61607"
+       d="m 125.28273,972.36218 a 18.616074,18.61607 0 0 1 -18.61607,18.61607 18.616074,18.61607 0 0 1 -18.616077,-18.61607 18.616074,18.61607 0 0 1 18.616077,-18.61607 18.616074,18.61607 0 0 1 18.61607,18.61607 z" />
+    <ellipse
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path4951-3"
+       cx="213.33334"
+       cy="1025.6956"
+       rx="18.616074"
+       ry="18.61607"
+       d="m 231.94942,1025.6956 a 18.616074,18.61607 0 0 1 -18.61608,18.616 18.616074,18.61607 0 0 1 -18.61607,-18.616 18.616074,18.61607 0 0 1 18.61607,-18.6161 18.616074,18.61607 0 0 1 18.61608,18.6161 z" />
+    <ellipse
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path4951-4"
+       cx="213.33334"
+       cy="919.02881"
+       rx="18.616074"
+       ry="18.61607"
+       d="m 231.94942,919.02881 a 18.616074,18.61607 0 0 1 -18.61608,18.61607 18.616074,18.61607 0 0 1 -18.61607,-18.61607 18.616074,18.61607 0 0 1 18.61607,-18.61607 18.616074,18.61607 0 0 1 18.61608,18.61607 z" />
+    <path
+       style="opacity:1;fill:#ccaed7;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="m 213.75,896.46933 0,151.78567"
+       id="path5018"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
+  </g>
+</svg>
diff --git a/gfx/minigames/ttt/piece1.xcf b/gfx/minigames/ttt/piece1.xcf
new file mode 100644 (file)
index 0000000..83ec8aa
Binary files /dev/null and b/gfx/minigames/ttt/piece1.xcf differ
diff --git a/gfx/minigames/ttt/piece2.xcf b/gfx/minigames/ttt/piece2.xcf
new file mode 100644 (file)
index 0000000..45a6c87
Binary files /dev/null and b/gfx/minigames/ttt/piece2.xcf differ
diff --git a/gfx/minigames/ttt/winglow.svg b/gfx/minigames/ttt/winglow.svg
new file mode 100644 (file)
index 0000000..936890a
--- /dev/null
@@ -0,0 +1,106 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<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"
+   width="512"
+   height="512"
+   id="svg8858"
+   version="1.1"
+   inkscape:version="0.91+devel r"
+   viewBox="0 0 512 512.00001"
+   sodipodi:docname="winglow.svg"
+   inkscape:export-filename="tile_selected.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   enable-background="new">
+  <defs
+     id="defs8860">
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3606"
+       id="radialGradient7178-2"
+       gradientUnits="userSpaceOnUse"
+       cx="295.21707"
+       cy="592.49023"
+       fx="295.21707"
+       fy="592.49023"
+       r="35.607876"
+       gradientTransform="matrix(7.1894206,0,0,7.1894152,-1552.7254,-3994.1531)" />
+    <linearGradient
+       id="linearGradient3606">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.666"
+         offset="0"
+         id="stop3608" />
+      <stop
+         id="stop3614"
+         offset="0.41714913"
+         style="stop-color:#ffffff;stop-opacity:0.666" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.25"
+         offset="0.62109798"
+         id="stop9678" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0"
+         offset="1"
+         id="stop3610" />
+    </linearGradient>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.66360314"
+     inkscape:cx="22.302158"
+     inkscape:cy="173.6914"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     borderlayer="true"
+     inkscape:window-width="1753"
+     inkscape:window-height="1180"
+     inkscape:window-x="50"
+     inkscape:window-y="-3"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata8863">
+    <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 />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(-313.71429,-9.5050517)"
+     style="">
+    <circle
+       style="opacity:1;fill:url(#radialGradient7178-2);fill-opacity:1;stroke:none;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="circle4979-2"
+       cx="569.71429"
+       cy="265.50507"
+       r="256"
+       d="m 825.71429,265.50507 a 256,256 0 0 1 -256,256 256,256 0 0 1 -256,-256 256,256 0 0 1 256,-256.0000041 256,256 0 0 1 256,256.0000041 z" />
+  </g>
+</svg>