]> git.cworth.org Git - kub/commitdiff
Make game.current_tile a pointer of type tile_t rather than a simple int.
authorKevin Worth <kworth@hal.(none)>
Sat, 8 Aug 2009 17:28:57 +0000 (13:28 -0400)
committerKevin Worth <kworth@hal.(none)>
Sat, 8 Aug 2009 17:28:57 +0000 (13:28 -0400)
     This is much more powerful as the tiles in players' hands can be set
     as the current tile, not just those in the deck.

.gitignore [changed mode: 0644->0755]
Makefile [changed mode: 0644->0755]
kub.c [changed mode: 0644->0755]
kub_todo.txt [changed mode: 0644->0755]
tiles/blank_tile.svg
tiles/owned_tile.svg
tiles/red6.svg [changed mode: 0644->0755]
tiles/selected_tile.svg [changed mode: 0644->0755]
tiles/tile_wild.svg [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
diff --git a/kub.c b/kub.c
old mode 100644 (file)
new mode 100755 (executable)
index 558a280..f4a5788
--- a/kub.c
+++ b/kub.c
@@ -100,8 +100,10 @@ typedef struct game {
     RsvgHandle *selectedtile;
     RsvgHandle *ownedtile;
 
-    int current_tile;
+    tile_t *current_tile;
+//    int current_tile;
     int select_mode;
+    int drag_group_mode;
     int diff_x, diff_y;
     int click_x, click_y;
     int release_x, release_y;    /*Currently unused*/
@@ -502,8 +504,10 @@ static void game_init(game_t *game)
     if (error)
        FATAL_ERROR (error->message);
 
-    game->current_tile = game->deck.num_tiles - 1;
+//    game->current_tile = game->deck.num_tiles - 1;
+    game->current_tile = &game->deck.tiles[0];
     game->select_mode = 1;
+    game->drag_group_mode = 0;
 
     game->diff_x = game->diff_y = 0;
 }
@@ -529,6 +533,8 @@ static gboolean on_expose_event (GtkWidget *widget, GdkEventExpose *event, game_
 static gboolean on_key_press_event (GtkWidget *widget, GdkEventKey *event, game_t *game)
 {
     printf ("You pressed key %d\n", event->keyval);
+    if (event->keyval == 65505 || event->keyval == 65506)
+       game->drag_group_mode = 1;
 
     return TRUE;
 }
@@ -536,8 +542,39 @@ static gboolean on_key_press_event (GtkWidget *widget, GdkEventKey *event, game_
 static gboolean on_button_press_event (GtkWidget *widget, GdkEventButton *event, game_t *game)
 {
     int i, tile_x, tile_y;
-    tile_t *curr_tile = &game->deck.tiles[game->current_tile];    
+    tile_t *curr_tile;
+    player_t *curr_player = &game->players[0];
 
+    /*Handle tiles in player's hand */
+    for (i = 0; i < curr_player->hand.num_tiles; i++)
+    {
+       curr_tile = &curr_player->hand.tiles[i];
+       if (curr_tile->selected)
+       {
+           curr_tile->selected = 0;
+           gtk_widget_queue_draw_area (widget, curr_tile->x - 1, curr_tile->y - 1, TILE_WIDTH + 1, TILE_HEIGHT + 2);
+       }
+       tile_x = curr_player->hand.tiles[i].x;
+       tile_y = curr_player->hand.tiles[i].y;
+       if (event->x >= tile_x && event->x <= (tile_x + TILE_WIDTH) &&
+           event->y >= tile_y && event->y <= (tile_y + TILE_HEIGHT) )
+        {
+           game->select_mode = 0;
+
+           game->current_tile = curr_tile;
+
+           if (!curr_tile->selected)
+               curr_tile->selected = 1;
+           else
+               curr_tile->selected = 0;
+           gtk_widget_queue_draw_area (widget, curr_tile->x - 1, curr_tile->y - 1, TILE_WIDTH + 1, TILE_HEIGHT + 2);
+
+           game->diff_x = event->x - tile_x;
+           game->diff_y = event->y - tile_y;
+        }
+    }
+
+    /*Handle tiles in deck */
     for (i = 0; i < game->deck.num_tiles; i++)
     {
        curr_tile = &game->deck.tiles[i];
@@ -554,8 +591,10 @@ static gboolean on_button_press_event (GtkWidget *widget, GdkEventButton *event,
         {
            game->select_mode = 0;
  
-           game->current_tile = i;
-           curr_tile = &game->deck.tiles[game->current_tile];
+//         game->current_tile = i;
+           game->current_tile = curr_tile;
+
+//delete_this?     curr_tile = &game->deck.tiles[game->current_tile];
            if (!curr_tile->selected)
                curr_tile->selected = 1;
            else
@@ -568,14 +607,15 @@ static gboolean on_button_press_event (GtkWidget *widget, GdkEventButton *event,
     }
     if (game->select_mode)
     {
-       game->deck.tiles[game->current_tile].selected = 0;
+//     game->deck.tiles[game->current_tile].selected = 0;
+       game->current_tile->selected = 0;
        gtk_widget_queue_draw_area (widget, curr_tile->x - 1, curr_tile->y - 1, TILE_WIDTH + 1, TILE_HEIGHT + 2);
 
        game->selection_box.visible = 1;
-       /*These next two lines are likely to be replaced by...*/
+       /*These next two lines appear to be dead
        game->click_x = event->x;
-       game->click_y = event->y;
-       /*...these two lines*/
+       game->click_y = event->y;*/
+
        game->selection_box.x1 = event->x;
        game->selection_box.x2 = event->x;
        game->selection_box.y1 = event->y;
@@ -760,8 +800,14 @@ static gboolean on_button_motion_event (GtkWidget *widget, GdkEventMotion *event
     }
     else
     {
+       if (game->drag_group_mode)
+       {
+
+       }
+
        tile_t *tile;
-       tile = &game->deck.tiles[game->current_tile];
+//     tile = &game->deck.tiles[game->current_tile];
+       tile = game->current_tile;
 
        /* First, invalidate the region where the tile currently is. */
        gtk_widget_queue_draw_area (widget, tile->x - 1, tile->y - 1, TILE_WIDTH + 1, TILE_HEIGHT + 2);
old mode 100644 (file)
new mode 100755 (executable)
index 08080def13f8e57900f3511b7b995601e23df658..f37c2da5d2873cc5343d45360c9ccec26e10fc4d 100644 (file)
@@ -1,19 +1,21 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <svg
    xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://web.resource.org/cc/"
+   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://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
    xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="544"
-   height="852"
+   width="36"
+   height="51"
    id="svg1421"
    sodipodi:version="0.32"
-   inkscape:version="0.43"
-   sodipodi:docname="blanktile.svg"
-   sodipodi:docbase="/home/kworth/kub/tiles">
+   inkscape:version="0.46"
+   sodipodi:docname="blank_tile_1.svg"
+   sodipodi:docbase="/home/kworth/kub/tiles"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   version="1.0">
   <metadata
      id="metadata1438">
     <rdf:RDF>
     </rdf:RDF>
   </metadata>
   <defs
-     id="defs1436" />
+     id="defs1436">
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 426 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="544 : 426 : 1"
+       inkscape:persp3d-origin="272 : 284 : 1"
+       id="perspective13" />
+  </defs>
   <sodipodi:namedview
-     inkscape:window-height="543"
-     inkscape:window-width="791"
+     inkscape:window-height="726"
+     inkscape:window-width="1246"
      inkscape:pageshadow="2"
      inkscape:pageopacity="0.0"
      borderopacity="1.0"
      bordercolor="#666666"
      pagecolor="#ffffff"
      id="base"
-     inkscape:zoom="7.3333333"
-     inkscape:cx="38.113495"
-     inkscape:cy="827"
-     inkscape:window-x="5"
-     inkscape:window-y="25"
-     inkscape:current-layer="svg1421" />
+     inkscape:zoom="9.6862745"
+     inkscape:cx="17.5"
+     inkscape:cy="24.719209"
+     inkscape:window-x="6"
+     inkscape:window-y="24"
+     inkscape:current-layer="svg1421"
+     showgrid="false" />
   <rect
      id="tile"
      style="fill:#ffffe4;fill-opacity:0.75;stroke:#b2964a;stroke-width:1"
      width="35"
      height="50"
-     x="0"
-     y="0" />
+     x="0.5"
+     y="0.5" />
   <g
      id="sun"
      style="fill:#ffffe4;fill-opacity:0.75;stroke:#b2964a;stroke-width:1"
-     transform="matrix(0.5905,0,0,0.5905,-56.74979,-52.44054)">
+     transform="matrix(0.5905,0,0,0.5905,-56.24979,-51.94054)">
 <!-- Triangular rays around the sun -->    <path
-       d="M 139.38034,162.33228 L 132.916,161.60434 L 131.18921,168.5345 L 125.8984,164.2523 L 120.91689,168.73756 L 119.6583,162.38682 L 112.48703,162.86394 L 114.80783,156.12386 L 109.11958,153.15712 L 114.8007,149.75492 L 112.10076,143.3248 L 119.03117,143.60194 L 120.29189,137.12259 L 125.36176,141.10086 L 130.56421,136.91952 L 132.1242,143.32475 L 138.99407,142.79315 L 136.39722,148.95452 L 142.36152,152.49996 L 136.64051,156.25356 L 139.38034,162.33228 z "
+       d="M 139.38034,162.33228 L 132.916,161.60434 L 131.18921,168.5345 L 125.8984,164.2523 L 120.91689,168.73756 L 119.6583,162.38682 L 112.48703,162.86394 L 114.80783,156.12386 L 109.11958,153.15712 L 114.8007,149.75492 L 112.10076,143.3248 L 119.03117,143.60194 L 120.29189,137.12259 L 125.36176,141.10086 L 130.56421,136.91952 L 132.1242,143.32475 L 138.99407,142.79315 L 136.39722,148.95452 L 142.36152,152.49996 L 136.64051,156.25356 L 139.38034,162.33228 z"
        id="path1425" />
 <!-- The circle of the sun itself -->    <path
        transform="matrix(0.98685,-0.161642,0.161642,0.98685,-19.31536,24.84557)"
-       d="M 133.69581,149.74696 C 133.69843,155.9537 128.66761,160.98664 122.46087,160.98664 C 116.25413,160.98664 111.22331,155.9537 111.22593,149.74696 C 111.22331,143.54022 116.25413,138.50728 122.46087,138.50728 C 128.66761,138.50728 133.69843,143.54022 133.69581,149.74696 z "
+       d="M 133.69581,149.74696 C 133.69843,155.9537 128.66761,160.98664 122.46087,160.98664 C 116.25413,160.98664 111.22331,155.9537 111.22593,149.74696 C 111.22331,143.54022 116.25413,138.50728 122.46087,138.50728 C 128.66761,138.50728 133.69843,143.54022 133.69581,149.74696 z"
        id="path1427" />
 <!-- The right eye of the sun -->    <path
        transform="translate(9.112005,3.852231)"
-       d="M 121.49343,146.01378 C 121.49343,146.93435 120.8135,147.68061 119.97476,147.68061 C 119.13602,147.68061 118.45609,146.93435 118.45609,146.01378 C 118.45609,145.09321 119.13602,144.34695 119.97476,144.34695 C 120.8135,144.34695 121.49343,145.09321 121.49343,146.01378 z "
+       d="M 121.49343,146.01378 C 121.49343,146.93435 120.8135,147.68061 119.97476,147.68061 C 119.13602,147.68061 118.45609,146.93435 118.45609,146.01378 C 118.45609,145.09321 119.13602,144.34695 119.97476,144.34695 C 120.8135,144.34695 121.49343,145.09321 121.49343,146.01378 z"
        id="path1429" />
 <!-- The left eye of the sun -->    <path
        transform="translate(2.407652,3.667036)"
-       d="M 121.49343,146.01378 C 121.49343,146.93435 120.8135,147.68061 119.97476,147.68061 C 119.13602,147.68061 118.45609,146.93435 118.45609,146.01378 C 118.45609,145.09321 119.13602,144.34695 119.97476,144.34695 C 120.8135,144.34695 121.49343,145.09321 121.49343,146.01378 z "
+       d="M 121.49343,146.01378 C 121.49343,146.93435 120.8135,147.68061 119.97476,147.68061 C 119.13602,147.68061 118.45609,146.93435 118.45609,146.01378 C 118.45609,145.09321 119.13602,144.34695 119.97476,144.34695 C 120.8135,144.34695 121.49343,145.09321 121.49343,146.01378 z"
        id="path1431" />
 <!-- The sun's grumpy mouth -->    <path
        d="M 119.78955,156.19997 C 119.78296,156.70099 120.16156,156.94238 120.60445,157.38527 C 120.83248,157.61331 121.18299,157.78567 121.41934,157.90384 C 122.00513,158.19674 122.87596,158.05201 123.5677,158.05201 C 124.43595,158.05201 124.64727,157.91967 125.41974,157.53344 C 125.86375,157.31143 126.22871,157.01783 126.67912,156.79262 C 127.13862,156.56287 127.62672,156.57811 128.08667,156.34813 C 128.38261,156.20017 129.25716,156.34443 129.56829,156.42222 C 130.05387,156.54361 130.68093,156.8231 131.124,157.08895 C 131.41598,157.26413 131.6912,157.59827 131.86482,157.82976 C 131.97287,157.97384 132.09156,158.06099 132.16115,158.20017"
index cab790cd035ac29b5db4f8e188efdf1452ef4455..e57722662671f43a459b28aa5b72dd43f6f0f476 100644 (file)
@@ -7,14 +7,15 @@
    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="544"
-   height="852"
+   width="36"
+   height="51"
    id="svg1421"
    sodipodi:version="0.32"
    inkscape:version="0.46"
-   sodipodi:docname="blanktileowned2.svg"
+   sodipodi:docname="owned_tile_1.svg"
    sodipodi:docbase="/home/kworth/kub/tiles"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   version="1.0">
   <metadata
      id="metadata1438">
     <rdf:RDF>
@@ -37,7 +38,7 @@
        id="perspective2532" />
   </defs>
   <sodipodi:namedview
-     inkscape:window-height="687"
+     inkscape:window-height="726"
      inkscape:window-width="791"
      inkscape:pageshadow="2"
      inkscape:pageopacity="0.0"
      bordercolor="#666666"
      pagecolor="#ffffff"
      id="base"
-     inkscape:zoom="9.0588235"
-     inkscape:cx="17.5"
-     inkscape:cy="827"
-     inkscape:window-x="485"
-     inkscape:window-y="51"
-     inkscape:current-layer="sun"
+     inkscape:zoom="25.491442"
+     inkscape:cx="18.000005"
+     inkscape:cy="12.695287"
+     inkscape:window-x="228"
+     inkscape:window-y="36"
+     inkscape:current-layer="svg1421"
      showgrid="false" />
-  <rect
-     id="tile"
-     style="fill:#ffffe4;fill-opacity:0.75;stroke:#b2964a;stroke-width:1"
-     width="35"
-     height="50"
-     x="0"
-     y="0" />
   <g
      id="sun"
-     style="fill:#ffffe4;fill-opacity:0.75;stroke:#b2964a;stroke-width:1"
-     transform="matrix(0.5905,0,0,0.5905,-56.74979,-52.44054)">
+     style="fill:#a15d2e;fill-opacity:1;stroke:#b2964a;stroke-width:1"
+     transform="matrix(0.5905,0,0,0.5905,-56.24979,-51.94054)">
 <!-- Triangular rays around the sun -->    <path
-       d="M 139.38034,162.33228 L 132.916,161.60434 L 131.18921,168.5345 L 125.8984,164.2523 L 120.91689,168.73756 L 119.6583,162.38682 L 112.48703,162.86394 L 114.80783,156.12386 L 109.11958,153.15712 L 114.8007,149.75492 L 112.10076,143.3248 L 119.03117,143.60194 L 120.29189,137.12259 L 125.36176,141.10086 L 130.56421,136.91952 L 132.1242,143.32475 L 138.99407,142.79315 L 136.39722,148.95452 L 142.36152,152.49996 L 136.64051,156.25356 L 139.38034,162.33228 z "
-       id="path1425" />
+       d="M 139.38034,162.33228 L 132.916,161.60434 L 131.18921,168.5345 L 125.8984,164.2523 L 120.91689,168.73756 L 119.6583,162.38682 L 112.48703,162.86394 L 114.80783,156.12386 L 109.11958,153.15712 L 114.8007,149.75492 L 112.10076,143.3248 L 119.03117,143.60194 L 120.29189,137.12259 L 125.36176,141.10086 L 130.56421,136.91952 L 132.1242,143.32475 L 138.99407,142.79315 L 136.39722,148.95452 L 142.36152,152.49996 L 136.64051,156.25356 L 139.38034,162.33228 z"
+       id="path1425"
+       style="fill:#a15d2e;fill-opacity:1" />
 <!-- The circle of the sun itself -->    <path
        transform="matrix(0.98685,-0.161642,0.161642,0.98685,-19.31536,24.84557)"
-       d="M 133.69581,149.74696 C 133.69843,155.9537 128.66761,160.98664 122.46087,160.98664 C 116.25413,160.98664 111.22331,155.9537 111.22593,149.74696 C 111.22331,143.54022 116.25413,138.50728 122.46087,138.50728 C 128.66761,138.50728 133.69843,143.54022 133.69581,149.74696 z "
-       id="path1427" />
+       d="M 133.69581,149.74696 C 133.69843,155.9537 128.66761,160.98664 122.46087,160.98664 C 116.25413,160.98664 111.22331,155.9537 111.22593,149.74696 C 111.22331,143.54022 116.25413,138.50728 122.46087,138.50728 C 128.66761,138.50728 133.69843,143.54022 133.69581,149.74696 z"
+       id="path1427"
+       style="fill:#a15d2e;fill-opacity:1" />
 <!-- The right eye of the sun -->    <path
        transform="translate(9.112005,3.852231)"
-       d="M 121.49343,146.01378 C 121.49343,146.93435 120.8135,147.68061 119.97476,147.68061 C 119.13602,147.68061 118.45609,146.93435 118.45609,146.01378 C 118.45609,145.09321 119.13602,144.34695 119.97476,144.34695 C 120.8135,144.34695 121.49343,145.09321 121.49343,146.01378 z "
-       id="path1429" />
+       d="M 121.49343,146.01378 C 121.49343,146.93435 120.8135,147.68061 119.97476,147.68061 C 119.13602,147.68061 118.45609,146.93435 118.45609,146.01378 C 118.45609,145.09321 119.13602,144.34695 119.97476,144.34695 C 120.8135,144.34695 121.49343,145.09321 121.49343,146.01378 z"
+       id="path1429"
+       style="fill:#a15d2e;fill-opacity:1" />
 <!-- The left eye of the sun -->    <path
        transform="translate(2.407652,3.667036)"
-       d="M 121.49343,146.01378 C 121.49343,146.93435 120.8135,147.68061 119.97476,147.68061 C 119.13602,147.68061 118.45609,146.93435 118.45609,146.01378 C 118.45609,145.09321 119.13602,144.34695 119.97476,144.34695 C 120.8135,144.34695 121.49343,145.09321 121.49343,146.01378 z "
-       id="path1431" />
+       d="M 121.49343,146.01378 C 121.49343,146.93435 120.8135,147.68061 119.97476,147.68061 C 119.13602,147.68061 118.45609,146.93435 118.45609,146.01378 C 118.45609,145.09321 119.13602,144.34695 119.97476,144.34695 C 120.8135,144.34695 121.49343,145.09321 121.49343,146.01378 z"
+       id="path1431"
+       style="fill:#a15d2e;fill-opacity:1" />
 <!-- The sun's grumpy mouth -->    <path
        d="M 119.78955,156.19997 C 119.78296,156.70099 120.16156,156.94238 120.60445,157.38527 C 120.83248,157.61331 121.18299,157.78567 121.41934,157.90384 C 122.00513,158.19674 122.87596,158.05201 123.5677,158.05201 C 124.43595,158.05201 124.64727,157.91967 125.41974,157.53344 C 125.86375,157.31143 126.22871,157.01783 126.67912,156.79262 C 127.13862,156.56287 127.62672,156.57811 128.08667,156.34813 C 128.38261,156.20017 129.25716,156.34443 129.56829,156.42222 C 130.05387,156.54361 130.68093,156.8231 131.124,157.08895 C 131.41598,157.26413 131.6912,157.59827 131.86482,157.82976 C 131.97287,157.97384 132.09156,158.06099 132.16115,158.20017"
-       id="path1433" />
+       id="path1433"
+       style="fill:#a15d2e;fill-opacity:1" />
     <path
-       style="fill:#a15d2e;fill-opacity:1;stroke-width:0.11038961"
+       style="fill:#a15d2e;fill-opacity:1;stroke-width:0.11038961000000000"
        d="M 16.567276,44.024445 C 13.127132,43.517951 10.718552,40.177478 11.321123,36.748527 C 11.748137,34.318581 13.546279,32.35048 15.915395,31.720005 C 16.702612,31.510509 18.232882,31.513468 19.060898,31.726089 C 21.026229,32.230751 22.641191,33.677675 23.369479,35.586364 C 23.728151,36.526368 23.854842,38.181648 23.642748,39.156752 C 23.116995,41.573903 21.064665,43.540055 18.611001,43.977215 C 17.636596,44.150822 17.454262,44.155035 16.567274,44.024444 L 16.567276,44.024445 z M 17.60637,40.791338 C 18.652524,40.212687 19.01842,40.123137 19.684095,40.28283 C 20.04507,40.36943 20.403156,40.558347 20.679443,40.807955 C 21.109734,41.1967 21.111611,41.197192 21.329866,40.978937 C 21.548123,40.760685 21.548072,40.759186 21.312836,40.460132 C 21.011328,40.076826 20.131852,39.630145 19.511165,39.545071 C 18.952062,39.468438 18.461957,39.603023 17.455844,40.109481 C 16.173167,40.755155 15.057085,40.716464 14.499,40.006974 C 14.240395,39.678212 13.784966,39.650316 13.726063,39.95963 C 13.676687,40.218907 14.182182,40.769758 14.723883,41.046988 C 15.128064,41.253835 15.312788,41.27864 16.060916,41.226507 C 16.773226,41.176867 17.050514,41.098789 17.60637,40.791335 L 17.60637,40.791338 z M 19.92059,37.257269 C 20.482685,37.022411 20.707381,36.575654 20.669362,35.768507 C 20.65059,35.370057 19.978129,34.758442 19.558804,34.758442 C 18.412775,34.758442 17.862159,36.051478 18.623095,36.955801 C 18.861518,37.239148 18.999895,37.310208 19.474,37.392759 C 19.521488,37.401026 19.722452,37.340056 19.920592,37.257268 L 19.92059,37.257269 z M 15.960545,37.141039 C 16.419054,36.949461 16.701368,36.54133 16.715298,36.049918 C 16.745892,34.970677 15.783087,34.319517 14.914969,34.832328 C 14.507356,35.073109 14.31149,35.455346 14.325326,35.983017 C 14.339333,36.517116 14.609132,36.93882 15.063202,37.13633 C 15.50553,37.328735 15.511254,37.328763 15.960544,37.141039 L 15.960545,37.141039 z"
        id="path2521"
        transform="matrix(1.6934801,0,0,1.6934801,96.10464,88.807011)" />
   </g>
+  <rect
+     id="tile"
+     style="fill:#ffffe4;fill-opacity:0.75;stroke:#b2964a;stroke-width:1"
+     width="35"
+     height="50"
+     x="0.5"
+     y="0.5" />
   <path
      style="fill:#a05a2c;fill-opacity:0.98431373"
-     d="M 10.488064,33.781311 L 9.9853599,32.554545 L 10.419883,32.555515 C 10.658869,32.556048 11.266003,32.59536 11.769069,32.642875 L 12.683732,32.729265 L 12.227841,33.261873 C 11.977101,33.554807 11.626971,34.067767 11.449774,34.401786 C 11.272577,34.735805 11.096812,35.008863 11.059184,35.008584 C 11.021556,35.008306 10.764551,34.456033 10.488064,33.781311 z"
+     d="M 10.988064,34.281311 L 10.48536,33.054545 L 10.919883,33.055515 C 11.158869,33.056048 11.766003,33.09536 12.269069,33.142875 L 13.183732,33.229265 L 12.727841,33.761873 C 12.477101,34.054807 12.126971,34.567767 11.949774,34.901786 C 11.772577,35.235805 11.596812,35.508863 11.559184,35.508584 C 11.521556,35.508306 11.264551,34.956033 10.988064,34.281311 z"
      id="path2536" />
   <path
      style="fill:#a05a2c;fill-opacity:0.98431373"
-     d="M 9.4428317,38.524824 L 8.4403503,37.971517 L 9.0337408,37.607803 C 9.3601053,37.407761 9.841904,37.113873 10.104404,36.954721 L 10.581677,36.66535 L 10.581677,37.882674 C 10.581677,38.552204 10.550995,39.09508 10.513495,39.089066 C 10.475995,39.083051 9.9941962,38.829144 9.4428317,38.524825 L 9.4428317,38.524824 z"
+     d="M 9.9428317,39.024824 L 8.9403503,38.471517 L 9.5337408,38.107803 C 9.8601053,37.907761 10.341904,37.613873 10.604404,37.454721 L 11.081677,37.16535 L 11.081677,38.382674 C 11.081677,39.052204 11.050995,39.59508 11.013495,39.589066 C 10.975995,39.583051 10.494196,39.329144 9.9428317,39.024825 L 9.9428317,39.024824 z"
      id="path2538" />
   <path
      style="fill:#a05a2c;fill-opacity:0.98431373"
-     d="M 10.240768,43.22743 C 10.240768,43.150831 10.443228,42.528148 10.69068,41.843694 L 11.140593,40.59923 L 11.422729,41.179162 C 11.577903,41.498122 11.994765,42.08125 12.349089,42.475 L 12.993313,43.190909 L 12.537497,43.191875 C 12.286795,43.192412 11.667472,43.231967 11.161222,43.279779 C 10.568916,43.335716 10.240768,43.317058 10.240768,43.227433 L 10.240768,43.22743 z"
+     d="M 10.740768,43.72743 C 10.740768,43.650831 10.943228,43.028148 11.19068,42.343694 L 11.640593,41.09923 L 11.922729,41.679162 C 12.077903,41.998122 12.494765,42.58125 12.849089,42.975 L 13.493313,43.690909 L 13.037497,43.691875 C 12.786795,43.692412 12.167472,43.731967 11.661222,43.779779 C 11.068916,43.835716 10.740768,43.817058 10.740768,43.727433 L 10.740768,43.72743 z"
      id="path2540" />
   <path
      style="fill:#a05a2c;fill-opacity:0.98431373"
-     d="M 14.827289,46.229336 C 14.667724,45.68309 14.435344,44.26906 14.495287,44.209117 C 14.530691,44.173715 14.916831,44.267635 15.353377,44.417829 C 15.789926,44.568018 16.298415,44.690909 16.483359,44.690909 C 16.900132,44.690909 16.808054,44.817835 15.68631,45.789617 C 15.023372,46.36393 14.886996,46.43374 14.827289,46.229339 L 14.827289,46.229336 z"
+     d="M 15.327289,46.729336 C 15.167724,46.18309 14.935344,44.76906 14.995287,44.709117 C 15.030691,44.673715 15.416831,44.767635 15.853377,44.917829 C 16.289926,45.068018 16.798415,45.190909 16.983359,45.190909 C 17.400132,45.190909 17.308054,45.317835 16.18631,46.289617 C 15.523372,46.86393 15.386996,46.93374 15.327289,46.729339 L 15.327289,46.729336 z"
      id="path2542" />
   <path
      style="fill:#a05a2c;fill-opacity:0.98431373"
-     d="M 19.342824,45.537671 L 18.422154,44.768413 L 19.20646,44.549834 C 19.63783,44.429616 20.260198,44.191753 20.589502,44.021249 L 21.188235,43.711246 L 21.104586,44.030623 C 21.058579,44.20628 20.915998,44.794886 20.787738,45.338636 C 20.659477,45.882386 20.489053,46.322695 20.409017,46.3171 C 20.328978,46.311502 19.849194,45.960761 19.342824,45.53767 L 19.342824,45.537671 z"
+     d="M 19.842824,46.037671 L 18.922154,45.268413 L 19.70646,45.049834 C 20.13783,44.929616 20.760198,44.691753 21.089502,44.521249 L 21.688235,44.211246 L 21.604586,44.530623 C 21.558579,44.70628 21.415998,45.294886 21.287738,45.838636 C 21.159477,46.382386 20.989053,46.822695 20.909017,46.8171 C 20.828978,46.811502 20.349194,46.460761 19.842824,46.03767 L 19.842824,46.037671 z"
      id="path2544" />
   <path
      style="fill:#a05a2c;fill-opacity:0.98431373"
-     d="M 23.740768,42.868536 C 23.103268,42.800387 22.558169,42.724375 22.529439,42.699621 C 22.500708,42.674867 22.673859,42.430633 22.91422,42.156876 C 23.154579,41.883122 23.450249,41.451515 23.571259,41.197751 C 23.692273,40.943988 23.830864,40.736364 23.879244,40.736364 C 23.963767,40.736364 25.004606,42.94768 24.934237,42.977754 C 24.915329,42.985831 24.378268,42.936686 23.740768,42.868537 L 23.740768,42.868536 z"
+     d="M 24.240768,43.368536 C 23.603268,43.300387 23.058169,43.224375 23.029439,43.199621 C 23.000708,43.174867 23.173859,42.930633 23.41422,42.656876 C 23.654579,42.383122 23.950249,41.951515 24.071259,41.697751 C 24.192273,41.443988 24.330864,41.236364 24.379244,41.236364 C 24.463767,41.236364 25.504606,43.44768 25.434237,43.477754 C 25.415329,43.485831 24.878268,43.436686 24.240768,43.368537 L 24.240768,43.368536 z"
      id="path2546" />
   <path
      style="fill:#a05a2c;fill-opacity:0.98431373"
-     d="M 24.354404,37.674453 C 24.354404,36.282566 24.360763,36.253374 24.627131,36.422387 C 24.777131,36.517562 25.287659,36.828502 25.761637,37.113365 L 26.623413,37.631294 L 25.526557,38.365648 C 24.923284,38.769542 24.412757,39.099903 24.392051,39.099785 C 24.371343,39.099667 24.354404,38.458267 24.354404,37.674455 L 24.354404,37.674453 z"
+     d="M 24.854404,38.174453 C 24.854404,36.782566 24.860763,36.753374 25.127131,36.922387 C 25.277131,37.017562 25.787659,37.328502 26.261637,37.613365 L 27.123413,38.131294 L 26.026557,38.865648 C 25.423284,39.269542 24.912757,39.599903 24.892051,39.599785 C 24.871343,39.599667 24.854404,38.958267 24.854404,38.174455 L 24.854404,38.174453 z"
      id="path2548" />
   <path
      style="fill:#a05a2c;fill-opacity:0.98431373"
-     d="M 23.410209,34.124238 C 23.269292,33.862571 22.88982,33.380519 22.56694,33.053013 L 21.979884,32.457546 L 23.301178,32.378714 C 24.027889,32.33536 24.646474,32.323889 24.675812,32.353226 C 24.743151,32.420567 23.834171,34.595811 23.737686,34.59822 C 23.698494,34.599201 23.551127,34.385908 23.41021,34.12424 L 23.410209,34.124238 z"
+     d="M 23.910209,34.624238 C 23.769292,34.362571 23.38982,33.880519 23.06694,33.553013 L 22.479884,32.957546 L 23.801178,32.878714 C 24.527889,32.83536 25.146474,32.823889 25.175812,32.853226 C 25.243151,32.920567 24.334171,35.095811 24.237686,35.09822 C 24.198494,35.099201 24.051127,34.885908 23.91021,34.62424 L 23.910209,34.624238 z"
      id="path2550" />
   <path
      style="fill:#a05a2c;fill-opacity:0.98431373"
      id="path2552" />
   <path
      style="fill:#a05a2c;fill-opacity:0.98431373"
-     d="M 14.104435,31.338483 C 14.151011,31.105603 14.26179,30.520657 14.350612,30.038605 L 14.512106,29.162147 L 15.594984,29.999853 L 16.677861,30.837557 L 15.915239,31.010758 C 15.495794,31.10602 14.897719,31.313998 14.586182,31.472932 L 14.019752,31.761903 L 14.104435,31.338483 z"
+     d="M 14.604435,31.838483 C 14.651011,31.605603 14.76179,31.020657 14.850612,30.538605 L 15.012106,29.662147 L 16.094984,30.499853 L 17.177861,31.337557 L 16.415239,31.510758 C 15.995794,31.60602 15.397719,31.813998 15.086182,31.972932 L 14.519752,32.261903 L 14.604435,31.838483 z"
      id="path2554" />
   <path
      style="fill:#a05a2c;fill-opacity:0.98431373"
-     d="M 19.786222,31.237496 C 19.298722,31.065851 18.695313,30.923786 18.445314,30.921798 C 18.195314,30.919809 18.011222,30.862293 18.036223,30.793986 C 18.061224,30.725679 18.541904,30.301518 19.104404,29.851409 L 20.127131,29.033028 L 20.430404,30.214241 C 20.597203,30.863909 20.71993,31.430133 20.703131,31.472518 C 20.686331,31.514904 20.273722,31.409143 19.786222,31.237496 z"
+     d="M 20.286222,31.737496 C 19.798722,31.565851 19.195313,31.423786 18.945314,31.421798 C 18.695314,31.419809 18.511222,31.362293 18.536223,31.293986 C 18.561224,31.225679 19.041904,30.801518 19.604404,30.351409 L 20.627131,29.533028 L 20.930404,30.714241 C 21.097203,31.363909 21.21993,31.930133 21.203131,31.972518 C 21.186331,32.014904 20.773722,31.909143 20.286222,31.737496 z"
      id="path2556" />
   <path
      style="fill:#a05a2c;fill-opacity:0.98431373"
-     d="M 19.131678,36.481817 C 18.907383,36.257525 18.92596,35.759227 19.166042,35.559977 C 19.434714,35.337001 19.876131,35.498538 19.969044,35.853835 C 20.126508,36.455984 19.543255,36.893396 19.131677,36.481818 L 19.131678,36.481817 z"
+     d="M 19.631678,36.981817 C 19.407383,36.757525 19.42596,36.259227 19.666042,36.059977 C 19.934714,35.837001 20.376131,35.998538 20.469044,36.353835 C 20.626508,36.955984 20.043255,37.393396 19.631677,36.981818 L 19.631678,36.981817 z"
      id="path2558" />
   <path
      style="fill:#a05a2c;fill-opacity:0.98431373"
-     d="M 15.096266,36.293392 C 14.943194,35.894493 15.011685,35.56511 15.277258,35.422979 C 15.637954,35.229939 15.659264,35.236396 15.906407,35.613583 C 16.075503,35.871656 16.090281,36.007956 15.972934,36.227219 C 15.793855,36.561831 15.216013,36.605448 15.096266,36.293392 z"
+     d="M 15.596266,36.793392 C 15.443194,36.394493 15.511685,36.06511 15.777258,35.922979 C 16.137954,35.729939 16.159264,35.736396 16.406407,36.113583 C 16.575503,36.371656 16.590281,36.507956 16.472934,36.727219 C 16.293855,37.061831 15.716013,37.105448 15.596266,36.793392 z"
      id="path2560" />
   <path
      style="fill:#a15d2e;fill-opacity:1"
-     d="M 15.38586,36.485848 C 15.202197,36.462412 15.116716,36.372722 15.059947,36.143888 C 14.995539,35.884255 15.03768,35.650663 15.172654,35.519151 C 15.257987,35.436004 15.46356,35.327422 15.560174,35.314463 C 15.650105,35.302401 15.692381,35.331836 15.805208,35.485073 C 16.037118,35.800042 16.083105,35.963221 15.995177,36.159151 C 15.891084,36.391101 15.651221,36.519708 15.38586,36.485848 L 15.38586,36.485848 z"
+     d="M 15.88586,36.985848 C 15.702197,36.962412 15.616716,36.872722 15.559947,36.643888 C 15.495539,36.384255 15.53768,36.150663 15.672654,36.019151 C 15.757987,35.936004 15.96356,35.827422 16.060174,35.814463 C 16.150105,35.802401 16.192381,35.831836 16.305208,35.985073 C 16.537118,36.300042 16.583105,36.463221 16.495177,36.659151 C 16.391084,36.891101 16.151221,37.019708 15.88586,36.985848 L 15.88586,36.985848 z"
      id="path2492" />
   <path
      style="fill:#a15d2e;fill-opacity:1"
-     d="M 19.341337,36.718652 C 19.188689,36.675771 19.039032,36.546577 18.963634,36.392594 C 18.788366,36.03465 18.9143,35.602063 19.244986,35.42614 C 19.306682,35.393317 19.344868,35.386704 19.472533,35.386733 C 19.60535,35.386764 19.637427,35.39281 19.711506,35.431785 C 19.820645,35.489205 19.949044,35.626261 20.00194,35.741801 C 20.118989,35.997469 20.067181,36.346433 19.881695,36.551744 C 19.754065,36.693016 19.514022,36.767161 19.341337,36.718652 L 19.341337,36.718652 z M 19.684287,36.600603 C 19.839592,36.52771 19.960575,36.353863 19.991312,36.159416 C 20.009576,36.04388 19.985109,35.851987 19.940315,35.759456 C 19.840246,35.55274 19.585041,35.417332 19.378853,35.461551 C 19.19515,35.500949 19.086844,35.593348 19.017331,35.769977 C 18.965976,35.900471 18.963439,36.164774 19.012278,36.296535 C 19.118089,36.582001 19.426549,36.721572 19.684287,36.600603 z"
+     d="M 19.841337,37.218652 C 19.688689,37.175771 19.539032,37.046577 19.463634,36.892594 C 19.288366,36.53465 19.4143,36.102063 19.744986,35.92614 C 19.806682,35.893317 19.844868,35.886704 19.972533,35.886733 C 20.10535,35.886764 20.137427,35.89281 20.211506,35.931785 C 20.320645,35.989205 20.449044,36.126261 20.50194,36.241801 C 20.618989,36.497469 20.567181,36.846433 20.381695,37.051744 C 20.254065,37.193016 20.014022,37.267161 19.841337,37.218652 L 19.841337,37.218652 z M 20.184287,37.100603 C 20.339592,37.02771 20.460575,36.853863 20.491312,36.659416 C 20.509576,36.54388 20.485109,36.351987 20.440315,36.259456 C 20.340246,36.05274 20.085041,35.917332 19.878853,35.961551 C 19.69515,36.000949 19.586844,36.093348 19.517331,36.269977 C 19.465976,36.400471 19.463439,36.664774 19.512278,36.796535 C 19.618089,37.082001 19.926549,37.221572 20.184287,37.100603 z"
      id="path2494" />
   <path
      style="fill:#a15d2e;fill-opacity:1"
-     d="M 15.296312,36.574851 C 15.166385,36.512049 15.031714,36.367821 14.97843,36.234409 C 14.94571,36.152483 14.939237,36.104377 14.938875,35.940431 C 14.938465,35.75514 14.941404,35.738156 14.992551,35.630192 C 15.100374,35.40259 15.294208,35.269649 15.517202,35.270359 C 15.705004,35.270957 15.866208,35.35909 15.97897,35.522815 C 16.183206,35.819357 16.136749,36.254608 15.876468,36.483137 C 15.769556,36.577007 15.684721,36.610444 15.535033,36.617708 C 15.411987,36.62368 15.388672,36.619494 15.296312,36.574851 L 15.296312,36.574851 z M 15.719626,36.455269 C 15.853892,36.395172 15.929182,36.324131 15.990404,36.199772 C 16.036658,36.105816 16.046396,36.066347 16.046396,35.972837 C 16.046396,35.875943 16.037557,35.84275 15.98502,35.742365 C 15.903177,35.585981 15.779009,35.41068 15.702508,35.343511 C 15.648344,35.295955 15.630988,35.289943 15.568263,35.297013 C 15.46497,35.308656 15.240807,35.425018 15.156942,35.510528 C 15.045912,35.623736 15.009835,35.739045 15.019768,35.948954 C 15.033425,36.237536 15.12343,36.420248 15.280679,36.478606 C 15.378966,36.515083 15.613898,36.502592 15.719626,36.455269 L 15.719626,36.455269 z"
+     d="M 15.796312,37.074851 C 15.666385,37.012049 15.531714,36.867821 15.47843,36.734409 C 15.44571,36.652483 15.439237,36.604377 15.438875,36.440431 C 15.438465,36.25514 15.441404,36.238156 15.492551,36.130192 C 15.600374,35.90259 15.794208,35.769649 16.017202,35.770359 C 16.205004,35.770957 16.366208,35.85909 16.47897,36.022815 C 16.683206,36.319357 16.636749,36.754608 16.376468,36.983137 C 16.269556,37.077007 16.184721,37.110444 16.035033,37.117708 C 15.911987,37.12368 15.888672,37.119494 15.796312,37.074851 L 15.796312,37.074851 z M 16.219626,36.955269 C 16.353892,36.895172 16.429182,36.824131 16.490404,36.699772 C 16.536658,36.605816 16.546396,36.566347 16.546396,36.472837 C 16.546396,36.375943 16.537557,36.34275 16.48502,36.242365 C 16.403177,36.085981 16.279009,35.91068 16.202508,35.843511 C 16.148344,35.795955 16.130988,35.789943 16.068263,35.797013 C 15.96497,35.808656 15.740807,35.925018 15.656942,36.010528 C 15.545912,36.123736 15.509835,36.239045 15.519768,36.448954 C 15.533425,36.737536 15.62343,36.920248 15.780679,36.978606 C 15.878966,37.015083 16.113898,37.002592 16.219626,36.955269 L 16.219626,36.955269 z"
      id="path2496" />
   <path
      style="fill:#a15d2e;fill-opacity:1"
-     d="M 23.827646,42.920144 C 23.232334,42.851875 22.658242,42.786608 22.551886,42.775107 L 22.358512,42.754196 L 22.474244,42.63757 C 22.537897,42.573426 22.592992,42.523959 22.596678,42.527645 C 22.600363,42.53133 22.583527,42.568222 22.559263,42.609625 C 22.534999,42.651029 22.515146,42.689218 22.515146,42.69449 C 22.515146,42.706471 22.642272,42.735993 22.787873,42.757825 C 23.147115,42.811691 24.391449,42.947008 24.769408,42.97331 C 24.970054,42.987272 24.966956,42.994252 24.869849,42.747031 C 24.696473,42.30564 24.018575,40.889923 23.926052,40.776016 C 23.878044,40.71691 23.847127,40.725829 23.783937,40.817013 C 23.758316,40.853983 23.734816,40.881692 23.731712,40.878589 C 23.725602,40.872478 23.876811,40.525063 23.894378,40.504852 C 23.90025,40.498096 24.161184,41.061874 24.474229,41.757693 C 24.787275,42.453511 25.046447,43.028571 25.050167,43.035602 C 25.062474,43.058862 24.919701,43.045378 23.827646,42.920144 L 23.827646,42.920144 z"
+     d="M 24.327646,43.420144 C 23.732334,43.351875 23.158242,43.286608 23.051886,43.275107 L 22.858512,43.254196 L 22.974244,43.13757 C 23.037897,43.073426 23.092992,43.023959 23.096678,43.027645 C 23.100363,43.03133 23.083527,43.068222 23.059263,43.109625 C 23.034999,43.151029 23.015146,43.189218 23.015146,43.19449 C 23.015146,43.206471 23.142272,43.235993 23.287873,43.257825 C 23.647115,43.311691 24.891449,43.447008 25.269408,43.47331 C 25.470054,43.487272 25.466956,43.494252 25.369849,43.247031 C 25.196473,42.80564 24.518575,41.389923 24.426052,41.276016 C 24.378044,41.21691 24.347127,41.225829 24.283937,41.317013 C 24.258316,41.353983 24.234816,41.381692 24.231712,41.378589 C 24.225602,41.372478 24.376811,41.025063 24.394378,41.004852 C 24.40025,40.998096 24.661184,41.561874 24.974229,42.257693 C 25.287275,42.953511 25.546447,43.528571 25.550167,43.535602 C 25.562474,43.558862 25.419701,43.545378 24.327646,43.420144 L 24.327646,43.420144 z"
      id="path2498" />
   <path
      style="fill:#a15d2e;fill-opacity:1"
-     d="M 24.293138,39.206981 C 24.299818,39.189572 24.318625,39.097547 24.334931,39.002482 L 24.364578,38.829636 L 24.373101,38.960384 C 24.377788,39.032296 24.385459,39.094736 24.390146,39.09914 C 24.394834,39.103544 24.513726,39.034478 24.654351,38.94566 C 25.021176,38.713975 26.62317,37.643569 26.622737,37.63044 C 26.622537,37.624373 26.527175,37.563247 26.410822,37.494604 C 26.294469,37.425961 25.821473,37.140237 25.35972,36.859661 C 24.897967,36.579085 24.502597,36.349522 24.481119,36.349522 C 24.424655,36.349522 24.390203,36.414156 24.370397,36.557238 C 24.360906,36.625807 24.351196,36.683869 24.348821,36.686264 C 24.346446,36.68866 24.334988,36.634967 24.323359,36.566946 C 24.311729,36.498926 24.287352,36.378842 24.269189,36.300093 C 24.251025,36.221345 24.239583,36.153495 24.243763,36.149315 C 24.249162,36.143916 26.697108,37.586465 26.738768,37.619596 C 26.74234,37.622437 25.086585,38.713383 24.331307,39.205828 C 24.283047,39.237294 24.281487,39.237342 24.293138,39.206981 L 24.293138,39.206981 z"
+     d="M 24.793138,39.706981 C 24.799818,39.689572 24.818625,39.597547 24.834931,39.502482 L 24.864578,39.329636 L 24.873101,39.460384 C 24.877788,39.532296 24.885459,39.594736 24.890146,39.59914 C 24.894834,39.603544 25.013726,39.534478 25.154351,39.44566 C 25.521176,39.213975 27.12317,38.143569 27.122737,38.13044 C 27.122537,38.124373 27.027175,38.063247 26.910822,37.994604 C 26.794469,37.925961 26.321473,37.640237 25.85972,37.359661 C 25.397967,37.079085 25.002597,36.849522 24.981119,36.849522 C 24.924655,36.849522 24.890203,36.914156 24.870397,37.057238 C 24.860906,37.125807 24.851196,37.183869 24.848821,37.186264 C 24.846446,37.18866 24.834988,37.134967 24.823359,37.066946 C 24.811729,36.998926 24.787352,36.878842 24.769189,36.800093 C 24.751025,36.721345 24.739583,36.653495 24.743763,36.649315 C 24.749162,36.643916 27.197108,38.086465 27.238768,38.119596 C 27.24234,38.122437 25.586585,39.213383 24.831307,39.705828 C 24.783047,39.737294 24.781487,39.737342 24.793138,39.706981 L 24.793138,39.706981 z"
      id="path2500" />
   <path
      style="fill:#a15d2e;fill-opacity:1"
-     d="M 19.987197,46.100806 C 19.698388,45.866094 19.465925,45.670222 19.470612,45.665535 C 19.475298,45.660848 19.535177,45.702269 19.603674,45.757581 C 19.904943,46.000857 20.23628,46.242088 20.346266,46.298226 C 20.424723,46.338272 20.457381,46.31469 20.527265,46.16753 C 20.620052,45.97214 20.717718,45.645707 20.872678,45.013046 C 20.951899,44.689609 21.055254,44.268919 21.102358,44.078181 C 21.149461,43.887443 21.184232,43.721565 21.179627,43.709564 C 21.175021,43.697563 21.189822,43.679283 21.212518,43.668942 C 21.243999,43.654598 21.253662,43.655105 21.253275,43.671082 C 21.251894,43.728115 20.542596,46.519819 20.528577,46.5234 C 20.519628,46.525685 20.276007,46.335518 19.987198,46.100806 L 19.987197,46.100806 z"
+     d="M 20.487197,46.600806 C 20.198388,46.366094 19.965925,46.170222 19.970612,46.165535 C 19.975298,46.160848 20.035177,46.202269 20.103674,46.257581 C 20.404943,46.500857 20.73628,46.742088 20.846266,46.798226 C 20.924723,46.838272 20.957381,46.81469 21.027265,46.66753 C 21.120052,46.47214 21.217718,46.145707 21.372678,45.513046 C 21.451899,45.189609 21.555254,44.768919 21.602358,44.578181 C 21.649461,44.387443 21.684232,44.221565 21.679627,44.209564 C 21.675021,44.197563 21.689822,44.179283 21.712518,44.168942 C 21.743999,44.154598 21.753662,44.155105 21.753275,44.171082 C 21.751894,44.228115 21.042596,47.019819 21.028577,47.0234 C 21.019628,47.025685 20.776007,46.835518 20.487198,46.600806 L 20.487197,46.600806 z"
      id="path2502" />
   <path
      style="fill:#a15d2e;fill-opacity:1"
-     d="M 18.856498,45.186752 C 18.536429,44.927151 18.279469,44.710212 18.285475,44.704664 C 18.291482,44.699117 18.369265,44.685304 18.458328,44.67397 C 18.54739,44.662636 18.718896,44.634134 18.839452,44.610635 C 18.960008,44.587135 19.061422,44.570686 19.064818,44.574081 C 19.069922,44.579187 18.859441,44.640304 18.487101,44.741832 C 18.451364,44.751577 18.424518,44.765809 18.427442,44.773458 C 18.430367,44.781109 18.651368,44.969515 18.918555,45.19214 C 19.44439,45.630276 19.479963,45.661284 19.455014,45.659764 C 19.445899,45.659209 19.176567,45.446353 18.856498,45.186752 L 18.856498,45.186752 z"
+     d="M 19.356498,45.686752 C 19.036429,45.427151 18.779469,45.210212 18.785475,45.204664 C 18.791482,45.199117 18.869265,45.185304 18.958328,45.17397 C 19.04739,45.162636 19.218896,45.134134 19.339452,45.110635 C 19.460008,45.087135 19.561422,45.070686 19.564818,45.074081 C 19.569922,45.079187 19.359441,45.140304 18.987101,45.241832 C 18.951364,45.251577 18.924518,45.265809 18.927442,45.273458 C 18.930367,45.281109 19.151368,45.469515 19.418555,45.69214 C 19.94439,46.130276 19.979963,46.161284 19.955014,46.159764 C 19.945899,46.159209 19.676567,45.946353 19.356498,45.686752 L 19.356498,45.686752 z"
      id="path2504" />
   <path
      style="fill:#a15d2e;fill-opacity:1"
-     d="M 14.838521,46.585915 C 14.808684,46.482613 14.329226,44.005784 14.33747,43.99754 C 14.343053,43.991957 14.415357,44.019652 14.498145,44.059084 C 14.580933,44.098516 14.736879,44.167991 14.844692,44.213473 C 14.952504,44.258954 15.031222,44.296385 15.019621,44.296652 C 15.008019,44.296919 14.924499,44.277903 14.834021,44.254395 C 14.743543,44.230887 14.62839,44.206819 14.578126,44.200912 L 14.486737,44.190171 L 14.486737,44.318776 C 14.486737,44.601784 14.693859,45.797186 14.811111,46.190895 C 14.863828,46.367909 14.923789,46.381177 15.114364,46.258003 C 15.348513,46.106664 16.443701,45.146992 16.608701,44.948571 C 16.72371,44.810266 16.739761,44.763702 16.68712,44.721076 C 16.650003,44.691021 16.650835,44.690695 16.739948,44.700412 C 16.789745,44.705841 16.855274,44.715124 16.885569,44.72104 C 16.943316,44.732316 16.90293,44.769924 14.935464,46.536951 C 14.861371,46.603495 14.845861,46.611329 14.83852,46.585915 L 14.838521,46.585915 z"
+     d="M 15.338521,47.085915 C 15.308684,46.982613 14.829226,44.505784 14.83747,44.49754 C 14.843053,44.491957 14.915357,44.519652 14.998145,44.559084 C 15.080933,44.598516 15.236879,44.667991 15.344692,44.713473 C 15.452504,44.758954 15.531222,44.796385 15.519621,44.796652 C 15.508019,44.796919 15.424499,44.777903 15.334021,44.754395 C 15.243543,44.730887 15.12839,44.706819 15.078126,44.700912 L 14.986737,44.690171 L 14.986737,44.818776 C 14.986737,45.101784 15.193859,46.297186 15.311111,46.690895 C 15.363828,46.867909 15.423789,46.881177 15.614364,46.758003 C 15.848513,46.606664 16.943701,45.646992 17.108701,45.448571 C 17.22371,45.310266 17.239761,45.263702 17.18712,45.221076 C 17.150003,45.191021 17.150835,45.190695 17.239948,45.200412 C 17.289745,45.205841 17.355274,45.215124 17.385569,45.22104 C 17.443316,45.232316 17.40293,45.269924 15.435464,47.036951 C 15.361371,47.103495 15.345861,47.111329 15.33852,47.085915 L 15.338521,47.085915 z"
      id="path2506" />
   <path
      style="fill:#a15d2e;fill-opacity:1"
-     d="M 10.121482,43.363899 C 10.136523,43.307902 11.092286,40.538665 11.102007,40.522916 C 11.107336,40.514282 11.117885,40.52395 11.12545,40.5444 C 11.13574,40.572215 11.085207,40.730749 10.924848,41.173734 C 10.479821,42.403107 10.25001,43.091721 10.246923,43.205092 C 10.245454,43.259048 10.251397,43.267324 10.304945,43.285891 C 10.403231,43.31997 10.853382,43.311664 11.421423,43.265292 C 11.741516,43.239161 12.134628,43.219276 12.418582,43.214853 L 12.887332,43.207551 L 11.557786,43.299685 C 10.826536,43.350359 10.202417,43.392249 10.170855,43.392774 C 10.124283,43.393548 10.114979,43.388107 10.121482,43.363899 L 10.121482,43.363899 z"
+     d="M 10.621482,43.863899 C 10.636523,43.807902 11.592286,41.038665 11.602007,41.022916 C 11.607336,41.014282 11.617885,41.02395 11.62545,41.0444 C 11.63574,41.072215 11.585207,41.230749 11.424848,41.673734 C 10.979821,42.903107 10.75001,43.591721 10.746923,43.705092 C 10.745454,43.759048 10.751397,43.767324 10.804945,43.785891 C 10.903231,43.81997 11.353382,43.811664 11.921423,43.765292 C 12.241516,43.739161 12.634628,43.719276 12.918582,43.714853 L 13.387332,43.707551 L 12.057786,43.799685 C 11.326536,43.850359 10.702417,43.892249 10.670855,43.892774 C 10.624283,43.893548 10.614979,43.888107 10.621482,43.863899 L 10.621482,43.863899 z"
      id="path2508" />
   <path
      style="fill:#a15d2e;fill-opacity:1"
-     d="M 12.985343,43.191628 C 12.987687,43.183599 12.899477,43.076776 12.78932,42.954244 C 12.679164,42.831713 12.589036,42.726264 12.589036,42.719914 C 12.589036,42.713564 12.652317,42.76796 12.729661,42.840794 C 12.807005,42.913627 12.929732,43.023034 13.002388,43.08392 C 13.075045,43.144805 13.134491,43.197232 13.134491,43.200424 C 13.134491,43.203616 13.099974,43.206228 13.057786,43.206228 C 13.015599,43.206228 12.982999,43.199658 12.985343,43.191628 z"
+     d="M 13.485343,43.691628 C 13.487687,43.683599 13.399477,43.576776 13.28932,43.454244 C 13.179164,43.331713 13.089036,43.226264 13.089036,43.219914 C 13.089036,43.213564 13.152317,43.26796 13.229661,43.340794 C 13.307005,43.413627 13.429732,43.523034 13.502388,43.58392 C 13.575045,43.644805 13.634491,43.697232 13.634491,43.700424 C 13.634491,43.703616 13.599974,43.706228 13.557786,43.706228 C 13.515599,43.706228 13.482999,43.699658 13.485343,43.691628 z"
      id="path2510" />
   <path
      style="fill:#a15d2e;fill-opacity:1"
-     d="M 9.5124394,38.610646 C 8.8567444,38.268518 8.3178549,37.986183 8.314907,37.983235 C 8.3098655,37.978193 10.614167,36.591531 10.650811,36.577556 C 10.661894,36.573329 10.6633,36.603248 10.654816,36.662783 C 10.647625,36.71324 10.631975,36.823558 10.620039,36.907933 L 10.598336,37.061342 L 10.596527,36.859234 C 10.595136,36.703861 10.589733,36.659039 10.573161,36.665398 C 10.561305,36.669948 10.114501,36.940446 9.5802632,37.266506 C 9.0460259,37.592565 8.5679136,37.884219 8.5177914,37.914626 L 8.4266603,37.969911 L 8.5007459,38.012654 C 8.7875061,38.178095 10.130057,38.90829 10.354224,39.020735 C 10.473403,39.080517 10.517672,39.09557 10.527506,39.079659 C 10.545032,39.051301 10.563058,38.870513 10.577485,38.578387 C 10.583968,38.447137 10.590497,38.371317 10.591995,38.409898 C 10.595576,38.50214 10.65539,38.936167 10.686832,39.098062 C 10.700464,39.168258 10.710042,39.227268 10.708115,39.229195 C 10.706188,39.231122 10.168134,38.952775 9.5124392,38.610646 L 9.5124394,38.610646 z"
+     d="M 10.012439,39.110646 C 9.3567444,38.768518 8.8178549,38.486183 8.814907,38.483235 C 8.8098655,38.478193 11.114167,37.091531 11.150811,37.077556 C 11.161894,37.073329 11.1633,37.103248 11.154816,37.162783 C 11.147625,37.21324 11.131975,37.323558 11.120039,37.407933 L 11.098336,37.561342 L 11.096527,37.359234 C 11.095136,37.203861 11.089733,37.159039 11.073161,37.165398 C 11.061305,37.169948 10.614501,37.440446 10.080263,37.766506 C 9.5460259,38.092565 9.0679136,38.384219 9.0177914,38.414626 L 8.9266603,38.469911 L 9.0007459,38.512654 C 9.2875061,38.678095 10.630057,39.40829 10.854224,39.520735 C 10.973403,39.580517 11.017672,39.59557 11.027506,39.579659 C 11.045032,39.551301 11.063058,39.370513 11.077485,39.078387 C 11.083968,38.947137 11.090497,38.871317 11.091995,38.909898 C 11.095576,39.00214 11.15539,39.436167 11.186832,39.598062 C 11.200464,39.668258 11.210042,39.727268 11.208115,39.729195 C 11.206188,39.731122 10.668134,39.452775 10.012439,39.110646 L 10.012439,39.110646 z"
      id="path2512" />
   <path
      style="fill:#a15d2e;fill-opacity:1"
      id="path2514" />
   <path
      style="fill:#a15d2e;fill-opacity:1"
-     d="M 12.418582,33.060594 C 12.418582,33.053952 12.479701,32.978022 12.554402,32.891861 L 12.690222,32.735205 L 12.64389,32.722891 C 12.57507,32.704599 11.257345,32.589533 10.867445,32.567768 C 10.815883,32.564889 10.846565,32.561694 10.935627,32.560666 C 11.02469,32.559639 11.496423,32.575479 11.983923,32.595865 L 12.870286,32.632933 L 12.644434,32.852802 C 12.520215,32.97373 12.418582,33.067237 12.418582,33.060594 z"
+     d="M 12.918582,33.560594 C 12.918582,33.553952 12.979701,33.478022 13.054402,33.391861 L 13.190222,33.235205 L 13.14389,33.222891 C 13.07507,33.204599 11.757345,33.089533 11.367445,33.067768 C 11.315883,33.064889 11.346565,33.061694 11.435627,33.060666 C 11.52469,33.059639 11.996423,33.075479 12.483923,33.095865 L 13.370286,33.132933 L 13.144434,33.352802 C 13.020215,33.47373 12.918582,33.567237 12.918582,33.560594 z"
      id="path2516" />
   <path
      style="fill:#a15d2e;fill-opacity:1"
-     d="M 10.480728,33.879952 L 9.915032,32.53066 L 10.037546,32.526326 C 10.104928,32.523942 10.298127,32.529131 10.466877,32.537857 L 10.773695,32.553723 L 10.375868,32.54824 C 10.013234,32.543243 9.9787403,32.545238 9.9859503,32.5708 C 9.9959846,32.606374 10.47347,33.768347 10.631374,34.141455 C 10.812603,34.569677 11.031239,35.010773 11.062266,35.010773 C 11.076798,35.010773 11.116776,34.96847 11.151105,34.916766 C 11.185434,34.865063 11.216352,34.825589 11.219811,34.829048 C 11.226842,34.836079 11.074776,35.2004 11.057455,35.21802 C 11.051388,35.224193 10.79186,34.622063 10.480727,33.879952 L 10.480728,33.879952 z"
+     d="M 10.980728,34.379952 L 10.415032,33.03066 L 10.537546,33.026326 C 10.604928,33.023942 10.798127,33.029131 10.966877,33.037857 L 11.273695,33.053723 L 10.875868,33.04824 C 10.513234,33.043243 10.47874,33.045238 10.48595,33.0708 C 10.495985,33.106374 10.97347,34.268347 11.131374,34.641455 C 11.312603,35.069677 11.531239,35.510773 11.562266,35.510773 C 11.576798,35.510773 11.616776,35.46847 11.651105,35.416766 C 11.685434,35.365063 11.716352,35.325589 11.719811,35.329048 C 11.726842,35.336079 11.574776,35.7004 11.557455,35.71802 C 11.551388,35.724193 11.29186,35.122063 10.980727,34.379952 L 10.980728,34.379952 z"
      id="path2518" />
   <path
      style="fill:#a15d2e;fill-opacity:1"
-     d="M 13.952673,31.825552 C 13.952673,31.79922 14.480492,29.090908 14.486867,29.084534 C 14.489894,29.081507 15.01291,29.487465 15.649126,29.986663 L 16.805882,30.894296 L 16.653425,30.916268 C 15.992554,31.011509 15.381622,31.171147 14.881612,31.379245 C 14.790391,31.417211 14.707058,31.447934 14.696429,31.44752 C 14.659905,31.446096 14.809553,31.376955 15.024427,31.295975 C 15.423076,31.145737 15.740898,31.055469 16.35182,30.918966 C 16.532289,30.878642 16.679664,30.841255 16.679321,30.835882 C 16.678561,30.823988 14.555194,29.182434 14.526153,29.17129 C 14.511458,29.165651 14.462598,29.393901 14.35535,29.969185 C 14.272729,30.412371 14.163668,30.986852 14.112992,31.245809 C 14.062317,31.504766 14.020854,31.729397 14.020854,31.744988 C 14.020854,31.767733 14.027371,31.769849 14.053825,31.755691 C 14.093515,31.73445 14.119224,31.732455 14.096707,31.752364 C 14.05509,31.78916 13.952673,31.841202 13.952673,31.825552 z"
+     d="M 14.452673,32.325552 C 14.452673,32.29922 14.980492,29.590908 14.986867,29.584534 C 14.989894,29.581507 15.51291,29.987465 16.149126,30.486663 L 17.305882,31.394296 L 17.153425,31.416268 C 16.492554,31.511509 15.881622,31.671147 15.381612,31.879245 C 15.290391,31.917211 15.207058,31.947934 15.196429,31.94752 C 15.159905,31.946096 15.309553,31.876955 15.524427,31.795975 C 15.923076,31.645737 16.240898,31.555469 16.85182,31.418966 C 17.032289,31.378642 17.179664,31.341255 17.179321,31.335882 C 17.178561,31.323988 15.055194,29.682434 15.026153,29.67129 C 15.011458,29.665651 14.962598,29.893901 14.85535,30.469185 C 14.772729,30.912371 14.663668,31.486852 14.612992,31.745809 C 14.562317,32.004766 14.520854,32.229397 14.520854,32.244988 C 14.520854,32.267733 14.527371,32.269849 14.553825,32.255691 C 14.593515,32.23445 14.619224,32.232455 14.596707,32.252364 C 14.55509,32.28916 14.452673,32.341202 14.452673,32.325552 z"
      id="path2520" />
   <path
      style="fill:#a15d2e;fill-opacity:1"
-     d="M 20.617445,31.610762 C 20.509633,31.555544 20.346598,31.477995 20.255145,31.438432 C 20.163692,31.398869 20.092173,31.363193 20.096214,31.359152 C 20.100255,31.355112 20.171244,31.371178 20.253969,31.394855 C 20.440858,31.448346 20.626059,31.49133 20.669639,31.49133 C 20.734345,31.49133 20.714996,31.366773 20.531946,30.604966 C 20.474503,30.365904 20.362854,29.919921 20.283838,29.613893 C 20.204822,29.307865 20.140173,29.052822 20.140173,29.047132 C 20.140173,29.041441 20.13323,29.036784 20.124744,29.036784 C 20.109614,29.036784 19.018732,29.906126 18.716877,30.158736 C 18.48943,30.349077 18.199989,30.607428 18.103544,30.706189 C 18.012016,30.799915 18.010424,30.829296 18.094567,30.871958 C 18.12575,30.887768 18.097758,30.889898 17.95653,30.88246 C 17.859095,30.877329 17.777901,30.872041 17.776096,30.87071 C 17.774292,30.869379 18.309956,30.436397 18.966462,29.908528 C 19.622968,29.380659 20.162591,28.951311 20.165624,28.954423 C 20.168658,28.957534 20.316924,29.558375 20.495104,30.289625 C 20.673285,31.020875 20.824393,31.640265 20.8309,31.666046 C 20.837407,31.691827 20.836148,31.712525 20.8281,31.712041 C 20.820053,31.711556 20.725258,31.665981 20.617445,31.610762 z"
+     d="M 21.117445,32.110762 C 21.009633,32.055544 20.846598,31.977995 20.755145,31.938432 C 20.663692,31.898869 20.592173,31.863193 20.596214,31.859152 C 20.600255,31.855112 20.671244,31.871178 20.753969,31.894855 C 20.940858,31.948346 21.126059,31.99133 21.169639,31.99133 C 21.234345,31.99133 21.214996,31.866773 21.031946,31.104966 C 20.974503,30.865904 20.862854,30.419921 20.783838,30.113893 C 20.704822,29.807865 20.640173,29.552822 20.640173,29.547132 C 20.640173,29.541441 20.63323,29.536784 20.624744,29.536784 C 20.609614,29.536784 19.518732,30.406126 19.216877,30.658736 C 18.98943,30.849077 18.699989,31.107428 18.603544,31.206189 C 18.512016,31.299915 18.510424,31.329296 18.594567,31.371958 C 18.62575,31.387768 18.597758,31.389898 18.45653,31.38246 C 18.359095,31.377329 18.277901,31.372041 18.276096,31.37071 C 18.274292,31.369379 18.809956,30.936397 19.466462,30.408528 C 20.122968,29.880659 20.662591,29.451311 20.665624,29.454423 C 20.668658,29.457534 20.816924,30.058375 20.995104,30.789625 C 21.173285,31.520875 21.324393,32.140265 21.3309,32.166046 C 21.337407,32.191827 21.336148,32.212525 21.3281,32.212041 C 21.320053,32.211556 21.225258,32.165981 21.117445,32.110762 z"
      id="path2522" />
   <path
      style="fill:#a15d2e;fill-opacity:1"
-     d="M 23.656125,34.608049 C 23.601461,34.504744 23.559915,34.417042 23.5638,34.413157 C 23.567684,34.409272 23.599488,34.447655 23.634473,34.498452 C 23.712589,34.611873 23.736292,34.622507 23.778366,34.563003 C 23.954878,34.313369 24.684491,32.553151 24.684491,32.376942 C 24.684491,32.352737 24.666238,32.342941 24.603525,32.333491 C 24.502846,32.318319 23.635672,32.349863 22.888928,32.39586 C 22.579458,32.414923 22.306503,32.428221 22.282362,32.425413 C 22.258221,32.422605 22.823544,32.375127 23.538637,32.319908 C 24.25373,32.264688 24.841364,32.222501 24.844491,32.226158 C 24.851167,32.233967 23.784377,34.767055 23.767179,34.784229 C 23.760763,34.790635 23.710788,34.711355 23.656125,34.608049 L 23.656125,34.608049 z"
+     d="M 24.156125,35.108049 C 24.101461,35.004744 24.059915,34.917042 24.0638,34.913157 C 24.067684,34.909272 24.099488,34.947655 24.134473,34.998452 C 24.212589,35.111873 24.236292,35.122507 24.278366,35.063003 C 24.454878,34.813369 25.184491,33.053151 25.184491,32.876942 C 25.184491,32.852737 25.166238,32.842941 25.103525,32.833491 C 25.002846,32.818319 24.135672,32.849863 23.388928,32.89586 C 23.079458,32.914923 22.806503,32.928221 22.782362,32.925413 C 22.758221,32.922605 23.323544,32.875127 24.038637,32.819908 C 24.75373,32.764688 25.341364,32.722501 25.344491,32.726158 C 25.351167,32.733967 24.284377,35.267055 24.267179,35.284229 C 24.260763,35.290635 24.210788,35.211355 24.156125,35.108049 L 24.156125,35.108049 z"
      id="path2524" />
+  <path
+     sodipodi:type="star"
+     style="fill:#a15d2e;fill-opacity:1"
+     id="path2551"
+     sodipodi:sides="3"
+     sodipodi:cx="11.415596"
+     sodipodi:cy="38.36831"
+     sodipodi:r1="2.9053196"
+     sodipodi:r2="1.4526598"
+     sodipodi:arg1="3.1010743"
+     sodipodi:arg2="4.1482719"
+     inkscape:flatsided="false"
+     inkscape:rounded="0"
+     inkscape:randomized="0"
+     d="M 8.5126609,38.485996 L 10.638903,37.140723 L 12.765144,35.79545 L 12.867064,38.309466 L 12.968983,40.823481 L 10.740822,39.654738 L 8.5126609,38.485996 z" />
+  <g
+     id="g2561">
+    <path
+       id="path2515"
+       d="M 14.943615,48.133502 C 14.93175,48.084956 14.75572,47.2002 14.552435,46.167377 C 14.349151,45.134554 14.174955,44.281646 14.165334,44.272024 C 14.155711,44.262402 13.174393,44.319668 11.984626,44.399281 C 10.794858,44.478894 9.8110075,44.533626 9.7982899,44.520908 C 9.7855723,44.508191 9.9531278,43.980815 10.170636,43.348961 C 10.388144,42.717109 10.706334,41.793328 10.877725,41.296117 L 11.189344,40.392096 L 9.3912121,39.45479 L 7.5930793,38.517484 L 9.3410306,37.469056 C 10.302404,36.892419 11.105971,36.403638 11.126735,36.382874 C 11.150919,36.358689 10.867087,35.636336 10.336994,34.372983 C 9.8818721,33.288307 9.514224,32.397306 9.5199977,32.39298 C 9.5257718,32.388655 10.483757,32.42397 11.648854,32.471458 C 12.813951,32.518947 13.778047,32.547183 13.791291,32.534206 C 13.804534,32.521229 13.987504,31.619136 14.19789,30.529555 C 14.408277,29.439973 14.585945,28.542408 14.592708,28.534965 C 14.599472,28.527523 15.299888,29.067038 16.149189,29.733888 C 16.998489,30.400738 17.713476,30.958769 17.738049,30.973955 C 17.764249,30.990148 18.450495,30.464597 19.397263,29.703276 C 20.285259,28.989216 21.016433,28.410796 21.022095,28.417898 C 21.027758,28.425 21.246281,29.311395 21.507703,30.387664 C 21.769125,31.463933 21.991401,32.352903 22.001651,32.363153 C 22.011901,32.373403 22.968008,32.308579 24.126334,32.219101 C 25.28466,32.129622 26.239517,32.063548 26.248238,32.07227 C 26.25696,32.080991 25.970651,32.783387 25.611997,33.63315 C 25.253343,34.482913 24.892392,35.339921 24.809884,35.537612 L 24.659867,35.897051 L 26.499507,36.989079 C 27.51131,37.589696 28.338949,38.089935 28.338706,38.100723 C 28.338461,38.111511 27.544434,38.639732 26.574198,39.274547 C 25.603962,39.909362 24.810133,40.433452 24.810133,40.439191 C 24.810133,40.444929 25.196566,41.30688 25.668873,42.354638 C 26.141181,43.402397 26.507479,44.25882 26.482872,44.257802 C 26.458265,44.256786 25.541786,44.154023 24.446254,44.029442 C 22.466114,43.804268 22.454262,43.803412 22.434843,43.884185 C 22.174773,44.96593 21.402477,48.033445 21.386066,48.049855 C 21.373672,48.06225 20.629479,47.478146 19.732303,46.751847 L 18.101076,45.431303 L 16.555075,46.826535 C 15.704776,47.593912 14.999201,48.221767 14.987131,48.221767 C 14.975062,48.221767 14.955479,48.182047 14.943615,48.133502 L 14.943615,48.133502 z M 16.284239,46.293811 C 17.22161,45.446372 17.421619,45.253036 17.391792,45.22321 C 17.381901,45.21332 17.259618,45.194498 17.12005,45.181386 C 16.58192,45.130827 15.824968,44.922673 15.324991,44.68776 C 15.146127,44.60372 14.958353,44.524563 14.907713,44.511854 L 14.815641,44.488745 L 14.885108,44.835137 C 14.923315,45.025654 15.038625,45.61906 15.141352,46.153818 C 15.244079,46.688577 15.34168,47.121074 15.358242,47.114924 C 15.374805,47.108777 15.791503,46.739275 16.284239,46.293812 L 16.284239,46.293811 z M 21.399381,45.632871 C 21.592377,44.873012 21.750283,44.230819 21.750283,44.205776 C 21.750283,44.180732 21.49425,44.287088 21.18132,44.44212 C 20.679323,44.69082 19.810249,45.020937 19.547947,45.062555 C 19.497045,45.070631 19.322998,45.097433 19.161179,45.122114 C 18.99936,45.146794 18.841252,45.175518 18.809828,45.185943 C 18.742905,45.208145 18.696814,45.166818 19.636183,45.926879 C 20.796837,46.865986 21.020679,47.042233 21.034801,47.028111 C 21.042325,47.020588 21.206385,46.39273 21.399381,45.632871 L 21.399381,45.632871 z M 12.158829,43.808928 C 12.93556,43.755215 13.586743,43.711084 13.605902,43.710858 C 13.625061,43.710633 13.412887,43.485373 13.134404,43.210281 C 12.546665,42.629699 12.201527,42.16458 11.855025,41.486148 C 11.699582,41.181799 11.600129,41.0262 11.581883,41.058803 C 11.545144,41.124453 10.609289,43.835248 10.609289,43.876017 C 10.609289,43.9173 10.562206,43.919339 12.158829,43.808928 L 12.158829,43.808928 z M 25.536959,43.478512 C 25.523862,43.437251 25.308721,42.956207 25.058866,42.409526 C 24.809011,41.862846 24.562382,41.321956 24.5108,41.207551 C 24.459216,41.093145 24.402166,41.008718 24.384019,41.019933 C 24.365871,41.031148 24.319643,41.122497 24.281287,41.222931 C 24.098085,41.702641 23.47977,42.614495 23.051795,43.036114 C 22.935496,43.150687 22.846633,43.250686 22.854323,43.258334 C 22.874654,43.278553 25.190984,43.544137 25.391403,43.549229 C 25.541218,43.553035 25.55802,43.544873 25.536958,43.478512 L 25.536959,43.478512 z M 11.216791,39.640455 C 11.104474,38.974632 11.080035,38.733135 11.080035,38.289078 C 11.080035,38.004327 11.10115,37.625315 11.126956,37.446829 C 11.152763,37.268343 11.162892,37.111324 11.149466,37.097898 C 11.13604,37.084471 10.601368,37.387518 9.9613066,37.771334 C 8.934582,38.387015 8.8056819,38.475122 8.8665517,38.519631 C 8.9044982,38.547378 9.3518566,38.785206 9.8606818,39.048138 C 10.369507,39.31107 10.874084,39.576012 10.981963,39.636897 C 11.224884,39.773998 11.239356,39.774217 11.216791,39.640455 z M 26.065457,38.914386 C 26.701945,38.495448 27.219082,38.136577 27.21465,38.116895 C 27.203672,38.068139 24.771737,36.635347 24.745126,36.661958 C 24.733474,36.673609 24.75358,36.821154 24.789805,36.989836 C 24.845404,37.248745 24.85315,37.473791 24.839517,38.434168 C 24.830636,39.059868 24.808981,39.613527 24.791397,39.664522 C 24.749684,39.785486 24.676872,39.828356 26.065457,38.914386 z M 20.220279,37.178886 C 20.282819,37.146545 20.383447,37.055241 20.443896,36.975988 C 20.540622,36.849174 20.553803,36.798227 20.553803,36.551183 C 20.553803,36.30414 20.540622,36.253192 20.443896,36.126378 C 20.294626,35.930675 20.130493,35.851339 19.923224,35.874701 C 19.595388,35.911653 19.381458,36.178778 19.381458,36.551183 C 19.381458,37.05293 19.823777,37.383925 20.220278,37.178886 L 20.220279,37.178886 z M 16.319482,37.040064 C 16.624987,36.851251 16.707581,36.30473 16.476413,36.001653 C 16.210066,35.652455 15.782429,35.678807 15.522703,36.060424 C 15.407764,36.229303 15.399896,36.605091 15.507074,36.806783 C 15.665031,37.10403 16.041205,37.212048 16.31948,37.040065 L 16.319482,37.040064 z M 11.68485,35.45692 C 11.826404,35.123858 12.245135,34.429993 12.539604,34.040537 C 12.670113,33.86793 12.920276,33.591971 13.095522,33.427296 L 13.414152,33.127885 L 12.96302,33.103839 C 11.893451,33.046827 10.442964,32.997306 10.423144,33.017125 C 10.399878,33.040392 10.43524,33.128228 11.0918,34.678006 C 11.331739,35.244372 11.539346,35.707763 11.553147,35.707763 C 11.566948,35.707763 11.626215,35.594884 11.68485,35.45692 L 11.68485,35.45692 z M 24.822682,34.011115 L 25.355829,32.745985 L 25.232188,32.733118 C 25.101734,32.71954 22.487452,32.920311 22.460051,32.94601 C 22.451269,32.954246 22.671932,33.19551 22.950411,33.482151 C 23.508821,34.056928 23.821553,34.469056 24.068281,34.95532 C 24.157842,35.131829 24.244262,35.276246 24.260327,35.276246 C 24.276392,35.276246 24.529453,34.706937 24.822683,34.011115 L 24.822682,34.011115 z M 14.581416,32.279235 C 14.831956,32.028696 16.678036,31.433662 17.209543,31.432129 C 17.268877,31.431958 17.31694,31.418578 17.316349,31.402396 C 17.315758,31.386215 16.832114,30.996367 16.241582,30.536068 C 15.042818,29.601673 15.004663,29.573243 14.981081,29.596826 C 14.962055,29.615851 14.453717,32.205595 14.453717,32.283496 C 14.453717,32.349847 14.512776,32.347876 14.581417,32.279235 L 14.581416,32.279235 z M 21.343585,32.147745 C 21.332755,32.109987 21.179484,31.487719 21.002987,30.764928 C 20.82649,30.042136 20.677591,29.445711 20.672102,29.439539 C 20.666611,29.433367 20.118213,29.865522 19.453436,30.399885 L 18.24475,31.371453 L 18.732386,31.420143 C 19.000586,31.446922 19.308287,31.487341 19.416166,31.509962 C 19.843478,31.599568 20.558542,31.848419 20.899985,32.02635 C 21.29309,32.231202 21.373872,32.253309 21.343586,32.147745 L 21.343585,32.147745 z"
+       style="fill:#a15d2e;fill-opacity:1" />
+    <path
+       d="M 14.67159,29.227987 L 16.417224,30.416961 L 18.162857,31.605935 L 16.260359,32.523211 L 14.35786,33.440486 L 14.514725,31.334237 L 14.67159,29.227987 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="-0.97285889"
+       sodipodi:arg1="-2.0200564"
+       sodipodi:r2="1.2194117"
+       sodipodi:r1="2.4388233"
+       sodipodi:cy="31.424803"
+       sodipodi:cx="15.730769"
+       sodipodi:sides="3"
+       id="path2535"
+       style="fill:#a15d2e;fill-opacity:1"
+       sodipodi:type="star" />
+    <path
+       d="M 20.948207,28.600324 L 21.311023,30.587668 L 21.673839,32.575012 L 19.771341,31.895548 L 17.868843,31.216084 L 19.408525,29.908204 L 20.948207,28.600324 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="-0.18057484"
+       sodipodi:arg1="-1.2277724"
+       sodipodi:r2="1.1663577"
+       sodipodi:r1="2.3327152"
+       sodipodi:cy="30.797141"
+       sodipodi:cx="20.16363"
+       sodipodi:sides="3"
+       id="path2537"
+       style="fill:#a15d2e;fill-opacity:1"
+       sodipodi:type="star" />
+    <path
+       d="M 25.655669,32.562441 L 24.574386,34.834332 L 23.493102,37.106223 L 22.066229,35.033858 L 20.639355,32.961494 L 23.147512,32.761967 L 25.655669,32.562441 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="0.44421479"
+       sodipodi:arg1="-0.60298276"
+       sodipodi:r2="1.4526599"
+       sodipodi:r1="2.9053196"
+       sodipodi:cy="34.210052"
+       sodipodi:cx="23.262709"
+       sodipodi:sides="3"
+       id="path2539"
+       style="fill:#a15d2e;fill-opacity:1"
+       sodipodi:type="star" />
+    <path
+       d="M 27.891713,38.132938 L 25.045698,39.658399 L 22.199682,41.18386 L 22.301602,37.956408 L 22.403521,34.728956 L 25.147617,36.430947 L 27.891713,38.132938 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.078766"
+       sodipodi:arg1="0.031568456"
+       sodipodi:r2="1.8642994"
+       sodipodi:r1="3.7285986"
+       sodipodi:cy="38.01525"
+       sodipodi:cx="24.164972"
+       sodipodi:sides="3"
+       id="path2541"
+       style="fill:#a15d2e;fill-opacity:1"
+       sodipodi:type="star" />
+    <path
+       d="M 25.93027,43.821122 L 22.742976,43.464491 L 19.555683,43.10786 L 21.458181,40.525898 L 23.360679,37.943936 L 24.645475,40.882529 L 25.93027,43.821122 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="1.6822243"
+       sodipodi:arg1="0.63502674"
+       sodipodi:r2="1.8516684"
+       sodipodi:r1="3.7033366"
+       sodipodi:cy="41.624305"
+       sodipodi:cx="22.948878"
+       sodipodi:sides="3"
+       id="path2543"
+       style="fill:#a15d2e;fill-opacity:1"
+       sodipodi:type="star" />
+    <path
+       d="M 21.536639,47.822464 L 18.108767,45.486373 L 14.680895,43.150282 L 18.417945,41.349703 L 22.154995,39.549124 L 21.845818,43.685794 L 21.536639,47.822464 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="2.1689972"
+       sodipodi:arg1="1.1217997"
+       sodipodi:r2="2.3949689"
+       sodipodi:r1="4.7899375"
+       sodipodi:cy="43.507289"
+       sodipodi:cx="19.45751"
+       sodipodi:sides="3"
+       id="path2545"
+       style="fill:#a15d2e;fill-opacity:1"
+       sodipodi:type="star" />
+    <path
+       d="M 15.220795,47.508631 L 14.54978,44.443902 L 13.878766,41.379173 L 16.868406,42.330422 L 19.858046,43.281671 L 17.53942,45.395151 L 15.220795,47.508631 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="2.9260467"
+       sodipodi:arg1="1.8788491"
+       sodipodi:r2="1.8113368"
+       sodipodi:r1="3.6226735"
+       sodipodi:cy="44.056493"
+       sodipodi:cx="16.319202"
+       sodipodi:sides="3"
+       id="path2547"
+       style="fill:#a15d2e;fill-opacity:1"
+       sodipodi:type="star" />
+    <path
+       d="M 9.9248995,44.409552 L 11.269431,40.691123 L 12.613963,36.972693 L 15.161951,39.996306 L 17.70994,43.01992 L 13.81742,43.714736 L 9.9248995,44.409552 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="3.4885514"
+       sodipodi:arg1="2.4413539"
+       sodipodi:r2="2.2828698"
+       sodipodi:r1="4.5657395"
+       sodipodi:cy="41.467389"
+       sodipodi:cx="13.416267"
+       sodipodi:sides="3"
+       id="path2549"
+       style="fill:#a15d2e;fill-opacity:1"
+       sodipodi:type="star" />
+    <path
+       d="M 10.042586,32.876272 L 12.406966,32.962664 L 14.771347,33.049056 L 13.514339,35.053473 L 12.257332,37.057891 L 11.149959,34.967082 L 10.042586,32.876272 z"
+       inkscape:randomized="0"
+       inkscape:rounded="0"
+       inkscape:flatsided="false"
+       sodipodi:arg2="-1.5342737"
+       sodipodi:arg1="-2.5814713"
+       sodipodi:r2="1.3659867"
+       sodipodi:r1="2.7319734"
+       sodipodi:cy="34.327738"
+       sodipodi:cx="12.357088"
+       sodipodi:sides="3"
+       id="path2553"
+       style="fill:#a15d2e;fill-opacity:1"
+       sodipodi:type="star" />
+    <path
+       d="M 22.281988,37.485661 A 3.7463553,2.6087186 0 1 1 14.789278,37.485661 A 3.7463553,2.6087186 0 1 1 22.281988,37.485661 z"
+       sodipodi:ry="2.6087186"
+       sodipodi:rx="3.7463553"
+       sodipodi:cy="37.485661"
+       sodipodi:cx="18.535633"
+       id="path2557"
+       style="fill:#a15d2e;fill-opacity:1"
+       sodipodi:type="arc" />
+    <path
+       d="M 18.47679,31.424803 A 0.19614425,0.19614425 0 1 1 18.084501,31.424803 A 0.19614425,0.19614425 0 1 1 18.47679,31.424803 z"
+       sodipodi:ry="0.19614425"
+       sodipodi:rx="0.19614425"
+       sodipodi:cy="31.424803"
+       sodipodi:cx="18.280645"
+       id="path2559"
+       style="fill:#a15d2e;fill-opacity:1"
+       sodipodi:type="arc" />
+  </g>
 </svg>
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
index 760a627..1225e40
@@ -7,14 +7,15 @@
    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="544"
-   height="852"
+   width="36"
+   height="51"
    id="svg1421"
    sodipodi:version="0.32"
    inkscape:version="0.46"
-   sodipodi:docname="selectedtile.svg"
+   sodipodi:docname="selected_tile.svg"
    sodipodi:docbase="/home/kworth/kub/tiles"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   version="1.0">
   <metadata
      id="metadata1438">
     <rdf:RDF>
@@ -37,7 +38,7 @@
        id="perspective2486" />
   </defs>
   <sodipodi:namedview
-     inkscape:window-height="687"
+     inkscape:window-height="726"
      inkscape:window-width="791"
      inkscape:pageshadow="2"
      inkscape:pageopacity="0.0"
@@ -47,9 +48,9 @@
      id="base"
      inkscape:zoom="7.3333333"
      inkscape:cx="30.193342"
-     inkscape:cy="827"
+     inkscape:cy="19.837913"
      inkscape:window-x="64"
-     inkscape:window-y="48"
+     inkscape:window-y="24"
      inkscape:current-layer="svg1421"
      showgrid="false" />
   <rect
      style="fill:#ffffe4;fill-opacity:0.75;stroke:#b2964a;stroke-width:1"
      width="35"
      height="50"
-     x="0"
-     y="0" />
+     x="0.5"
+     y="0.5" />
   <g
      id="sun"
      style="fill:#ffffe4;fill-opacity:0.75;stroke:#b2964a;stroke-width:1"
-     transform="matrix(0.5905,0,0,0.5905,-56.74979,-52.44054)">
+     transform="matrix(0.5905,0,0,0.5905,-56.24979,-51.94054)">
 <!-- Triangular rays around the sun -->    <path
-       d="M 139.38034,162.33228 L 132.916,161.60434 L 131.18921,168.5345 L 125.8984,164.2523 L 120.91689,168.73756 L 119.6583,162.38682 L 112.48703,162.86394 L 114.80783,156.12386 L 109.11958,153.15712 L 114.8007,149.75492 L 112.10076,143.3248 L 119.03117,143.60194 L 120.29189,137.12259 L 125.36176,141.10086 L 130.56421,136.91952 L 132.1242,143.32475 L 138.99407,142.79315 L 136.39722,148.95452 L 142.36152,152.49996 L 136.64051,156.25356 L 139.38034,162.33228 z "
+       d="M 139.38034,162.33228 L 132.916,161.60434 L 131.18921,168.5345 L 125.8984,164.2523 L 120.91689,168.73756 L 119.6583,162.38682 L 112.48703,162.86394 L 114.80783,156.12386 L 109.11958,153.15712 L 114.8007,149.75492 L 112.10076,143.3248 L 119.03117,143.60194 L 120.29189,137.12259 L 125.36176,141.10086 L 130.56421,136.91952 L 132.1242,143.32475 L 138.99407,142.79315 L 136.39722,148.95452 L 142.36152,152.49996 L 136.64051,156.25356 L 139.38034,162.33228 z"
        id="path1425" />
 <!-- The circle of the sun itself -->    <path
        transform="matrix(0.98685,-0.161642,0.161642,0.98685,-19.31536,24.84557)"
-       d="M 133.69581,149.74696 C 133.69843,155.9537 128.66761,160.98664 122.46087,160.98664 C 116.25413,160.98664 111.22331,155.9537 111.22593,149.74696 C 111.22331,143.54022 116.25413,138.50728 122.46087,138.50728 C 128.66761,138.50728 133.69843,143.54022 133.69581,149.74696 z "
+       d="M 133.69581,149.74696 C 133.69843,155.9537 128.66761,160.98664 122.46087,160.98664 C 116.25413,160.98664 111.22331,155.9537 111.22593,149.74696 C 111.22331,143.54022 116.25413,138.50728 122.46087,138.50728 C 128.66761,138.50728 133.69843,143.54022 133.69581,149.74696 z"
        id="path1427" />
 <!-- The right eye of the sun -->    <path
        transform="translate(9.112005,3.852231)"
-       d="M 121.49343,146.01378 C 121.49343,146.93435 120.8135,147.68061 119.97476,147.68061 C 119.13602,147.68061 118.45609,146.93435 118.45609,146.01378 C 118.45609,145.09321 119.13602,144.34695 119.97476,144.34695 C 120.8135,144.34695 121.49343,145.09321 121.49343,146.01378 z "
+       d="M 121.49343,146.01378 C 121.49343,146.93435 120.8135,147.68061 119.97476,147.68061 C 119.13602,147.68061 118.45609,146.93435 118.45609,146.01378 C 118.45609,145.09321 119.13602,144.34695 119.97476,144.34695 C 120.8135,144.34695 121.49343,145.09321 121.49343,146.01378 z"
        id="path1429" />
 <!-- The left eye of the sun -->    <path
        transform="translate(2.407652,3.667036)"
-       d="M 121.49343,146.01378 C 121.49343,146.93435 120.8135,147.68061 119.97476,147.68061 C 119.13602,147.68061 118.45609,146.93435 118.45609,146.01378 C 118.45609,145.09321 119.13602,144.34695 119.97476,144.34695 C 120.8135,144.34695 121.49343,145.09321 121.49343,146.01378 z "
+       d="M 121.49343,146.01378 C 121.49343,146.93435 120.8135,147.68061 119.97476,147.68061 C 119.13602,147.68061 118.45609,146.93435 118.45609,146.01378 C 118.45609,145.09321 119.13602,144.34695 119.97476,144.34695 C 120.8135,144.34695 121.49343,145.09321 121.49343,146.01378 z"
        id="path1431" />
 <!-- The sun's grumpy mouth -->    <path
        d="M 119.78955,156.19997 C 119.78296,156.70099 120.16156,156.94238 120.60445,157.38527 C 120.83248,157.61331 121.18299,157.78567 121.41934,157.90384 C 122.00513,158.19674 122.87596,158.05201 123.5677,158.05201 C 124.43595,158.05201 124.64727,157.91967 125.41974,157.53344 C 125.86375,157.31143 126.22871,157.01783 126.67912,156.79262 C 127.13862,156.56287 127.62672,156.57811 128.08667,156.34813 C 128.38261,156.20017 129.25716,156.34443 129.56829,156.42222 C 130.05387,156.54361 130.68093,156.8231 131.124,157.08895 C 131.41598,157.26413 131.6912,157.59827 131.86482,157.82976 C 131.97287,157.97384 132.09156,158.06099 132.16115,158.20017"
        id="path1433" />
   </g>
   <path
-     style="fill:#786721;fill-opacity:0.97456515000000021"
-     d="M 0.55894937,24.986364 L 0.55894937,0.5090908 L 17.46804,0.5090908 L 34.377131,0.5090908 L 34.377131,24.986364 L 34.377131,49.463636 L 17.46804,49.463636 L 0.55894937,49.463636 L 0.55894937,24.986364 z M 17.618561,45.1 C 17.676085,45.1 18.399419,45.652273 19.225971,46.327273 C 20.052524,47.002273 20.779514,47.554546 20.841506,47.554546 C 20.903501,47.554546 21.1872,46.609901 21.471954,45.455336 L 21.989684,43.356129 L 22.490224,43.418609 C 24.474036,43.66625 26.058949,43.808913 26.058949,43.739844 C 26.058949,43.694823 25.690768,42.844267 25.240768,41.849721 C 24.790768,40.855176 24.422586,40.015115 24.422586,39.982919 C 24.422586,39.950726 25.189631,39.425863 26.127131,38.816559 C 27.064631,38.207257 27.831677,37.661413 27.831677,37.603577 C 27.831677,37.545737 27.033949,37.029498 26.058949,36.456376 C 25.083949,35.88325 24.286222,35.378083 24.286222,35.333778 C 24.286222,35.289475 24.632589,34.429889 25.055927,33.42359 C 25.479264,32.41729 25.801423,31.570791 25.771836,31.542479 C 25.742248,31.514167 24.780951,31.563305 23.63562,31.651671 L 21.553203,31.812336 L 21.426476,31.331167 C 21.356779,31.066525 21.135727,30.190341 20.935249,29.384091 C 20.734769,28.577841 20.531769,27.918182 20.484133,27.918182 C 20.436498,27.918182 19.70352,28.475413 18.855295,29.156473 C 18.007071,29.837533 17.240549,30.361656 17.151917,30.321189 C 17.063284,30.280723 16.346449,29.730355 15.558949,29.09815 C 14.671588,28.385777 14.094817,28.007705 14.042151,28.10389 C 13.995414,28.189252 13.822727,28.995455 13.658407,29.895455 C 13.494088,30.795455 13.329141,31.638007 13.29186,31.767794 C 13.229949,31.983328 13.041708,31.996245 11.118786,31.9169 C 9.7762299,31.8615 9.0134949,31.878427 9.0134949,31.963615 C 9.0134949,32.037089 9.3509949,32.888735 9.7634949,33.856165 C 10.175995,34.823595 10.513495,35.679176 10.513495,35.757459 C 10.513495,35.83574 9.7464494,36.358067 8.8089494,36.918182 C 7.8714494,37.478297 7.1044039,37.972233 7.1044039,38.015815 C 7.1044039,38.059397 7.895163,38.505985 8.8616458,39.00823 L 10.618889,39.921403 L 9.918464,41.953507 C 9.5332312,43.071164 9.2487221,44.014404 9.2862221,44.049594 C 9.3237221,44.084786 10.291706,44.050664 11.437299,43.973773 C 12.582888,43.896877 13.549259,43.863037 13.584784,43.898563 C 13.62031,43.93409 13.80628,44.755877 13.998051,45.72476 C 14.189822,46.693646 14.373801,47.567516 14.406895,47.666702 C 14.44462,47.779768 15.035335,47.3347 15.990521,46.47352 C 16.82842,45.718081 17.561039,45.1 17.618561,45.1 z"
+     style="fill:#786721;fill-opacity:0.97456515"
+     d="M 1.0589494,25.486364 L 1.0589494,1.0090908 L 17.96804,1.0090908 L 34.877131,1.0090908 L 34.877131,25.486364 L 34.877131,49.963636 L 17.96804,49.963636 L 1.0589494,49.963636 L 1.0589494,25.486364 z M 18.118561,45.6 C 18.176085,45.6 18.899419,46.152273 19.725971,46.827273 C 20.552524,47.502273 21.279514,48.054546 21.341506,48.054546 C 21.403501,48.054546 21.6872,47.109901 21.971954,45.955336 L 22.489684,43.856129 L 22.990224,43.918609 C 24.974036,44.16625 26.558949,44.308913 26.558949,44.239844 C 26.558949,44.194823 26.190768,43.344267 25.740768,42.349721 C 25.290768,41.355176 24.922586,40.515115 24.922586,40.482919 C 24.922586,40.450726 25.689631,39.925863 26.627131,39.316559 C 27.564631,38.707257 28.331677,38.161413 28.331677,38.103577 C 28.331677,38.045737 27.533949,37.529498 26.558949,36.956376 C 25.583949,36.38325 24.786222,35.878083 24.786222,35.833778 C 24.786222,35.789475 25.132589,34.929889 25.555927,33.92359 C 25.979264,32.91729 26.301423,32.070791 26.271836,32.042479 C 26.242248,32.014167 25.280951,32.063305 24.13562,32.151671 L 22.053203,32.312336 L 21.926476,31.831167 C 21.856779,31.566525 21.635727,30.690341 21.435249,29.884091 C 21.234769,29.077841 21.031769,28.418182 20.984133,28.418182 C 20.936498,28.418182 20.20352,28.975413 19.355295,29.656473 C 18.507071,30.337533 17.740549,30.861656 17.651917,30.821189 C 17.563284,30.780723 16.846449,30.230355 16.058949,29.59815 C 15.171588,28.885777 14.594817,28.507705 14.542151,28.60389 C 14.495414,28.689252 14.322727,29.495455 14.158407,30.395455 C 13.994088,31.295455 13.829141,32.138007 13.79186,32.267794 C 13.729949,32.483328 13.541708,32.496245 11.618786,32.4169 C 10.27623,32.3615 9.5134949,32.378427 9.5134949,32.463615 C 9.5134949,32.537089 9.8509949,33.388735 10.263495,34.356165 C 10.675995,35.323595 11.013495,36.179176 11.013495,36.257459 C 11.013495,36.33574 10.246449,36.858067 9.3089494,37.418182 C 8.3714494,37.978297 7.6044039,38.472233 7.6044039,38.515815 C 7.6044039,38.559397 8.395163,39.005985 9.3616458,39.50823 L 11.118889,40.421403 L 10.418464,42.453507 C 10.033231,43.571164 9.7487221,44.514404 9.7862221,44.549594 C 9.8237221,44.584786 10.791706,44.550664 11.937299,44.473773 C 13.082888,44.396877 14.049259,44.363037 14.084784,44.398563 C 14.12031,44.43409 14.30628,45.255877 14.498051,46.22476 C 14.689822,47.193646 14.873801,48.067516 14.906895,48.166702 C 14.94462,48.279768 15.535335,47.8347 16.490521,46.97352 C 17.32842,46.218081 18.061039,45.6 18.118561,45.6 z"
      id="path2488" />
 </svg>
old mode 100644 (file)
new mode 100755 (executable)