]> git.sesse.net Git - ultimatescore/commitdiff
Add some code for generating a simple stinger.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Wed, 17 Oct 2018 19:10:52 +0000 (21:10 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Wed, 17 Oct 2018 19:10:52 +0000 (21:10 +0200)
stinger/Makefile [new file with mode: 0644]
stinger/blur.cpp [new file with mode: 0644]
stinger/sting.pl [new file with mode: 0644]
stinger/stinger.svg [new file with mode: 0644]

diff --git a/stinger/Makefile b/stinger/Makefile
new file mode 100644 (file)
index 0000000..963df2f
--- /dev/null
@@ -0,0 +1,2 @@
+blur: blur.cpp
+       g++ -O2 -o blur blur.cpp -lpng `pkg-config --cflags --libs movit` -lSDL2 -lSDL2_image -g
diff --git a/stinger/blur.cpp b/stinger/blur.cpp
new file mode 100644 (file)
index 0000000..76c9ca8
--- /dev/null
@@ -0,0 +1,218 @@
+#define NO_SDL_GLEXT 1
+
+#define WIDTH 1280
+#define HEIGHT 720
+
+#include <epoxy/gl.h>
+
+#include <SDL2/SDL.h>
+#include <SDL2/SDL_error.h>
+#include <SDL2/SDL_events.h>
+#include <SDL2/SDL_image.h>
+#include <SDL2/SDL_keyboard.h>
+#include <SDL2/SDL_mouse.h>
+#include <SDL2/SDL_video.h>
+
+#include <assert.h>
+#include <features.h>
+#include <math.h>
+#include <png.h>
+#include <pngconf.h>
+#include <setjmp.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <sys/time.h>
+#include <time.h>
+
+#include <movit/effect_chain.h>
+#include <movit/flat_input.h>
+#include <movit/init.h>
+#include <movit/mix_effect.h>
+#include <movit/util.h>
+
+using namespace movit;
+
+unsigned char result[WIDTH * HEIGHT * 4];
+
+unsigned char *load_image(const char *filename, unsigned *w, unsigned *h)
+{
+       SDL_Surface *img = IMG_Load(filename);
+       if (img == nullptr) {
+               fprintf(stderr, "Load of '%s' failed\n", filename);
+               exit(1);
+       }
+
+       SDL_PixelFormat rgba_fmt;
+       rgba_fmt.palette = nullptr;
+       rgba_fmt.BitsPerPixel = 32;
+       rgba_fmt.BytesPerPixel = 8;
+       rgba_fmt.Rloss = rgba_fmt.Gloss = rgba_fmt.Bloss = rgba_fmt.Aloss = 0;
+
+       // NOTE: Assumes little endian.
+       rgba_fmt.Rmask = 0x00ff0000;
+       rgba_fmt.Gmask = 0x0000ff00;
+       rgba_fmt.Bmask = 0x000000ff;
+       rgba_fmt.Amask = 0xff000000;
+
+       rgba_fmt.Rshift = 16;
+       rgba_fmt.Gshift = 8;
+       rgba_fmt.Bshift = 0;
+       rgba_fmt.Ashift = 24;
+
+       SDL_Surface *converted = SDL_ConvertSurface(img, &rgba_fmt, SDL_SWSURFACE);
+
+       *w = img->w;
+       *h = img->h;
+
+       SDL_FreeSurface(img);
+
+       unsigned char *crop_img = new unsigned char[1280 * 720 * 4];
+
+       int img_w = *w;
+       int img_h = *h;
+
+       int xoffs = (1280 - int(img_w)) / 2;
+       int yoffs = (720 - int(img_h)) / 2;
+
+       for (unsigned y = 0; y < 720; ++y) {
+               unsigned char *dptr = crop_img + y * 1280 * 4;
+               int ysrc = y - yoffs;
+               if (ysrc < 0 || ysrc >= int(img_h)) {
+                       memset(dptr, 0, 1280 * 4);
+                       continue;
+               }
+               unsigned char *sptr = (unsigned char *)converted->pixels + ysrc * img_w * 4;
+               if (img_w >= 1280) {
+                       memcpy(dptr, sptr - xoffs * 4, 1280 * 4);
+               } else {
+                       memset(dptr, 0, 1280 * 4);
+                       memcpy(dptr + xoffs * 4, sptr, img_w * 4);
+               }
+       }
+
+       SDL_FreeSurface(converted);
+
+       *w = 1280;
+       *h = 720;
+
+       return crop_img;
+}
+
+void write_png(const char *filename, unsigned char *screenbuf)
+{
+       FILE *fp = fopen(filename, "wb");
+       png_structp png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, nullptr, nullptr, nullptr);
+       png_infop info_ptr = png_create_info_struct(png_ptr);
+       
+       if (setjmp(png_jmpbuf(png_ptr))) {
+               fclose(fp);
+               fprintf(stderr, "Write to %s failed; exiting.\n", filename);
+               exit(1);
+       }
+
+       png_set_IHDR(png_ptr, info_ptr, WIDTH, HEIGHT, 8, PNG_COLOR_TYPE_RGB_ALPHA, PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT);
+
+       png_bytep *row_pointers = new png_bytep[HEIGHT];
+       for (unsigned y = 0; y < HEIGHT; ++y) {
+               row_pointers[y] = screenbuf + ((HEIGHT - y - 1) * WIDTH) * 4;
+       }
+
+       png_init_io(png_ptr, fp);
+       png_set_rows(png_ptr, info_ptr, row_pointers);
+       png_write_png(png_ptr, info_ptr, PNG_TRANSFORM_BGR, nullptr);
+       png_destroy_write_struct(&png_ptr, &info_ptr);
+       fclose(fp);
+
+       delete[] row_pointers;
+}
+
+class BouncingIdentityEffect : public Effect {
+public:
+       BouncingIdentityEffect() {}
+       std::string effect_type_id() const override { return "IdentityEffect"; }
+       std::string output_fragment_shader() override { return read_file("identity.frag"); }
+       bool needs_texture_bounce() const override { return true; }
+       AlphaHandling alpha_handling() const override { return DONT_CARE_ALPHA_TYPE; }
+};
+
+
+int main(int argc, char **argv)
+{
+       if (SDL_Init(SDL_INIT_EVERYTHING) == -1) {
+               fprintf(stderr, "SDL_Init failed: %s\n", SDL_GetError());
+               exit(1);
+       }
+       SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 8);
+       SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 0);
+       SDL_GL_SetAttribute(SDL_GL_STENCIL_SIZE, 0);
+       SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
+
+       SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE);
+       SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3);
+       SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 1);
+       // SDL_GL_SetAttribute(SDL_GL_CONTEXT_FLAGS, SDL_GL_CONTEXT_DEBUG_FLAG);
+       SDL_Window *window = SDL_CreateWindow("OpenGL window",
+               SDL_WINDOWPOS_UNDEFINED,
+               SDL_WINDOWPOS_UNDEFINED,
+               WIDTH, HEIGHT,
+               SDL_WINDOW_OPENGL);
+       SDL_GLContext context = SDL_GL_CreateContext(window);
+       assert(context != nullptr);
+
+       CHECK(init_movit("/usr/share/movit", MOVIT_DEBUG_OFF));
+
+       EffectChain chain(WIDTH, HEIGHT);
+       glViewport(0, 0, WIDTH, HEIGHT);
+
+       ImageFormat inout_format;
+       inout_format.color_space = COLORSPACE_sRGB;
+       inout_format.gamma_curve = GAMMA_sRGB;
+
+       Effect *last_effect = nullptr;
+       for (int i = 1; i < argc; ++i) {
+               fprintf(stderr, "%s...\n", argv[i]);
+               unsigned img_w, img_h;
+               unsigned char *src_img = load_image(argv[i], &img_w, &img_h);
+
+               FlatInput *input = new FlatInput(inout_format, FORMAT_BGRA_POSTMULTIPLIED_ALPHA, GL_UNSIGNED_BYTE, img_w, img_h);
+               input->set_pixel_data(src_img);
+               chain.add_input(input);
+
+               if (i == 1) {
+                       last_effect = input;
+               } else {
+                       Effect *mix_effect = chain.add_effect(new MixEffect(), last_effect, input);
+                       float z = 1.0f / i;
+                       CHECK(mix_effect->set_float("strength_first", 1.0f - z));
+                       CHECK(mix_effect->set_float("strength_second", z));
+                       last_effect = mix_effect;
+               }
+
+               if (i % 10 == 0) {
+                       last_effect = chain.add_effect(new BouncingIdentityEffect());
+               }
+       }
+       
+       chain.add_output(inout_format, OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
+       chain.set_dither_bits(8);
+       chain.finalize();
+
+       // generate a PBO to hold the data we read back with glReadPixels()
+       // (Intel/DRI goes into a slow path if we don't read to PBO)
+       GLuint pbo;
+       glGenBuffers(1, &pbo);
+       glBindBuffer(GL_PIXEL_PACK_BUFFER_ARB, pbo);
+       glBufferData(GL_PIXEL_PACK_BUFFER_ARB, WIDTH * HEIGHT * 4, nullptr, GL_STREAM_READ);
+
+       chain.render_to_screen();
+               
+       glBindBuffer(GL_PIXEL_PACK_BUFFER_ARB, pbo);
+       check_error();
+       glReadPixels(0, 0, WIDTH, HEIGHT, GL_BGRA, GL_UNSIGNED_INT_8_8_8_8_REV, BUFFER_OFFSET(0));
+       check_error();
+
+       unsigned char *screenbuf = (unsigned char *)glMapBuffer(GL_PIXEL_PACK_BUFFER_ARB, GL_READ_ONLY);
+       write_png("blurout.png", screenbuf);
+
+       return 0; 
+}
diff --git a/stinger/sting.pl b/stinger/sting.pl
new file mode 100644 (file)
index 0000000..480eff6
--- /dev/null
@@ -0,0 +1,58 @@
+#! /usr/bin/perl
+use strict;
+use warnings;
+use POSIX qw(ceil floor);
+
+for my $i (0..24) {
+#for my $i (23..23) {
+       my @args = ("./stinger/blur");
+       my ($x1, $y1, $x2, $y2) = (0, 0, 346.547, 202.492);  # From Inkscape output when converting by default.
+       my $convfactor = 0.26458;  # mm to SVG units, empirical :-/
+
+       for my $j (0..97) {  # 98 hits a movit limit!
+               #my $f = $i / 50.0;
+               my $f = $i / 25.0 + ($j * 0.010) / 25.0;
+               #my $f = $i / 255.0;
+
+               my $d = 90.0 / (1.0 - $f) - 80.0;
+               my $outfilename = sprintf("stinger%03d.png", $i * 10 + $j);
+               print "$outfilename [$d]...\n";
+
+               my $w = int((($x2 - $x1) / 25.4) * $d * $convfactor + 0.5);
+               my $h = int((($y2 - $y1) / 25.4) * $d * $convfactor + 0.5);
+
+               while ($w >= 1280*2 && $h >= 720*2) {
+                       my $newx1 = $x1 + 0.25 * ($x2 - $x1);
+                       my $newy1 = $y1 + 0.25 * ($y2 - $y1);
+                       my $newx2 = $x1 + 0.75 * ($x2 - $x1);
+                       my $newy2 = $y1 + 0.75 * ($y2 - $y1);
+                       ($x1, $y1, $x2, $y2) = ($newx1, $newy1, $newx2, $newy2);
+
+                       $w = floor($w / 2);
+                       $h = floor($h / 2);
+               }
+
+               my $cmd = "LANG=C inkscape --export-png=$outfilename --export-area=$x1:$y1:$x2:$y2 --export-width=$w --export-height=$h stinger.svg";
+       #       print "$cmd\n";
+               system("$cmd 2>/dev/null >/dev/null");
+               #my $x = `$cmd 2>/dev/null`;
+               #$x =~ /exported to (\d+) x (\d+)/ or die "$x";
+               #my ($w, $h) = ($1, $2);
+
+#              my $extent = "";
+#              if ($w < 1280 || $h < 720) {
+#                      $w = 1280 if ($w < 1280);
+#                      $h = 720 if ($h < 720);
+#                      $extent = sprintf("-background #00000000 -gravity center -extent %dx%d", $w, $h);
+#              }
+#
+#              my $left = int(($w - 1280) / 2);
+#              my $top = int(($h - 720) / 2);
+#
+#              system("convert $extent -crop 1280x720+${left}+$top stinger.png $outfilename");
+               push @args, $outfilename;
+       }
+       system(@args);
+       print join(' ', @args), " -> $i\n";
+       rename("blurout.png", sprintf("blur%03d.png", $i));
+}
diff --git a/stinger/stinger.svg b/stinger/stinger.svg
new file mode 100644 (file)
index 0000000..e4472a0
--- /dev/null
@@ -0,0 +1,1300 @@
+<?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="91.690659mm"
+   height="53.576mm"
+   viewBox="0 0 91.690659 53.576"
+   version="1.1"
+   id="svg7897"
+   inkscape:version="0.92.3 (2405546, 2018-03-11)"
+   sodipodi:docname="stinger.svg">
+  <defs
+     id="defs7891" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1.979899"
+     inkscape:cx="44.556176"
+     inkscape:cy="29.789379"
+     inkscape:document-units="mm"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     inkscape:window-width="1920"
+     inkscape:window-height="991"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1"
+     showguides="true"
+     inkscape:guide-bbox="true">
+    <sodipodi:guide
+       position="46.103995,1.737252"
+       orientation="1,0"
+       id="guide8702"
+       inkscape:locked="false" />
+    <sodipodi:guide
+       position="86.328059,23.786988"
+       orientation="0,1"
+       id="guide8704"
+       inkscape:locked="false" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata7894">
+    <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.272141,17.471379)">
+    <g
+       id="g8641"
+       transform="rotate(90,121.34134,48.66319)">
+      <g
+         transform="matrix(0.35277777,0,0,-0.35277777,67.933282,120.61142)"
+         id="g32">
+        <path
+           inkscape:connector-curvature="0"
+           id="path34"
+           style="fill:#393536;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 0,0 c -0.331,-0.016 -0.696,-0.044 -0.931,-0.308 -0.189,-0.214 -0.263,-0.507 -0.366,-0.767 -0.158,-0.406 -0.326,-0.807 -0.481,-1.214 -0.209,-0.041 -0.397,-0.098 -0.473,-0.148 -0.197,-0.131 -0.398,-0.266 -0.536,-0.458 -0.251,-0.352 -0.405,-0.861 -0.56,-1.266 -0.142,-0.372 -0.264,-0.761 -0.31,-1.158 -0.531,-0.173 -1.119,-0.369 -1.146,-0.388 -0.063,-0.048 -0.094,-0.127 -0.121,-0.201 -0.23,-0.651 -0.438,-1.344 -0.538,-2.045 h -30.416 v -0.584 h 1.385 l 1.094,-0.3 27.912,-0.501 c 0,-0.007 0,-0.015 0.002,-0.022 0.091,-0.715 0.175,-1.493 0.699,-2.039 0.227,-0.235 0.452,-0.216 0.752,-0.221 0.026,0 0.26,0.003 0.435,0.003 0.073,-0.611 0.184,-1.215 0.357,-1.81 0.186,-0.643 0.55,-1.456 1.325,-1.483 0.019,-0.078 0.037,-0.157 0.059,-0.235 0.226,-0.82 0.61,-1.586 1.124,-2.265 0.047,-0.063 0.102,-0.129 0.179,-0.144 0.01,-0.002 0.019,-0.003 0.029,-0.003 0.052,-0.002 0.103,0.018 0.154,0.038 0.797,0.321 1.592,0.651 2.39,0.974 0.399,0.162 0.797,0.323 1.194,0.484 0.199,0.082 0.398,0.162 0.598,0.243 0.15,0.061 0.406,0.229 0.566,0.229 0.725,0.294 1.451,0.589 2.177,0.883 l -0.001,10e-4 c 0.571,0.172 1.062,1.37 1.332,3.085 l 1.012,-0.009 c 0.239,-1.385 0.637,-2.292 1.09,-2.292 0.451,0 0.849,0.899 1.087,2.274 l 4.301,-0.036 c 0.203,-1.354 0.539,-2.238 0.917,-2.238 0.378,0 0.712,0.877 0.915,2.223 l 4.856,-0.039 c 0.154,-1.419 0.41,-2.349 0.699,-2.349 0.289,0 0.544,0.925 0.698,2.337 l 4.792,-0.04 c 0.162,-1.39 0.426,-2.297 0.725,-2.297 0.296,0 0.56,0.902 0.72,2.286 l 5.274,-0.044 c 0.133,-1.359 0.347,-2.242 0.588,-2.242 0.242,0 0.455,0.879 0.588,2.232 l 4.011,-0.127 v 6.287 h -3.982 c -0.129,1.536 -0.358,2.556 -0.617,2.556 -0.26,0 -0.487,-1.02 -0.616,-2.556 h -5.215 c -0.158,1.536 -0.435,2.556 -0.751,2.556 -0.317,0 -0.595,-1.02 -0.752,-2.556 h -4.743 c -0.151,1.536 -0.416,2.556 -0.72,2.556 -0.304,0 -0.571,-1.02 -0.721,-2.556 h -4.809 c -0.201,1.441 -0.546,2.392 -0.94,2.392 -0.392,0 -0.737,-0.951 -0.94,-2.392 h -4.258 c -0.237,1.441 -0.643,2.392 -1.107,2.392 -0.463,0 -0.871,-0.951 -1.108,-2.392 H 7.904 c -0.27,1.819 -0.785,3.087 -1.385,3.226 0,-0.003 -0.18,0.072 -0.189,0.075 C 5.36,-2.005 4.392,-1.617 3.423,-1.23 2.837,-0.995 2.251,-0.761 1.665,-0.527 1.122,-0.31 0.604,0.029 0,0" />
+      </g>
+      <g
+         transform="matrix(0.35277777,0,0,-0.35277777,81.459787,100.39976)"
+         id="g36">
+        <path
+           inkscape:connector-curvature="0"
+           id="path38"
+           style="fill:#393536;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="M 0,0 V 8.893 L -1.027,9.258 H -18.926 V 0 Z" />
+      </g>
+      <path
+         inkscape:connector-curvature="0"
+         id="path40"
+         style="fill:#393536;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 81.459675,100.39982 h -4.005791 v 3.26566 h 4.005791 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path42"
+         style="fill:#393536;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 81.459675,134.9096 h -6.977591 v -5.69595 h 6.977591 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path44"
+         style="fill:#393536;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 73.019467,126.03371 h 8.371417 v 5.55802 h -8.371417 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path46"
+         style="fill:#393536;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 72.950323,131.66087 h 8.509352 v -5.6956 h -8.509352 z m 8.371769,-0.13794 h -8.233833 v -5.42007 h 8.233833 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path48"
+         style="fill:#393536;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.549362,127.78984 h 4.841522 v 5.55766 h -4.841522 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path50"
+         style="fill:#393536;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.48057,133.41664 h 4.979105 v -5.69559 H 76.48057 Z m 4.841522,-0.13828 h -4.703939 v -5.41973 h 4.703939 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path52"
+         style="fill:#393536;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 73.019467,112.83347 h 8.371417 v 4.39103 h -8.371417 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path54"
+         style="fill:#393536;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 72.950323,117.29329 h 8.509352 v -4.52896 h -8.509352 z m 8.371769,-0.13794 h -8.233833 v -4.25273 h 8.233833 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path56"
+         style="fill:#393536;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 74.881428,118.16289 h 6.509456 v 2.57316 h -6.509456 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path58"
+         style="fill:#393536;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 74.812637,120.80484 h 6.647391 v -2.7111 h -6.647391 z m 6.509455,-0.13794 h -6.372225 v -2.43557 h 6.372225 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path60"
+         style="fill:#393536;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.549362,115.17839 h 4.841522 v 5.55766 h -4.841522 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path62"
+         style="fill:#393536;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.48057,120.80484 h 4.979105 v -5.6956 H 76.48057 Z m 4.841522,-0.13794 h -4.703939 v -5.42007 h 4.703939 z" />
+      <g
+         transform="matrix(0.35277777,0,0,-0.35277777,73.823727,110.92052)"
+         id="g64">
+        <path
+           inkscape:connector-curvature="0"
+           id="path66"
+           style="fill:#393536;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="M 0,0 H 6.522 V 1.774 L 20.593,2.815 21.437,38.609 38.761,29.005 21.646,-4.402 H 2.114 Z" />
+      </g>
+      <g
+         transform="matrix(0.35277777,0,0,-0.35277777,81.39089,110.22567)"
+         id="g68">
+        <path
+           inkscape:connector-curvature="0"
+           id="path70"
+           style="fill:#393536;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 0,0 h -21.219 l 3.114,18.07 H 0 Z" />
+      </g>
+      <g
+         transform="matrix(0.35277777,0,0,-0.35277777,73.823727,110.29457)"
+         id="g72">
+        <path
+           inkscape:connector-curvature="0"
+           id="path74"
+           style="fill:#393536;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="M 0,0 H 21.646 V 18.46 H 3.181 Z M 0.464,0.39 3.51,18.07 H 21.254 V 0.39 Z" />
+      </g>
+      <g
+         transform="matrix(0.35277777,0,0,-0.35277777,75.494227,140.54094)"
+         id="g76">
+        <path
+           inkscape:connector-curvature="0"
+           id="path78"
+           style="fill:#393536;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="M 0,0 V 14.726 H 1.831 V 14.092 H 16.91 V 0.634 H 1.831 V 0 Z" />
+      </g>
+      <g
+         transform="matrix(0.35277777,0,0,-0.35277777,76.602196,150.64006)"
+         id="g80">
+        <path
+           inkscape:connector-curvature="0"
+           id="path82"
+           style="fill:#393536;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="m 0,0 v 12.471 h -5.553 v -1.633 l -5.125,8.961 5.125,8.96 V 27.126 H 13.77 V 42.72 L 24.577,37.202 27.004,9.902 16.428,1.936 12.699,0.585 1.969,0.633 V 0 Z" />
+      </g>
+      <path
+         inkscape:connector-curvature="0"
+         id="path238"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 75.797945,97.670026 h -0.474839 v 0.294217 h 0.474839 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path240"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 75.797945,98.144865 h -0.474839 v 0.293864 h 0.474839 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path242"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 75.797945,98.619704 h -0.474839 v 0.293864 h 0.474839 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path244"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 75.797945,99.094543 h -0.474839 v 0.293864 h 0.474839 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path246"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 75.797945,99.569382 h -0.474839 v 0.293863 h 0.474839 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path248"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.679889,97.670026 h -0.475544 v 0.294217 h 0.475544 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path250"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.679889,98.144865 h -0.475544 v 0.293864 h 0.475544 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path252"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.679889,98.619704 h -0.475544 v 0.293864 h 0.475544 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path254"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.679889,99.094543 h -0.475544 v 0.293864 h 0.475544 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path256"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.679889,99.569382 h -0.475544 v 0.293863 h 0.475544 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path258"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 77.561481,97.670026 h -0.474839 v 0.294217 h 0.474839 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path260"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 77.561481,98.144865 h -0.474839 v 0.293864 h 0.474839 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path262"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 77.561481,98.619704 h -0.474839 v 0.293864 h 0.474839 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path264"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 77.561481,99.094543 h -0.474839 v 0.293864 h 0.474839 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path266"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 77.561481,99.569382 h -0.474839 v 0.293863 h 0.474839 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path268"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 78.443425,97.670026 h -0.474838 v 0.294217 h 0.474838 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path270"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 78.443425,98.144865 h -0.474838 v 0.293864 h 0.474838 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path272"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 78.443425,98.619704 h -0.474838 v 0.293864 h 0.474838 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path274"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 78.443425,99.094543 h -0.474838 v 0.293864 h 0.474838 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path276"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 78.443425,99.569382 h -0.474838 v 0.293863 h 0.474838 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path278"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.32537,97.670026 h -0.475192 v 0.294217 h 0.475192 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path280"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.32537,98.144865 h -0.475192 v 0.293864 h 0.475192 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path282"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.32537,98.619704 h -0.475192 v 0.293864 h 0.475192 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path284"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.32537,99.094543 h -0.475192 v 0.293864 h 0.475192 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path286"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.32537,99.569382 h -0.475192 v 0.293863 h 0.475192 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path288"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 80.206962,97.670026 H 79.73177 v 0.294217 h 0.475192 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path290"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 80.206962,98.144865 H 79.73177 v 0.293864 h 0.475192 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path292"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 80.206962,98.619704 H 79.73177 v 0.293864 h 0.475192 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path294"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 80.206962,99.094543 H 79.73177 v 0.293864 h 0.475192 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path296"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 80.206962,99.569382 H 79.73177 v 0.293863 h 0.475192 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path298"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 81.088553,97.670026 h -0.474839 v 0.294217 h 0.474839 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path300"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 81.088553,98.144865 h -0.474839 v 0.293864 h 0.474839 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path302"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 81.088553,98.619704 h -0.474839 v 0.293864 h 0.474839 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path304"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 81.088553,99.094543 h -0.474839 v 0.293864 h 0.474839 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path306"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 81.088553,99.569382 h -0.474839 v 0.293863 h 0.474839 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path308"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 81.088553,100.93604 h -0.474839 v 0.29387 h 0.474839 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path310"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 81.088553,101.41053 h -0.474839 v 0.29386 h 0.474839 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path312"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 81.088553,101.88572 h -0.474839 v 0.29386 h 0.474839 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path314"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 81.088553,102.36021 h -0.474839 v 0.29386 h 0.474839 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path316"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 81.088553,102.83505 h -0.474839 v 0.29386 h 0.474839 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path318"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 78.443425,100.93604 h -0.474838 v 0.29387 h 0.474838 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path320"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 78.443425,101.41053 h -0.474838 v 0.29386 h 0.474838 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path322"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 78.443425,101.88572 h -0.474838 v 0.29386 h 0.474838 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path324"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 78.443425,102.36021 h -0.474838 v 0.29386 h 0.474838 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path326"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 78.443425,102.83505 h -0.474838 v 0.29386 h 0.474838 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path328"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.32537,100.93604 h -0.475192 v 0.29387 h 0.475192 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path330"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.32537,101.41053 h -0.475192 v 0.29386 h 0.475192 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path332"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.32537,101.88572 h -0.475192 v 0.29386 h 0.475192 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path334"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.32537,102.36021 h -0.475192 v 0.29386 h 0.475192 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path336"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.32537,102.83505 h -0.475192 v 0.29386 h 0.475192 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path338"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 80.206962,100.93604 H 79.73177 v 0.29387 h 0.475192 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path340"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 80.206962,101.41053 H 79.73177 v 0.29386 h 0.475192 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path342"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 80.206962,101.88572 H 79.73177 v 0.29386 h 0.475192 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path344"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 80.206962,102.36021 H 79.73177 v 0.29386 h 0.475192 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path346"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 80.206962,102.83505 H 79.73177 v 0.29386 h 0.475192 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path348"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 75.757376,134.16312 h -0.635353 v -2.75096 h 0.635353 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path350"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.909901,134.16312 h -0.635706 v -2.75096 h 0.635706 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path352"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 78.06172,134.16312 h -0.635353 v -2.75096 h 0.635353 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path354"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.213892,134.16312 h -0.635353 v -2.75096 h 0.635353 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path356"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.366417,134.16312 h -0.635705 v -2.75096 h 0.635705 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path358"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 74.482084,130.82055 h -0.754239 v -0.49071 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path360"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 74.482084,129.93967 h -0.754239 v -0.49107 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path362"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 74.482084,129.05843 h -0.754239 v -0.49107 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path364"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 74.482084,128.17754 h -0.754239 v -0.49106 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path366"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 74.482084,127.2956 h -0.754239 v -0.49072 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path368"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 75.734092,130.82055 h -0.754239 v -0.49071 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path370"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 75.734092,129.93967 h -0.754239 v -0.49107 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path372"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 75.734092,129.05843 h -0.754239 v -0.49107 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path374"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 75.734092,128.17754 h -0.754239 v -0.49106 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path376"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 75.734092,127.2956 h -0.754239 v -0.49072 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path378"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.985748,130.82055 h -0.753534 v -0.49071 h 0.753534 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path380"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.985748,129.93967 h -0.753534 v -0.49107 h 0.753534 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path382"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.985748,129.05843 h -0.753534 v -0.49107 h 0.753534 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path384"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.985748,128.17754 h -0.753534 v -0.49106 h 0.753534 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path386"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.985748,127.2956 h -0.753534 v -0.49072 h 0.753534 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path388"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 78.237756,130.82055 H 77.48387 v -0.49071 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path390"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 78.237756,129.93967 H 77.48387 v -0.49107 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path392"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 78.237756,129.05843 H 77.48387 v -0.49107 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path394"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 78.237756,128.17754 H 77.48387 v -0.49106 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path396"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 78.237756,127.2956 H 77.48387 v -0.49072 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path398"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.489764,130.82055 h -0.754239 v -0.49071 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path400"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.489764,129.93967 h -0.754239 v -0.49107 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path402"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.489764,129.05843 h -0.754239 v -0.49107 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path404"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.489764,128.17754 h -0.754239 v -0.49106 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path406"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.489764,127.2956 h -0.754239 v -0.49072 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path408"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.74142,130.82055 h -0.754239 v -0.49071 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path410"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 80.74142,129.93967 H 79.987181 V 129.4486 H 80.74142 Z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path412"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.74142,129.05843 h -0.754239 v -0.49107 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path414"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.74142,128.17754 h -0.754239 v -0.49106 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path416"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.74142,127.2956 h -0.754239 v -0.49072 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path418"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 77.971056,130.81385 h -0.753533 v -0.49071 h 0.753533 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path420"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 77.971056,129.93296 h -0.753533 v -0.49071 h 0.753533 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path422"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 77.971056,129.05173 h -0.753533 v -0.49072 h 0.753533 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path424"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.134517,131.69509 h -0.753886 v -0.49071 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path426"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.134517,130.81385 h -0.753886 v -0.49071 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path428"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.134517,129.93296 h -0.753886 v -0.49071 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path430"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.134517,129.05173 h -0.753886 v -0.49072 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path432"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.297978,132.57633 h -0.753886 v -0.49072 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path434"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.297978,131.69509 h -0.753886 v -0.49071 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path436"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.297978,130.81385 h -0.753886 v -0.49071 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path438"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.297978,129.93296 h -0.753886 v -0.49071 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path440"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.297978,129.05173 h -0.753886 v -0.49072 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path442"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 74.482084,113.43284 h -0.754239 v 0.39017 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path444"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 74.482084,114.13311 h -0.754239 v 0.39052 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path446"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 74.482084,114.83372 h -0.754239 v 0.39053 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path448"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 74.482084,115.53434 h -0.754239 v 0.39017 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path450"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 74.482084,116.23531 h -0.754239 v 0.38982 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path452"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 75.734092,113.43284 h -0.754239 v 0.39017 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path454"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 75.734092,114.13311 h -0.754239 v 0.39052 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path456"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 75.734092,114.83372 h -0.754239 v 0.39053 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path458"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 75.734092,115.53434 h -0.754239 v 0.39017 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path460"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 75.734092,116.23531 h -0.754239 v 0.38982 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path462"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.985748,113.43284 h -0.753534 v 0.39017 h 0.753534 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path464"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.985748,114.13311 h -0.753534 v 0.39052 h 0.753534 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path466"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.985748,114.83372 h -0.753534 v 0.39053 h 0.753534 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path468"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.985748,115.53434 h -0.753534 v 0.39017 h 0.753534 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path470"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.985748,116.23531 h -0.753534 v 0.38982 h 0.753534 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path472"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 78.237756,113.43284 H 77.48387 v 0.39017 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path474"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 78.237756,114.13311 H 77.48387 v 0.39052 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path476"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 78.237756,114.83372 H 77.48387 v 0.39053 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path478"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 78.237756,115.53434 H 77.48387 v 0.39017 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path480"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 78.237756,116.23531 H 77.48387 v 0.38982 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path482"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.489764,113.43284 h -0.754239 v 0.39017 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path484"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.489764,114.13311 h -0.754239 v 0.39052 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path486"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.489764,114.83372 h -0.754239 v 0.39053 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path488"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.489764,115.53434 h -0.754239 v 0.39017 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path490"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.489764,116.23531 h -0.754239 v 0.38982 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path492"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.74142,113.43284 h -0.754239 v 0.39017 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path494"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.74142,114.13311 h -0.754239 v 0.39052 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path496"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.74142,114.83372 h -0.754239 v 0.39053 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path498"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.74142,115.53434 h -0.754239 v 0.39017 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path500"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.74142,116.23531 h -0.754239 v 0.38982 h 0.754239 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path502"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.008906,118.49379 h -0.589139 v 0.23389 h 0.589139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path504"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.008906,118.91325 h -0.589139 v 0.23353 h 0.589139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path506"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.008906,119.3327 h -0.589139 v 0.23354 h 0.589139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path508"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.008906,119.75215 h -0.589139 v 0.23389 h 0.589139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path510"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.008906,120.1716 h -0.589139 v 0.2339 h 0.589139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path512"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.986806,118.49379 h -0.588433 v 0.23389 h 0.588433 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path514"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.986806,118.91325 h -0.588433 v 0.23353 h 0.588433 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path516"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.986806,119.3327 h -0.588433 v 0.23354 h 0.588433 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path518"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.986806,119.75215 h -0.588433 v 0.23389 h 0.588433 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path520"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.986806,120.1716 h -0.588433 v 0.2339 h 0.588433 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path522"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 77.964706,118.49379 H 77.37592 v 0.23389 h 0.588786 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path524"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 77.964706,118.91325 H 77.37592 v 0.23353 h 0.588786 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path526"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 77.964706,119.3327 H 77.37592 v 0.23354 h 0.588786 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path528"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 77.964706,119.75215 H 77.37592 v 0.23389 h 0.588786 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path530"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 77.964706,120.1716 H 77.37592 v 0.2339 h 0.588786 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path532"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 78.942959,118.49379 H 78.35382 v 0.23389 h 0.589139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path534"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 78.942959,118.91325 H 78.35382 v 0.23353 h 0.589139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path536"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 78.942959,119.3327 H 78.35382 v 0.23354 h 0.589139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path538"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 78.942959,119.75215 H 78.35382 v 0.23389 h 0.589139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path540"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 78.942959,120.1716 H 78.35382 v 0.2339 h 0.589139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path542"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 79.920859,118.49379 H 79.33172 v 0.23389 h 0.589139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path544"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 79.920859,118.91325 H 79.33172 v 0.23353 h 0.589139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path546"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 79.920859,119.3327 H 79.33172 v 0.23354 h 0.589139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path548"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 79.920859,119.75215 H 79.33172 v 0.23389 h 0.589139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path550"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 79.920859,120.1716 H 79.33172 v 0.2339 h 0.589139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path552"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 80.898759,118.49379 H 80.30962 v 0.23389 h 0.589139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path554"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 80.898759,118.91325 H 80.30962 v 0.23353 h 0.589139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path556"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 80.898759,119.3327 H 80.30962 v 0.23354 h 0.589139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path558"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 80.898759,119.75215 H 80.30962 v 0.23389 h 0.589139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path560"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="M 80.898759,120.1716 H 80.30962 v 0.2339 h 0.589139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path562"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 77.971056,116.83045 h -0.753533 v 0.49106 h 0.753533 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path564"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 77.971056,117.71168 h -0.753533 v 0.49107 h 0.753533 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path566"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.134517,115.94956 h -0.753886 v 0.49071 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path568"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.134517,116.83045 h -0.753886 v 0.49106 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path570"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.134517,117.71168 h -0.753886 v 0.49107 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path572"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.134517,118.59292 h -0.753886 v 0.49107 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path574"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.134517,119.47416 h -0.753886 v 0.49107 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path576"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.297978,115.94956 h -0.753886 v 0.49071 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path578"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.297978,116.83045 h -0.753886 v 0.49106 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path580"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.297978,117.71168 h -0.753886 v 0.49107 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path582"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.297978,118.59292 h -0.753886 v 0.49107 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path584"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.297978,119.47416 h -0.753886 v 0.49107 h 0.753886 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path586"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.427653,104.7344 h -0.843844 v 0.84349 h 0.843844 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path588"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.427653,105.98923 h -0.843844 v 0.84314 h 0.843844 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path590"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.427653,107.24441 h -0.843844 v 0.84279 h 0.843844 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path592"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 76.427653,108.49889 h -0.843844 v 0.84314 h 0.843844 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path594"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 77.760448,104.7344 h -0.843492 v 0.84349 h 0.843492 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path596"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 77.760448,105.98923 h -0.843492 v 0.84314 h 0.843492 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path598"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 77.760448,107.24441 h -0.843492 v 0.84279 h 0.843492 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path600"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 77.760448,108.49889 h -0.843492 v 0.84314 h 0.843492 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path602"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.093948,104.7344 h -0.843492 v 0.84349 h 0.843492 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path604"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.093948,105.98923 h -0.843492 v 0.84314 h 0.843492 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path606"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.093948,107.24441 h -0.843492 v 0.84279 h 0.843492 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path608"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.093948,108.49889 h -0.843492 v 0.84314 h 0.843492 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path610"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.427095,104.7344 h -0.843139 v 0.84349 h 0.843139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path612"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.427095,105.98923 h -0.843139 v 0.84314 h 0.843139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path614"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.427095,107.24441 h -0.843139 v 0.84279 h 0.843139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path616"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 80.427095,108.49889 h -0.843139 v 0.84314 h 0.843139 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path618"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 77.281023,136.31083 h -0.854428 v 0.85443 h 0.854428 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path620"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 77.281023,137.51628 h -0.854428 v 0.85478 h 0.854428 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path622"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 77.281023,138.72172 h -0.854428 v 0.85478 h 0.854428 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path624"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 78.556314,136.31083 h -0.854427 v 0.85443 h 0.854427 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path626"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 78.556314,137.51628 h -0.854427 v 0.85478 h 0.854427 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path628"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 78.556314,138.72172 h -0.854427 v 0.85478 h 0.854427 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path630"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.831253,136.31083 h -0.85478 v 0.85443 h 0.85478 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path632"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.831253,137.51628 h -0.85478 v 0.85478 h 0.85478 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path634"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.831253,138.72172 h -0.85478 v 0.85478 h 0.85478 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path636"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 81.459675,136.31083 h -1.207911 v 0.85443 h 1.207911 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path638"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 81.459675,137.51628 h -1.207911 v 0.85478 h 1.207911 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path640"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 81.459675,138.72172 h -1.207911 v 0.85478 h 1.207911 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path642"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 75.997264,141.58098 h -1.051983 v 0.68933 h 1.051983 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path644"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 75.997264,142.74338 h -1.051983 v 0.68933 h 1.051983 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path646"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 75.997264,143.90579 h -1.051983 v 0.68897 h 1.051983 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path648"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 75.997264,145.06854 h -1.051983 v 0.68898 h 1.051983 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path650"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 77.454589,141.58098 h -1.051277 v 0.68933 h 1.051277 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path652"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 77.454589,142.74338 h -1.051277 v 0.68933 h 1.051277 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path654"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 77.454589,143.90579 h -1.051277 v 0.68897 h 1.051277 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path656"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 77.454589,145.06854 h -1.051277 v 0.68898 h 1.051277 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path658"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 78.91262,141.58098 h -1.051983 v 0.68933 h 1.051983 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path660"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 78.91262,142.74338 h -1.051983 v 0.68933 h 1.051983 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path662"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 78.91262,143.90579 h -1.051983 v 0.68897 h 1.051983 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path664"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 78.91262,145.06854 h -1.051983 v 0.68898 h 1.051983 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path666"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 78.91262,146.80174 h -1.051983 v 0.68933 h 1.051983 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path668"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 78.91262,147.96449 h -1.051983 v 0.68933 h 1.051983 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path670"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 78.91262,149.12654 h -1.051983 v 0.68933 h 1.051983 z" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path672"
+         style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
+         d="m 79.640753,143.03795 h 1.799167 v 1.14759 h -1.799167 z" />
+      <g
+         transform="matrix(0.35277777,0,0,-0.35277777,79.899486,113.19361)"
+         id="g674">
+        <path
+           inkscape:connector-curvature="0"
+           id="path676"
+           style="fill:#f9da1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           d="M 0,0 C -8.978,-12.042 -9.319,-24.223 -1.962,-30.019 -9.319,-35.816 -8.978,-47.996 0,-60.037 c 17.158,-23.019 20.644,-35.828 3.396,-45.526 0,0 27.509,3.516 29.067,29.606 0.811,13.588 -4.915,37.246 -15.894,45.938 10.979,8.691 16.705,32.351 15.894,45.938 C 30.905,42.01 3.396,45.523 3.396,45.523 20.644,35.827 17.158,23.018 0,0" />
+      </g>
+    </g>
+  </g>
+</svg>