gosrc: handle ".background" in presentations

The current implementation does not resolve background images, therefore
they do not display on talksapp. This change handles .background in the
same way as .image and .iframe.

Fixes golang/gddo#541

Change-Id: I309688fb95bc407fb59e8eb4c5e5ea2f3c54b184
Reviewed-on: https://go-review.googlesource.com/c/133235
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
diff --git a/gosrc/present.go b/gosrc/present.go
index 49726af..4c40cee 100644
--- a/gosrc/present.go
+++ b/gosrc/present.go
@@ -25,7 +25,7 @@
 	fetch      func(fnames []string) ([]*File, error)
 }
 
-var assetPat = regexp.MustCompile(`(?m)^\.(play|code|image|iframe|html)\s+(?:-\S+\s+)*(\S+)`)
+var assetPat = regexp.MustCompile(`(?m)^\.(play|code|image|background|iframe|html)\s+(?:-\S+\s+)*(\S+)`)
 
 func (b *presBuilder) build() (*Presentation, error) {
 	var data []byte
@@ -34,7 +34,7 @@
 	for _, m := range assetPat.FindAllSubmatchIndex(b.data, -1) {
 		name := filepath.Clean(string(b.data[m[4]:m[5]]))
 		switch string(b.data[m[2]:m[3]]) {
-		case "iframe", "image":
+		case "iframe", "image", "background":
 			data = append(data, b.data[i:m[4]]...)
 			data = append(data, b.resolveURL(name)...)
 		case "html":
diff --git a/gosrc/present_test.go b/gosrc/present_test.go
new file mode 100644
index 0000000..67fa32d
--- /dev/null
+++ b/gosrc/present_test.go
@@ -0,0 +1,136 @@
+package gosrc
+
+import (
+	"bytes"
+	"io/ioutil"
+	"os"
+	"testing"
+
+	"golang.org/x/tools/present"
+)
+
+// Verify that the output of presBuilder is still a valid presentation.
+func TestPresentationBuilderValidOutput(t *testing.T) {
+	os.Chdir("testdata")
+	defer os.Chdir("..")
+
+	filename := "sample.slide"
+	data, err := ioutil.ReadFile(filename)
+	if err != nil {
+		t.Fatal(err)
+	}
+
+	// Confirm the slide is valid to begin with.
+	_, err = present.Parse(bytes.NewReader(data), "testing", 0)
+	if err != nil {
+		t.Fatal(err)
+	}
+
+	// Transform the presentation.
+	b := presBuilder{
+		filename:   filename,
+		data:       data,
+		resolveURL: func(fname string) string { return fname },
+		fetch:      func(fnames []string) ([]*File, error) { return nil, nil },
+	}
+
+	p, err := b.build()
+	if err != nil {
+		t.Fatal(err)
+	}
+
+	output := p.Files[filename]
+	if len(output) == 0 {
+		t.Fatal("presentation builder produced no output")
+	}
+
+	// Confirm the output is still valid.
+	_, err = present.Parse(bytes.NewReader(output), "testing", 0)
+	if err != nil {
+		t.Fatal(err)
+	}
+}
+
+func TestPresentationBuilderTransforms(t *testing.T) {
+	resolveURL := func(fname string) string {
+		return "https://resolved.com/" + fname
+	}
+
+	fetch := func(fnames []string) ([]*File, error) {
+		var files []*File
+		for _, fname := range fnames {
+			files = append(files, &File{
+				Name: fname,
+				Data: []byte("data"),
+			})
+		}
+		return files, nil
+	}
+
+	cases := []struct {
+		Name    string
+		Input   string
+		Expect  string
+		Fetched []string
+	}{
+		{
+			Name:   "image",
+			Input:  ".image blah.jpg _ 42",
+			Expect: ".image https://resolved.com/blah.jpg _ 42",
+		},
+		{
+			Name:   "background",
+			Input:  ".background blah.jpg",
+			Expect: ".background https://resolved.com/blah.jpg",
+		},
+		{
+			Name:   "iframe",
+			Input:  ".iframe iframe.html 200 300",
+			Expect: ".iframe https://resolved.com/iframe.html 200 300",
+		},
+		{
+			Name:   "html",
+			Input:  ".html embed.html",
+			Expect: "\nERROR: .html not supported\n",
+		},
+		{
+			Name:    "code",
+			Input:   ".code hello.go /start/,/end/",
+			Expect:  ".code hello.go /start/,/end/",
+			Fetched: []string{"hello.go"},
+		},
+		{
+			Name:    "play",
+			Input:   ".play hello.go",
+			Expect:  ".play hello.go",
+			Fetched: []string{"hello.go"},
+		},
+	}
+
+	for _, c := range cases {
+		t.Run(c.Name, func(t *testing.T) {
+			b := presBuilder{
+				filename:   "snippet.slide",
+				data:       []byte(c.Input),
+				resolveURL: resolveURL,
+				fetch:      fetch,
+			}
+
+			p, err := b.build()
+			if err != nil {
+				t.Fatal(err)
+			}
+
+			output := p.Files["snippet.slide"]
+			if !bytes.Equal([]byte(c.Expect), output) {
+				t.Fatalf("bad output: got '%s' expect '%s", string(output), c.Expect)
+			}
+
+			for _, fname := range c.Fetched {
+				if _, ok := p.Files[fname]; !ok {
+					t.Fatalf("file %s not fetched", fname)
+				}
+			}
+		})
+	}
+}
diff --git a/gosrc/testdata/embed.html b/gosrc/testdata/embed.html
new file mode 100644
index 0000000..36a4be4
--- /dev/null
+++ b/gosrc/testdata/embed.html
@@ -0,0 +1 @@
+<h3 style="color: red;">Embedded HTML</h3>
\ No newline at end of file
diff --git a/gosrc/testdata/gopher.jpg b/gosrc/testdata/gopher.jpg
new file mode 100644
index 0000000..2c9c983
--- /dev/null
+++ b/gosrc/testdata/gopher.jpg
Binary files differ
diff --git a/gosrc/testdata/gopher.svg b/gosrc/testdata/gopher.svg
new file mode 100644
index 0000000..4d8ee94
--- /dev/null
+++ b/gosrc/testdata/gopher.svg
@@ -0,0 +1,177 @@
+<!--?xml version="1.0" encoding="UTF-8" standalone="no"?-->
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="208.23656mm" height="157.00354mm" viewBox="0 0 737.84607 556.31175" id="svg2" version="1.1" inkscape:version="0.92.1 r15371" sodipodi:docname="hiking.svg">
+  <defs id="defs4">
+    <linearGradient inkscape:collect="always" id="linearGradient4761">
+      <stop style="stop-color:#edf2f2;stop-opacity:1" offset="0" id="stop4757"></stop>
+      <stop style="stop-color:#dcece8;stop-opacity:1" offset="1" id="stop4759"></stop>
+    </linearGradient>
+    
+    
+    
+    
+    
+    
+    
+    
+    
+    
+    
+    
+    
+    
+    
+    
+    
+    
+    
+    
+    
+    
+    
+    
+    
+    
+    
+    
+    
+    <linearGradient inkscape:collect="always" xlink:href="#linearGradient4761" id="linearGradient4763" x1="250.58096" y1="-154.33055" x2="249.25513" y2="626.58044" gradientUnits="userSpaceOnUse"></linearGradient>
+  </defs>
+  <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="0.35355339" inkscape:cx="-505.48335" inkscape:cy="5.0994358" inkscape:document-units="px" inkscape:current-layer="layer13" showgrid="false" inkscape:window-width="1920" inkscape:window-height="1017" inkscape:window-x="1912" inkscape:window-y="-8" inkscape:window-maximized="1" inkscape:snap-bbox="true" inkscape:bbox-nodes="true" inkscape:snap-global="false" showguides="true" inkscape:guide-bbox="true" fit-margin-top="5" fit-margin-right="5" fit-margin-bottom="5" fit-margin-left="5">
+    <inkscape:grid type="xygrid" id="grid4305" originx="0.2136505" originy="-272.79149"></inkscape:grid>
+    <sodipodi:guide position="492.88371,1034.0806" orientation="0,1" id="guide4285" inkscape:locked="false"></sodipodi:guide>
+  </sodipodi:namedview>
+  <metadata id="metadata7">
+    <rdf:rdf>
+      <cc:work rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"></dc:type>
+        <dc:title></dc:title>
+      </cc:work>
+    </rdf:rdf>
+  </metadata>
+  <g inkscape:groupmode="layer" id="layer9" inkscape:label="background" style="display:none" transform="translate(0.2136505,-223.25895)">
+    <rect style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e6e1db;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" id="rect4461" width="1520.566" height="855.31842" x="-503.0661" y="-8.3438873" ry="0.55214608" inkscape:export-filename="..\.rendered\hiking.png" inkscape:export-xdpi="113.64" inkscape:export-ydpi="113.64"></rect>
+  </g>
+  <g inkscape:groupmode="layer" id="layer8" inkscape:label="ground" transform="translate(0.2136505,-223.25895)" style="display:inline">
+    <path sodipodi:nodetypes="cccccccccccccccccccccscsssssssssssssssc" inkscape:connector-curvature="0" id="path4457" d="m 144.61705,760.45484 61.72212,-63.02841 64.3347,19.9209 14.69574,-12.73632 18.94118,18.28804 50.61867,-35.59636 72.499,-0.65314 16.65518,23.18662 8.49087,-50.94525 28.41177,-6.53144 18.28804,-30.04463 71.84585,15.67546 -32.98378,-54.21096 -1.30629,-43.43409 64.00813,9.14402 -40.16836,-13.38945 6.20486,-36.2495 -12.73631,-27.43206 22.86005,-8.1643 16.65518,18.94118 21.22718,-28.0852 c 0,0 42.1278,13.71603 43.43409,14.36917 1.30628,0.65315 61.39554,-5.55172 61.39554,-5.55172 0,0 -12.40973,32.98378 -15.67546,32.98378 -3.26572,0 -66.6207,-6.53144 -71.84585,-3.91887 -5.22515,2.61258 -16.3286,28.0852 -15.67546,36.57607 0.65314,8.49088 1.14291,16.0628 0,20.24747 -3.77755,13.83122 -16.3286,9.79716 -28.0852,20.90062 -11.75659,11.10345 -3.91886,26.12576 0,36.57607 3.91887,10.4503 -3.91886,47.67952 -3.91886,50.94524 0,3.26572 -37.88236,11.7566 -49.63896,19.59432 -11.75659,7.83773 -16.3286,42.45437 -21.55375,46.37324 -5.22516,3.91886 -58.12983,11.75659 -68.58014,4.57201 -10.45031,-7.18459 -45.72009,-11.10346 -60.74241,-3.26573 -15.02231,7.83773 -32.6572,16.98175 -39.18864,19.59433 -6.53145,2.61258 -49.63896,1.95943 -54.86411,-3.91886 -5.22515,-5.8783 -33.54649,-5.44328 -50.2921,-3.91887 -10.99163,1.00061 -21.29443,5.82233 -32.00406,8.49088 -20.93294,5.21592 -63.02841,14.69574 -63.02841,14.69574 z" style="fill:#c4ab95;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"></path>
+    <path style="fill:none;fill-rule:evenodd;stroke:#453c35;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 144.61705,760.45484 61.72212,-63.02841 64.3347,19.9209 14.69574,-12.73632 18.94118,18.28804 50.61867,-35.59636 72.499,-0.65314 16.65518,23.18662 8.49087,-50.94525 28.41177,-6.53144 18.28804,-30.04463 71.84585,15.67546 -32.98378,-54.21096 -1.30629,-43.43409 64.00813,9.14402 -40.16836,-13.38945 6.20486,-36.2495 -12.73631,-27.43206 22.86005,-8.1643 16.65518,18.94118 21.22718,-28.0852 c 0,0 42.1278,13.71603 43.43409,14.36917 1.30628,0.65315 61.39554,-5.55172 61.39554,-5.55172" id="path4455" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccccccccccccsc"></path>
+  </g>
+  <g inkscape:groupmode="layer" id="layer13" inkscape:label="ground-circle" style="display:none">
+    <circle r="344.19299" cy="242.09117" cx="282.40076" id="circle4755" style="opacity:1;fill:#453c35;fill-opacity:1;stroke:none;stroke-width:5.53139114;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"></circle>
+    <circle style="opacity:1;fill:url(#linearGradient4763);fill-opacity:1;stroke:none;stroke-width:5.30539799;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4743" cx="282.40076" cy="242.09117" r="330.13049"></circle>
+    <path sodipodi:nodetypes="ccccccccccccccccccccc" inkscape:connector-curvature="0" id="path4739" d="m 132.18744,761.61494 74.15173,-64.18851 64.3347,19.9209 14.69574,-12.73632 18.94118,18.28804 50.61867,-35.59636 72.499,-0.65314 16.65518,23.18662 8.49087,-50.94525 28.41177,-6.53144 18.28804,-30.04463 50.63265,5.06886 -11.77058,-43.60436 -1.30629,-43.43409 44.78367,6.49237 -20.9439,-10.7378 6.20486,-36.2495 -12.73631,-27.43206 22.86005,-8.1643 16.65518,18.94118 19.90135,-25.26782" style="fill:none;fill-rule:evenodd;stroke:#453c35;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.2136505,-223.25895)"></path>
+    <path style="opacity:1;fill:#c4ab95;fill-opacity:1;stroke:none;stroke-width:3.53553391;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 652.20783,255.30133 c -6.84247,7.36137 -12.3706,17.06183 -18.66927,24.99397 -6.12691,-7.00679 -12.0908,-14.48732 -18.64856,-20.90246 -6.69855,2.69019 -14.13292,4.36082 -20.42323,7.68288 3.47652,9.48622 8.29742,18.4918 12.38265,27.74704 -1.89677,12.29157 -4.73785,24.59953 -6.0035,36.90628 5.63005,5.41255 14.04932,7.09769 19.75479,12.34398 0.47697,2.1081 -1.2592,2.89236 -3.09911,2.1669 -14.08894,-1.43234 -28.03316,-3.95466 -42.10324,-5.54223 -1.35141,3.46841 0.12733,8.06314 -0.2515,11.8989 0.54168,11.04751 0.1979,22.2307 1.34047,33.19358 4.19074,15.71372 8.66158,31.41232 12.52421,47.167 -18.43643,-1.40823 -37.03021,-3.64275 -55.31728,-5.20662 -6.6301,10.61399 -12.73823,21.59555 -19.93711,31.80323 -9.58963,2.72028 -19.82882,3.60564 -29.0259,7.47434 -3.8315,18.36682 -6.02119,37.26173 -9.74343,55.72885 -7.52642,-8.09389 -12.78232,-18.26379 -20.22022,-26.33697 -25.24908,-0.35464 -50.54426,0.2815 -75.77091,0.6933 -18.12625,12.57681 -35.99838,25.72855 -54.40579,37.78188 -6.90384,-5.84512 -13.13851,-12.43044 -19.67884,-18.67066 -5.51045,3.37452 -10.30635,8.74812 -15.54254,12.88813 -22.94654,-6.95645 -45.86062,-14.56573 -68.84209,-21.06958 -25.21478,21.68976 -50.44603,43.35978 -75.61761,65.09941 1.83638,2.67934 6.4401,3.33645 9.3958,5.18129 40.29216,18.4154 84.09731,29.35987 128.34632,31.67141 25.18637,-0.13499 50.59821,0.4568 75.46528,-4.20824 81.72625,-13.04043 158.03304,-56.35109 211.41886,-119.54434 52.63066,-61.536 83.31523,-141.68824 83.70795,-222.78332 -0.55629,-1.94507 1.17534,-6.99112 -1.0362,-8.15795 z" id="path4753" inkscape:connector-curvature="0" transform="scale(0.93749996)" sodipodi:nodetypes="ccccccccccccccccccccccccccccc"></path>
+  </g>
+  <g inkscape:groupmode="layer" id="layer3" inkscape:label="backpack-mat" transform="translate(0.2136505,-223.25895)">
+    <path inkscape:connector-curvature="0" id="path4385" d="m 61.13901,480.05936 18.45116,-8.48065 13.92656,-3.06339 1.79524,-34.44033 -21.92503,0.97368 -19.598226,12.90944 z" style="fill:#4b3977;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"></path>
+    <path sodipodi:nodetypes="cc" inkscape:connector-curvature="0" id="path4387" d="M 60.937492,480.47759 C 68.87822,477.12515 89.20112,467.58428 95.13858,466.29719" style="fill:none;fill-rule:evenodd;stroke:#3d305f;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"></path>
+    <path style="fill:#4b3977;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 52.278793,421.47302 20.247477,1.55122 14.12424,-1.95943 13.63438,31.67749 -20.90061,6.69473 -22.86005,-5.3068 z" id="path4383" inkscape:connector-curvature="0"></path>
+    <path style="fill:none;fill-rule:evenodd;stroke:#3d305f;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 50.796911,419.22495 c 10.310411,4.98292 31.264459,3.04976 36.996599,1.43165" id="path4381" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"></path>
+    <ellipse style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3d305f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" id="path4257" cx="-34.90707" cy="452.30289" rx="29.779648" ry="33.56424" transform="matrix(0.98353224,-0.18073276,0.18073276,0.98353224,0,0)"></ellipse>
+    <ellipse cy="452.79276" cx="-34.90707" id="circle4373" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#a591d5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" rx="26.713823" ry="30.108788" transform="matrix(0.98353224,-0.18073276,0.18073276,0.98353224,0,0)"></ellipse>
+    <ellipse style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3d305f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" id="circle4375" cx="-130.43124" cy="436.39938" rx="4.2738419" ry="7.2718844" transform="matrix(0.92414087,-0.38205191,0.37729039,0.92609501,0,0)"></ellipse>
+    <path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#9685c0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 68.391575,433.83436 c -0.440108,4.83949 -2.286226,20.35089 -8.357422,26.33789 -6.810551,6.7161 -12.277721,12.85847 -32.580078,10.38477 a 30.108788,26.713823 79.587556 0 0 25.490234,10.70117 30.108788,26.713823 79.587556 0 0 20.832031,-34.44141 30.108788,26.713823 79.587556 0 0 -5.384765,-12.98242 z" id="ellipse4422" inkscape:connector-curvature="0"></path>
+  </g>
+  <g inkscape:groupmode="layer" id="layer7" inkscape:label="backpack" style="display:inline;opacity:1" transform="translate(0.2136505,-223.25895)">
+    <path style="fill:#284021;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 220.38177,374.44664 c -4.6494,-17.85585 -18.54163,-27.75249 -39.51522,-30.69778 -4.93476,-7.12181 -7.94361,-13.53945 -17.96147,-18.61461 -10.3846,-2.04767 -24.31788,-4.02658 -39.51521,-0.32657 -8.61109,17.58916 -14.62927,48.62064 -4.24544,65.96756 16.34419,27.30411 52.67337,31.32964 82.62273,20.57404 16.02597,-5.75535 22.9054,-20.42402 18.61461,-36.90264 z" id="path6473" inkscape:connector-curvature="0" sodipodi:nodetypes="scccsss"></path>
+    <path sodipodi:type="inkscape:offset" inkscape:radius="-3.902102" inkscape:original="M 176.35742 350.52539 C 169.67636 350.23721 162.39359 350.66757 154.79492 352.51758 C 146.18383 370.10674 140.165 401.13941 150.54883 418.48633 C 166.89302 445.79044 203.22252 449.81615 233.17188 439.06055 C 249.19785 433.3052 256.0779 418.63487 251.78711 402.15625 C 247.13771 384.3004 233.24507 374.40427 212.27148 371.45898 C 207.33672 364.33717 204.32841 357.92086 194.31055 352.8457 C 189.11825 351.82187 183.03848 350.81358 176.35742 350.52539 z " style="fill:#a5ca9a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path6477" d="m 176.18945,354.42383 c -5.84066,-0.25193 -12.1412,0.20103 -18.65429,1.59179 -3.73268,8.17813 -6.95554,19.12169 -8.10547,29.98829 -1.23018,11.62488 -0.0278,22.96998 4.46679,30.47851 7.56111,12.63136 19.62272,19.8408 33.65235,22.74219 14.02962,2.90139 29.94811,1.31988 44.30469,-3.83594 14.37514,-5.16249 20.05038,-17.30224 16.1582,-32.25 -4.26036,-16.36175 -16.26663,-25.00551 -36.2832,-27.8164 a 3.9024922,3.9024922 0 0 1 -2.66407,-1.64063 c -5.05153,-7.29033 -7.39511,-12.55023 -16.13867,-17.11523 -4.96296,-0.96377 -10.59007,-1.87746 -16.73633,-2.14258 z" transform="translate(-31.4053,-27.710559)"></path>
+    <path style="fill:#284021;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 238.66981,353.54602 c -17.97093,-5.54994 -27.90018,18.61549 -46.61414,17.79613 -21.35041,-0.93479 -41.50377,-7.01036 -61.64818,-13.46982 -14.34973,-4.60134 -31.82633,-10.00396 -45.91716,-2.38457 -11.39005,6.15899 -8.50171,21.58477 -9.73224,32.67371 -3.04631,27.45193 0.28011,55.22065 1.12458,82.78865 0.74894,24.44937 2.9602,48.89979 2.59907,73.34273 -0.29378,19.88456 -15.546784,34.84735 -18.431504,54.37221 -3.186769,21.56924 -3.997836,47.20806 11.414674,63.81815 18.71319,20.16724 47.78928,29.40242 74.67313,29.20225 19.82957,-0.14764 36.91037,-14.44773 50.92387,-27.77124 20.07029,-19.08208 24.62189,-47.68416 25.96337,-74.01342 1.24787,-24.49198 5.23026,-49.01863 15.81555,-71.41655 12.48617,-26.42007 26.33267,-53.68091 25.55435,-83.92116 -0.6327,-24.58249 1.57861,-52.24984 -14.58616,-72.5635 -2.92305,-3.67328 -6.65063,-7.06737 -11.13921,-8.45357 z" id="path6464" inkscape:connector-curvature="0" sodipodi:nodetypes="ssssssssssssssss"></path>
+    <path sodipodi:type="inkscape:offset" inkscape:radius="-6.0209889" inkscape:original="M 132.83203 379.39062 C 126.93916 379.31442 121.18055 380.34195 115.89648 383.19922 C 104.50643 389.35821 107.39459 404.78215 106.16406 415.87109 C 103.11775 443.32302 106.44264 471.09216 107.28711 498.66016 C 108.03605 523.10953 110.24785 547.56097 109.88672 572.00391 C 109.59294 591.88847 94.339798 606.85014 91.455078 626.375 C 88.268309 647.94424 87.458584 673.58327 102.87109 690.19336 C 121.58428 710.3606 150.65912 719.59665 177.54297 719.39648 C 197.37254 719.24884 214.4533 704.94851 228.4668 691.625 C 248.53709 672.54292 253.08821 643.94059 254.42969 617.61133 C 255.67756 593.11935 259.6608 568.59323 270.24609 546.19531 C 282.73226 519.77524 296.5791 492.51369 295.80078 462.27344 C 295.16808 437.69095 297.37961 410.0246 281.21484 389.71094 C 278.29179 386.03766 274.5628 382.64206 270.07422 381.25586 C 252.10329 375.70592 242.1749 399.87209 223.46094 399.05273 C 202.11053 398.11794 181.95691 392.04149 161.8125 385.58203 C 152.84392 382.70619 142.65348 379.51764 132.83203 379.39062 z " style="fill:#a5ca9a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path6471" d="m 132.75391,385.41016 c -5.14243,-0.0665 -9.78878,0.81195 -13.99414,3.08593 -3.65793,1.97797 -4.84777,4.90668 -5.57813,10.03907 -0.73036,5.13238 -0.32724,11.63816 -1.0332,18 -2.94425,26.53223 0.30076,54.01365 1.15625,81.9414 0.74159,24.20955 2.96893,48.75184 2.60156,73.61719 -0.1693,11.45901 -4.58045,21.07822 -8.84766,29.86133 -4.2672,8.78311 -8.395887,16.83629 -9.646481,25.30078 -3.107488,21.03264 -3.366632,44.57337 9.873051,58.8418 17.22154,18.55969 44.74026,27.467 70.21289,27.27734 16.96081,-0.12628 33.01826,-12.99081 46.82031,-26.11328 18.22228,-17.32506 22.78011,-44.09761 24.09766,-69.95703 1.2706,-24.93826 5.32521,-50.27609 16.38671,-73.68164 12.53728,-26.5282 25.70719,-52.88427 24.97852,-81.19532 -0.64497,-25.0594 1.06226,-50.94675 -13.27734,-68.96679 -2.49523,-3.13566 -5.46888,-5.60751 -8.20703,-6.45313 -3.1663,-0.97784 -5.45218,-0.69442 -8.25586,0.40625 -2.80369,1.10068 -5.94921,3.2351 -9.40625,5.80078 -6.91409,5.13137 -15.44975,12.37838 -27.4375,11.85352 -22.32412,-0.97742 -43.01184,-7.2712 -63.22266,-13.75195 -8.93802,-2.86604 -18.64823,-5.79539 -27.2207,-5.90625 z" transform="translate(-31.4053,-27.710559)"></path>
+    <path style="fill:#84a67a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 210.60056,418.25233 3.69531,61.42578 -7.39062,35.79297 -31.17383,70.66016 -24.70899,74.81836 c -0.75545,8.18356 -2.80091,16.48439 -0.41992,24.38281 15.29388,-2.09178 29.73775,-13.82751 42.31055,-25.78125 2.32202,-2.20769 4.41853,-4.57139 6.31836,-7.06445 l 5.13476,-11.16407 6.49805,-12.13281 c 3.8971,-12.47678 5.46185,-26.15836 6.14649,-39.5957 1.2706,-24.93826 5.32521,-50.27609 16.38671,-73.68164 12.53728,-26.5282 25.70719,-52.88427 24.97852,-81.19532 -0.006,-0.22601 -0.006,-0.45354 -0.0117,-0.67968 z" id="path4427" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccscccssccc"></path>
+    <path style="fill:#84a67a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 180.67087,397.43006 c -1.80492,-0.009 -3.53311,0.0767 -5.16992,0.26954 -10.40246,1.22531 -23.67978,5.48168 -27.48047,15.24218 -2.20809,5.67057 8.02803,11.66612 5.77344,17.31836 -1.93926,4.86172 -14.08475,2.15947 -13.85547,7.38868 0.17222,3.92792 10.24822,0.73432 10.85352,4.61914 0.45373,2.91206 -6.25179,2.86009 -6.69727,5.77343 -0.904,5.912 10.70911,9.38956 9.46875,15.24024 -1.57967,7.45118 -9.52142,24.18399 -20.32227,31.17383 -12.90499,8.35155 -42.10032,-5.18087 -50.76171,-9.5293 0.33507,6.99983 0.71579,14.0277 1.06835,21.08203 14.34375,10.54962 39.51324,5.98672 54.88868,-3.35352 12.67179,-7.69782 21.34935,-24.31748 21.13086,-39.14257 -0.0793,-5.37946 -7.70201,-8.6041 -8.08204,-13.97071 -0.19638,-2.77318 4.00425,-5.09955 3.11719,-7.73437 -0.95824,-2.84623 -7.95562,-1.62394 -7.73633,-4.61914 0.31625,-4.31971 10.04491,-1.1039 12.00782,-4.96485 2.44095,-4.80123 -5.74713,-10.67721 -3.81055,-15.70312 2.51014,-6.51444 10.38729,-10.9413 17.31836,-11.77735 26.67184,-3.21719 54.07448,44.36588 75.51172,28.17383 3.55279,-2.6835 5.15862,-7.21661 5.33008,-12.24023 l -1.51953,-1.73047 c 0,0 -43.95936,-21.38449 -71.03321,-21.51563 z" id="path4403" inkscape:connector-curvature="0"></path>
+    <path style="fill:#284021;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 161.3778,638.05979 c 6.24233,-16.97937 10.50621,-34.71781 17.49069,-51.38877 8.07598,-19.27619 19.30355,-37.25451 26.44455,-56.86866 4.39494,-12.07155 7.54515,-24.69055 9.45877,-37.37749 1.69566,-11.24187 3.44594,-22.54323 2.52695,-33.98739 -1.00556,-12.52212 -1.06598,-25.09653 -3.2,-37.51149 -0.99639,-5.79662 -0.76927,-12.0529 -4.41369,-16.88683 -0.86656,-1.1494 -6.45711,3.11509 -6.04061,5.68878 2.57109,15.88764 5.93242,31.75135 6.92861,47.79652 0.6458,10.40167 1.70217,21.20182 -0.64522,31.30065 -4.13538,17.791 -10.02398,35.20382 -16.55667,52.24618 -6.57516,17.15314 -15.35945,33.43154 -21.67946,50.67544 -8.32415,22.71211 -17.33686,45.31606 -23.50645,68.67753 -0.83433,3.15925 -1.14639,6.36186 2.41383,8.87494 4.84339,2.30116 8.52202,-24.16359 10.7787,-31.23941 z" id="path6479" inkscape:connector-curvature="0" sodipodi:nodetypes="csssssssssssscc"></path>
+    <path style="fill:none;fill-rule:evenodd;stroke:#284021;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 87.28826,558.19057 c 0,0 7.52545,10.60274 22.17244,16.05184 18.04468,6.71313 27.42859,9.39522 41.8556,11.47703 20.70269,2.98738 32.03523,0.18168 32.03523,0.18168" id="path4259" inkscape:connector-curvature="0" sodipodi:nodetypes="cssc"></path>
+    <path sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkscape:connector-curvature="0" id="path4425" d="m 88.93059,575.78397 c -1.88419,0.27187 -0.63671,2.87253 -0.64285,3.95998 1.16773,8.82106 2.08316,17.23745 4.16399,25.14475 -5.12643,2.31691 -9.74988,4.76821 -13.81551,8.06773 -0.87637,-3.43404 -1.10149,-7.11938 -1.14878,-10.77205 -0.54732,-1.20665 -2.09952,0.19969 -1.62564,1.36274 -1.07337,4.17219 3.09468,9.51822 -0.29482,12.15089 -1.61532,1.91514 -3.72043,3.81975 -4.43169,6.45826 0.11127,1.22491 1.53706,1.04956 1.73249,-0.0608 1.41503,-1.73304 4.7544,-8.57624 5.56412,-4.02429 1.63307,4.88679 3.90857,9.52326 6.65826,14.15932 -2.62541,2.59894 -5.33315,5.54318 -6.55437,9.60524 0.18752,1.45002 1.89065,1.16005 1.88972,-0.11405 1.47872,-2.58949 3.83671,-7.5178 6.14449,-7.00285 2.74479,4.54755 5.95436,9.10984 9.49681,13.5998 -2.09129,2.45983 -4.46984,4.91544 -5.8396,8.19256 0.0795,1.38933 1.96366,1.43276 2.07996,0.20796 1.66997,-1.8318 3.47471,-6.94113 5.78669,-5.81553 3.56005,4.28955 7.09716,8.76768 10.76767,12.81993 1.24348,0.6204 1.87544,-1.16568 0.72649,-1.88501 -3.60719,-4.28235 -7.40362,-8.61361 -10.96491,-12.99916 3.95683,-3.92311 8.65213,-7.12021 14.0547,-10.4504 6.45225,5.60546 13.81507,10.86178 20.26005,16.01469 0.65117,1.26121 3.12055,1.26164 2.61826,-0.28313 -2.03425,-2.03955 -4.83408,-3.65575 -7.15039,-5.68656 -4.52382,-3.69363 -9.66906,-7.07696 -13.96077,-11.01488 5.16239,-2.90882 11.84188,-4.89519 18.74776,-6.66305 3.85674,3.05452 7.7382,6.2287 11.76248,8.82099 1.6011,0.29885 1.79608,-1.76723 0.3273,-2.15073 -2.57386,-2.31864 -8.32084,-5.39386 -8.77494,-7.51745 3.12917,-1.03219 8.18149,-1.28068 8.40355,-4.796 -0.37488,-1.36111 -2.69714,-0.67908 -2.61453,0.55918 -3.82552,2.47825 -10.07918,3.72362 -12.3285,-0.85767 -2.54092,-3.11004 -7.9436,-7.5965 -7.06875,-10.40966 5.21722,-1.04289 11.88712,-6.19009 16.23629,-4.71299 2.70371,2.23786 5.56219,4.77398 9.07835,5.98631 1.51548,-0.0924 1.41465,-2.01031 0.04,-2.17431 -2.16604,-1.59895 -8.17021,-4.30217 -6.73621,-6.1552 5.37426,-2.24426 10.61834,-4.14527 14.84428,-6.71934 0.75761,-1.0797 -0.83812,-2.1555 -1.70664,-1.2264 -4.67622,2.39169 -10.0595,4.61537 -15.78632,6.85882 -3.37906,-3.51558 -5.26601,-7.8961 -6.42444,-12.41987 -1.10446,-1.03458 -2.81436,0.91828 -1.84407,1.91111 0.0276,4.31979 5.28427,8.97339 4.91352,11.82164 -4.88924,1.25104 -11.27482,5.47138 -15.21653,4.71882 -1.83211,-3.68688 -5.74994,-8.6717 -5.07641,-11.89487 1.797,-0.77806 4.90318,0.0224 6.06654,-1.85436 0.38569,-1.42599 -1.75306,-1.27528 -2.74312,-0.76361 -6.91223,3.2177 -5.59591,-4.71247 -6.66716,-8.51499 0.0762,-1.03669 0.0415,-3.94715 -1.8284,-2.76336 -1.39751,2.17879 0.39492,4.74747 0.24701,6.92344 2.2e-4,2.5629 3.22187,6.62508 -1.74356,6.22147 -5.18242,0.90882 -10.01344,2.36798 -14.33403,4.44619 -2.36233,-8.71432 -2.98699,-18.19914 -4.53338,-27.91967 -0.17165,-0.24165 -0.45817,-0.38915 -0.75428,-0.38956 z m 23.2891,25.17633 c 0.99753,4.48015 5.00316,9.38994 5.70793,13.15612 -6.20981,2.26142 -11.87785,4.57198 -16.72591,7.11444 -2.82362,-5.08683 -5.07225,-10.07154 -6.46665,-15.33841 5.14818,-2.60908 11.09558,-3.84621 17.48463,-4.93215 z m -19.24116,5.74921 c 1.41171,5.29995 3.67231,10.31352 6.51575,15.4384 -5.11838,2.74834 -9.29654,5.81649 -13.18888,8.94068 -3.10879,-5.30205 -5.58398,-10.59915 -7.14478,-16.27252 4.02192,-3.36232 8.66579,-5.76191 13.81791,-8.10656 z m 26.65536,8.89875 c 3.04184,4.73885 6.8522,9.34129 11.68825,13.36194 -6.97324,1.80946 -13.52666,3.99394 -18.65235,6.92844 -4.31161,-4.04692 -7.76562,-8.46325 -10.47691,-12.93737 5.02551,-2.62888 10.95275,-5.01017 17.44101,-7.35301 z m -19.15074,8.26909 c 2.71097,4.48509 6.15225,8.9222 10.4445,12.99653 -5.28025,3.24364 -9.83453,6.38715 -13.67201,10.22222 -3.76222,-4.70205 -7.10253,-9.5011 -9.93015,-14.25887 3.87732,-3.13079 8.03195,-6.22159 13.15766,-8.95988 z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#84a67a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"></path>
+    <path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#284021;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 89.25717,575.4493 c -1.88419,0.27823 -0.63671,2.85726 -0.64285,3.93405 1.16773,8.72364 2.08316,16.8769 4.16399,24.58288 -5.12643,2.49145 -9.74988,5.11124 -13.81551,8.51686 -0.87637,-3.40757 -1.10149,-7.0741 -1.14878,-10.70556 -0.54732,-1.1893 -2.09952,0.23533 -1.62564,1.38569 -1.07337,4.17317 3.09468,9.43195 -0.29482,12.13317 -1.61532,1.94824 -3.72043,3.87937 -4.43169,6.52533 0.11127,1.2255 1.53706,1.03851 1.73249,-0.0761 1.41503,-1.7519 4.7544,-8.68014 5.56412,-4.13835 1.63307,4.85603 3.90857,9.46199 6.65826,14.08822 -2.62541,2.71067 -5.33315,5.72797 -6.55437,9.80811 0.18752,1.45363 1.89065,1.1548 1.88972,-0.12656 1.47872,-2.61627 3.83671,-7.65613 6.14449,-7.1952 2.74479,4.54909 5.95436,9.13918 9.49681,13.67363 -2.09129,2.54516 -4.46984,5.05203 -5.8396,8.32915 0.0795,1.38933 1.96366,1.43438 2.07996,0.20664 1.66997,-1.83836 3.47471,-7.04409 5.78669,-5.9233 3.56005,4.33492 7.09716,8.86855 10.76767,12.92807 1.24348,0.62118 1.87544,-1.17208 0.72649,-1.89504 -3.60719,-4.30912 -7.40362,-8.71108 -10.96491,-13.15124 3.95683,-4.0789 8.65213,-7.53068 14.0547,-11.08125 6.45225,5.77043 13.81507,11.3717 20.26005,16.69432 0.65117,1.2956 3.12055,1.31383 2.61826,-0.26813 -2.03425,-2.10032 -4.83408,-3.7978 -7.15039,-5.92848 -4.52382,-3.87831 -9.66906,-7.46184 -13.96077,-11.53202 5.16239,-3.09313 11.84188,-5.13545 18.74776,-6.76304 3.85674,3.26747 7.7382,6.69081 11.76248,9.46047 1.6011,0.34988 1.79608,-1.76154 0.3273,-2.19876 -2.57386,-2.45641 -8.32084,-5.82895 -8.77494,-8.0314 3.12917,-0.95704 8.18149,-1.01634 8.40355,-4.5825 -0.37488,-1.40014 -2.69714,-0.8054 -2.61453,0.46049 -3.82552,2.36921 -10.07918,3.43571 -12.3285,-1.30957 -2.54092,-3.24717 -7.9436,-7.84847 -7.06875,-10.64492 5.21722,-0.9936 11.88712,-5.87365 16.23629,-4.23813 2.70371,2.32158 5.56219,4.98556 9.07835,6.35485 1.51548,-0.0256 1.41465,-1.94791 0.04,-2.17202 -2.16604,-1.69111 -8.17021,-4.63132 -6.73621,-6.39877 5.37426,-1.99103 10.61834,-3.64048 14.84428,-6.06729 0.75761,-1.04675 -0.83812,-2.15324 -1.70664,-1.2618 -4.67622,2.22214 -10.0595,4.16989 -15.78632,6.154 -3.37906,-3.58345 -5.26601,-7.88213 -6.42444,-12.26549 -1.10446,-1.02122 -2.81436,0.82433 -1.84407,1.80103 0.0276,4.16235 5.28427,8.84382 4.91352,11.63135 -4.88924,1.05967 -11.27482,5.10277 -15.21653,4.34985 -1.83211,-3.6575 -5.74994,-8.48339 -5.07641,-11.6048 1.797,-0.76978 4.90318,-0.004 6.06654,-1.80776 0.38569,-1.37236 -1.75306,-1.2317 -2.74312,-0.73694 -6.91223,3.11292 -5.59591,-4.48412 -6.66716,-8.11738 0.0762,-0.99513 0.0415,-3.79019 -1.8284,-2.62805 -1.39751,2.11149 0.39492,4.55045 0.24701,6.6439 2.2e-4,2.46275 3.22187,6.30766 -1.74356,6.03175 -5.18242,0.99909 -10.01344,2.60134 -14.33403,4.81845 -2.36233,-8.47121 -2.98699,-17.6324 -4.53338,-27.27874 -0.17165,-0.23909 -0.45817,-0.38448 -0.75428,-0.38366 z m 23.2891,24.04174 c 0.99753,4.32025 5.00316,9.08841 5.70793,12.8362 -6.20981,2.28101 -11.87785,4.79478 -16.72591,7.56386 -2.82362,-5.04116 -5.07225,-9.89944 -6.46665,-15.03001 5.14818,-2.78362 11.09558,-4.21301 17.48463,-5.37005 z m -19.24116,6.24917 c 1.41171,5.17338 3.67231,10.06813 6.51575,15.14998 -5.11838,2.9995 -9.29654,6.31627 -13.18888,9.61015 -3.10879,-5.28794 -5.58398,-10.54083 -7.14478,-16.17249 4.02192,-3.4762 8.66579,-6.05661 13.81791,-8.58764 z m 26.65536,8.07191 c 3.04184,4.73885 6.8522,9.48784 11.68825,13.76333 -6.97324,1.68051 -13.52666,3.95853 -18.65235,7.09328 -4.31161,-4.1593 -7.76562,-8.61279 -10.47691,-13.05977 5.02551,-2.8655 10.95275,-5.454 17.44101,-7.79684 z m -19.15074,8.79576 c 2.71097,4.45923 6.15225,8.92947 10.4445,13.10558 -5.28025,3.47328 -9.83453,6.87441 -13.67201,10.87157 -3.76222,-4.75561 -7.10253,-9.58431 -9.93015,-14.33865 3.87732,-3.30283 8.03195,-6.64667 13.15766,-9.6385 z" id="path4299" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"></path>
+    <path style="fill:none;fill-rule:evenodd;stroke:#284021;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 179.0704,346.52474 c 0,0 -11.43002,3.15686 -17.14503,4.73529 -5.82975,1.61012 -12.14958,0.27429 -18.13648,-0.59199 -1.8079,-0.2616 -3.08752,-2.03595 -4.61705,-3.04941 -0.59635,-0.39514 -1.1606,-0.83672 -1.73938,-1.25718" id="path4370" inkscape:connector-curvature="0" sodipodi:nodetypes="csssc"></path>
+    <path style="fill:none;fill-rule:evenodd;stroke:#284021;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 79.89878,483.60298 c 0,0 38.1093,20.71178 53.34283,10.8533 10.80085,-6.98984 18.7414,-23.7232 20.32107,-31.17438 1.24036,-5.85068 -10.37177,-9.32881 -9.46777,-15.24081 0.44548,-2.91334 7.15045,-2.86097 6.69672,-5.77303 -0.6053,-3.88482 -10.68109,-0.69051 -10.85331,-4.61843 -0.22928,-5.22919 11.91602,-2.52776 13.85528,-7.38948 2.25459,-5.65224 -7.98112,-11.64853 -5.77303,-17.3191 3.80069,-9.7605 17.07718,-14.0155 27.47964,-15.24081 26.18895,-3.08481 76.20404,21.24477 76.20404,21.24477" id="path4401" inkscape:connector-curvature="0" sodipodi:nodetypes="cssssssssc"></path>
+    <path style="fill:#84a67a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 123.89949,380.10579 c -10.00347,0.25009 -19.08617,7.87848 -25.86319,15.24081 -3.35749,3.64747 -5.60248,4.74582 -6.4658,13.39344 5.01052,-4.8443 11.3537,-10.5103 18.01186,-14.31712 7.44585,-4.25718 23.52146,-0.67415 24.01582,-9.23686 0.21035,-3.64349 -6.05027,-5.17148 -9.69869,-5.08027 z" id="path4432" inkscape:connector-curvature="0" sodipodi:nodetypes="sscsss"></path>
+    <path sodipodi:nodetypes="sscsss" inkscape:connector-curvature="0" id="path4434" d="m 114.34871,403.12776 c -6.46718,0.16168 -12.3391,5.09339 -16.7204,9.85309 -2.1706,2.35807 -3.62197,3.06815 -4.1801,8.65878 3.23927,-3.13181 7.3401,-6.79484 11.64456,-9.25593 4.8137,-2.75224 15.20649,-0.43583 15.52609,-5.97158 0.13599,-2.35549 -3.91147,-3.34333 -6.27015,-3.28436 z" style="fill:#84a67a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"></path>
+    <path style="fill:#84a67a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 105.38167,422.91841 c -3.59149,0.0898 -6.8524,2.82857 -9.28552,5.47183 -1.20542,1.30953 -2.01142,1.70387 -2.32138,4.80857 1.7989,-1.73922 4.07626,-3.77345 6.4667,-5.14019 2.67325,-1.52844 8.44479,-0.24204 8.62227,-3.31627 0.0755,-1.3081 -2.1722,-1.85668 -3.48207,-1.82394 z" id="path4436" inkscape:connector-curvature="0" sodipodi:nodetypes="sscsss"></path>
+    <path sodipodi:nodetypes="sscsss" inkscape:connector-curvature="0" id="path4438" d="m 142.52403,559.90569 c 12.80144,-0.20087 24.42458,-6.32787 33.09713,-12.24118 4.29658,-2.92959 7.16949,-3.81177 8.27428,-10.7574 -6.41196,3.89087 -14.52933,8.44171 -23.04978,11.49928 -9.52845,3.4193 -30.10041,0.54147 -30.73304,7.4189 -0.26919,2.9264 7.74253,4.15365 12.41141,4.0804 z" style="fill:#84a67a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"></path>
+    <path style="fill:#84a67a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 154.74617,541.41481 c 8.27605,-0.12986 15.79034,-4.09093 21.39709,-7.91385 2.77772,-1.89396 4.63504,-2.46429 5.34928,-6.95459 -4.1453,2.51542 -9.39313,5.4575 -14.90155,7.43421 -6.16009,2.21056 -19.45974,0.35005 -19.86874,4.79628 -0.17402,1.89189 5.00551,2.68531 8.02392,2.63795 z" id="path4440" inkscape:connector-curvature="0" sodipodi:nodetypes="sscsss"></path>
+    <path sodipodi:nodetypes="sscsss" inkscape:connector-curvature="0" id="path4442" d="m 166.22129,525.51927 c 4.59603,-0.0721 8.76902,-2.27186 11.88268,-4.39489 1.54258,-1.05179 2.57401,-1.36852 2.97067,-3.86216 -2.30205,1.39691 -5.21639,3.03077 -8.27544,4.12852 -3.42096,1.22761 -10.8068,0.1944 -11.03392,2.66357 -0.0966,1.05065 2.77977,1.49126 4.45601,1.46496 z" style="fill:#84a67a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"></path>
+  </g>
+  <g inkscape:groupmode="layer" id="layer6" inkscape:label="gopher-hands-back" style="display:inline" transform="translate(0.2136505,-223.25895)">
+    <g style="display:inline;opacity:1" transform="matrix(-0.4942271,-0.07737775,-0.02724163,0.69122313,709.62053,127.13426)" id="g4537">
+      <path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e1d6b9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 419.84023,584.57289 c -1.11092,4.23495 -3.11543,7.14238 -5.84936,9.02308 -2.73394,1.8807 -6.19236,2.76095 -10.13743,3.23943 -3.94504,0.47846 -8.37351,0.59759 -13.05363,0.66122 -4.6801,0.0636 -9.60653,0.0259 -14.5852,-0.15006 -4.97865,-0.17599 -9.67742,-0.66266 -13.94891,-1.44453 -4.27148,-0.78187 -8.12262,-1.83504 -11.28827,-3.15781 -3.16564,-1.32277 -5.63542,-2.92368 -7.07427,-4.89074 -1.43884,-1.96709 -1.83785,-4.30021 -0.94134,-7.07932 0.89648,-2.77911 2.64686,-4.65171 5.05838,-5.71202 2.41152,-1.06032 5.47772,-1.29847 8.97039,-1.04717 3.49268,0.25132 7.40119,0.98198 11.60615,1.60695 4.20496,0.62498 8.71575,1.10136 13.55734,0.95747 4.84159,-0.14387 9.82241,-1.20624 14.59946,-2.18657 4.77703,-0.9803 9.35663,-1.80521 13.2055,-1.76209 3.8489,0.0431 6.93814,0.92314 8.72484,2.84805 1.78673,1.92488 0.0493,13.32997 1.15633,9.09414 z" id="path4539" inkscape:connector-curvature="0" sodipodi:nodetypes="cssssssssssssssssc"></path>
+      <path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#394655;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 411.66722,570.50504 c -3.64483,-0.3204 -7.91192,0.0353 -12.44327,0.67313 -5.17866,0.72899 -10.69026,1.78243 -16.25596,1.96339 -5.56571,0.181 -10.75654,-0.27799 -15.6406,-0.87383 -4.8841,-0.59575 -9.46828,-1.26261 -13.59381,-1.35067 -4.12552,-0.0881 -7.77812,0.41271 -10.6665,1.77043 -2.88834,1.35772 -5.00621,3.55109 -6.11385,6.60546 -1.10762,3.05438 -0.68341,5.7953 0.96623,8.19507 1.64966,2.39979 4.51594,4.46252 8.19691,6.21125 3.681,1.74874 8.16283,3.1933 13.12136,4.28264 4.95854,1.08935 10.4013,1.79657 16.15733,2.05756 5.756,0.26106 11.2421,0.29972 16.33832,0.21929 5.09618,-0.0804 9.79866,-0.25121 13.94009,-0.87517 1.57579,-0.23741 3.06793,-0.55279 4.47088,-0.96129 2.8331,-0.82603 3.60613,-5.66983 1.06694,-4.35369 -2.35253,1.21937 -5.13009,1.88834 -8.23473,2.27934 -3.78352,0.47652 -8.03435,0.60519 -12.52976,0.67623 -4.49538,0.071 -9.22983,0.0403 -14.01368,-0.12137 -4.78387,-0.16172 -9.29761,-0.62006 -13.39935,-1.36274 -4.10176,-0.74271 -7.79879,-1.74643 -10.8363,-3.01023 -3.03748,-1.2638 -5.40588,-2.79646 -6.78423,-4.6796 -1.37835,-1.88316 -1.75885,-4.11616 -0.89417,-6.78092 0.86467,-2.66475 2.54876,-4.4645 4.86314,-5.48862 2.31437,-1.0241 5.2526,-1.265 8.60072,-1.03925 3.34811,0.22576 7.09649,0.90864 11.13305,1.49473 4.03653,0.5862 8.37113,1.03632 13.02879,0.89877 4.65766,-0.13756 9.45383,-1.14909 14.04535,-2.09377 4.59152,-0.94468 8.9823,-1.75345 12.66755,-1.73592 0.46066,0.002 0.91144,0.0161 1.3482,0.0436 1.1223,0.0708 2.1698,0.20509 3.10067,0.47739 1.0735,0.314 2.95461,-2.6047 -0.11758,-2.94357 -0.49859,-0.055 -1.54942,0.19872 -1.52174,-0.17766 z" id="path4541" inkscape:connector-curvature="0" sodipodi:nodetypes="csscsscssssssssssssssssssssccsssc"></path>
+    </g>
+    <g style="display:inline;opacity:1" transform="matrix(-0.5203751,-0.25647968,0.43551178,-0.67374552,392.88999,1121.6994)" id="g4310">
+      <path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e1d6b9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 390.5476,587.64041 c 0.44678,4.1633 0.2483,6.97762 -1.39584,8.82751 -1.64416,1.84988 -4.62934,2.69163 -7.96344,3.01121 -3.3341,0.31956 -6.78742,0.20751 -10.43127,0.0466 -3.64386,-0.16089 -7.77138,-0.43309 -13.73045,-0.62621 -5.95908,-0.19314 -6.76507,-0.27364 -13.45739,-1.01156 -6.69233,-0.73793 -12.46098,-1.67074 -17.23812,-2.84671 -4.77712,-1.17599 -8.60795,-2.62714 -11.42703,-4.6092 -2.8191,-1.9821 -4.67583,-4.51455 -4.74259,-7.659 -0.0668,-3.14443 1.69438,-5.35531 4.42628,-6.76226 2.73188,-1.40696 6.46838,-1.99259 11.12828,-1.94902 4.65989,0.0436 10.28788,0.73953 17.00198,1.52237 6.7141,0.78282 9.99159,1.44684 14.32925,2.06838 4.33767,0.62148 6.59166,0.58419 9.37726,0.34168 2.7856,-0.24249 6.97984,-0.85997 11.07687,-1.03845 4.09707,-0.1785 7.398,0.26465 9.51073,1.94634 2.11273,1.68168 4.13881,14.29449 3.53549,8.73831 z" id="path4312" inkscape:connector-curvature="0" sodipodi:nodetypes="cssssssssssssssssc"></path>
+      <path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#394655;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 379.74806,574.61964 c -3.7255,-0.0104 -8.156,0.46357 -11.34576,0.6367 -3.64543,0.19787 -5.7237,0.0818 -10.25711,-0.66752 -4.53342,-0.74928 -9.23953,-1.51395 -16.79845,-2.21883 -7.55899,-0.70479 -13.8624,-1.21976 -19.09214,-0.9514 -5.22972,0.26836 -9.4293,1.28867 -12.48396,3.13932 -3.05465,1.85065 -4.98351,4.50609 -4.99458,7.97008 -0.0111,3.46398 1.94186,6.36871 5.01922,8.71211 3.07737,2.3434 7.33399,4.14612 12.72055,5.63486 5.38659,1.48875 11.95685,2.70329 19.58252,3.65828 7.62567,0.95498 9.52067,1.18964 16.45144,1.3449 6.93071,0.15494 11.39907,0.36591 15.51303,0.43536 4.11394,0.0694 8.19008,0.0446 11.83953,-0.53107 1.38859,-0.21905 2.6771,-0.52951 3.82248,-0.94544 2.31321,-0.84 -1.80318,-5.03143 -3.50862,-3.78905 -1.58008,1.15104 -3.95262,1.07888 -6.51143,1.28509 -3.1183,0.2513 -6.63795,-0.15781 -9.88196,-0.36787 -3.244,-0.21007 -6.33743,0.54607 -11.28994,0.35229 -4.95253,-0.1938 -4.50307,-0.18604 -10.81422,-0.88955 -6.31119,-0.70356 -11.97887,-1.65368 -16.7372,-2.82741 -4.75832,-1.17373 -8.6273,-2.59835 -11.39788,-4.46372 -2.77059,-1.8654 -4.47102,-4.18857 -4.50881,-6.96205 -0.0378,-2.77346 1.59267,-4.64116 4.16755,-5.70647 2.57487,-1.06529 7.34392,0.0153 11.7728,0.33011 4.42887,0.31478 10.40743,0.56801 16.58012,1.26344 6.17266,0.69546 5.51632,0.34538 9.47716,0.50035 3.96082,0.155 6.26097,-0.40983 8.90704,-0.91508 2.64606,-0.50525 6.41292,-1.03108 10.26146,-1.15308 0.48105,-0.0152 0.95871,-0.0235 1.42505,-0.0212 1.19834,0.006 2.34164,0.0529 3.35512,0.23827 1.16874,0.21379 3.42338,-3.02702 0.2795,-3.05437 -0.51026,-0.004 -1.68503,0.34589 -1.55254,-0.037 z" id="path4314" inkscape:connector-curvature="0" sodipodi:nodetypes="csscsscssssssssssssssssssssccsssc"></path>
+    </g>
+  </g>
+  <g inkscape:groupmode="layer" id="layer5" inkscape:label="gopher-body" style="display:inline;opacity:1" transform="translate(0.2136505,-223.25895)">
+    <g style="display:inline" id="g4533-2" transform="matrix(-0.60102903,0.32221978,0.53870829,0.77401445,526.12645,47.501077)"></g>
+    <g style="opacity:1" transform="matrix(-0.31301987,0.12521187,0.15462195,0.2747298,135.58587,242.35484)" id="g4404">
+      <path sodipodi:nodetypes="sssssssssssssssss" inkscape:connector-curvature="0" id="path4406" d="m -626.54672,402.3529 c 2.22767,10.86299 0.34493,21.82632 -3.86747,31.42527 -4.21252,9.59894 -10.55173,17.86115 -17.72096,24.29983 -7.1694,6.43883 -15.25476,11.10591 -24.5716,13.61353 -9.31698,2.50761 -20.94966,4.46936 -31.63903,1.98398 -10.68939,-2.48537 -18.0688,-9.22838 -24.09401,-15.89285 -6.02508,-6.66442 -12.35923,-14.47524 -22.96531,-22.06805 -10.60584,-7.59266 -20.8648,-15.59839 -25.16123,-23.3775 -4.29632,-7.77931 -7.008,-15.66934 -7.81517,-23.39095 -0.80717,-7.7215 0.35908,-14.55922 3.12288,-20.54462 2.76393,-5.98548 7.12557,-11.1208 12.7854,-15.40902 5.65998,-4.28811 12.61751,-7.73606 20.64204,-10.24271 8.02465,-2.50651 17.11262,-4.07552 27.13941,-4.41504 10.0268,-0.3395 20.06604,0.59388 29.76158,2.87504 9.69543,2.2813 19.05511,5.92037 27.47739,11.02309 8.42215,5.10286 15.89307,11.69212 21.60465,19.6287 5.71147,7.93674 13.0738,19.62846 15.30143,30.4913 z" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#96d6ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"></path>
+      <path sodipodi:nodetypes="csssccscsccscscccsccscsssscscscc" inkscape:connector-curvature="0" id="path4408" d="m -784.21409,457.33922 c -0.56136,0.0656 -1.08141,0.1809 -1.55606,0.33615 -0.63289,0.20699 -1.18396,0.48516 -1.6349,0.82686 -0.45093,0.3417 -0.80184,0.74659 -1.02778,1.21891 -0.22595,0.47234 -0.32669,1.01119 -0.27449,1.62035 0.0522,0.60917 0.25282,1.23371 0.57968,1.84938 0.32687,0.61567 0.98957,1.25218 1.83531,1.84156 0.84574,0.58937 1.35671,1.20529 1.82543,1.72857 0.46713,0.52147 1.13451,0.85371 2.02424,0.92674 0.10253,0.008 0.12328,-0.30471 0.0344,-0.32876 -0.78083,-0.20262 -1.25826,-0.72023 -1.71877,-1.11076 -0.4254,-0.46645 -0.87231,-1.01406 -1.62104,-1.54604 -0.74871,-0.53197 -1.47289,-1.09304 -1.77689,-1.63886 -0.30398,-0.54584 -0.49685,-1.10009 -0.55469,-1.64239 -0.0579,-0.54231 0.0245,-1.0222 0.21918,-1.44322 0.19469,-0.42103 0.50198,-0.78371 0.90168,-1.08623 0.39973,-0.30252 0.89062,-0.54587 1.4577,-0.7237 0.28355,-0.0889 0.5872,-0.16119 0.90722,-0.21465 0.32002,-0.0535 0.6576,-0.0885 1.01178,-0.10163 0.70839,-0.0255 1.4163,0.0392 2.10043,0.1987 0.68412,0.15947 1.34499,0.41522 1.93838,0.77329 0.59338,0.35806 1.11885,0.81986 1.52108,1.37653 0.40222,0.55667 0.92117,1.37523 1.07925,2.13677 0.12981,0.62539 0.0734,1.25844 -0.13288,1.83379 -0.0385,0.10712 0.4977,0.29416 0.62787,-0.0111 0.24265,-0.5698 0.23445,-1.24057 0.1026,-1.8741 -0.17834,-0.85666 -0.69031,-1.76937 -1.13671,-2.40019 -0.4464,-0.6308 -1.03123,-1.15292 -1.68895,-1.55276 -0.65772,-0.39984 -1.38674,-0.68003 -2.14271,-0.85021 -0.75599,-0.17016 -1.54036,-0.23166 -2.32498,-0.19142 -0.19617,0.0101 -0.38815,0.0268 -0.57528,0.0484 z" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#394655;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" transform="matrix(13.851095,0,0,13.851095,10133.213,-6001.611)"></path>
+      <path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#394655;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m -753.77185,413.0219 c -0.13663,-2.61847 2.18018,-4.94804 7.2193,-6.20054 7.65443,-1.90257 20.03831,1.84566 27.93811,5.67152 4.33357,2.09883 8.88981,3.89076 12.66635,7.19411 1.28185,1.12133 2.51799,2.28349 3.36855,4.40869 -1.65849,0.577 -4.10492,-0.92134 -5.87278,-2.13046 -6.96771,-4.76531 -14.69502,-8.08983 -22.67695,-9.12646 -6.71591,-0.87187 -8.86923,-3.11022 -14.75541,-2.56175 -3.72583,0.34716 -4.90626,2.13878 -7.88716,2.74489 z" id="path4365-1-2" inkscape:connector-curvature="0" sodipodi:nodetypes="cssscsssc"></path>
+      <path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#394655;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m -720.16989,411.68353 c 0.28532,-2.32502 0.86962,3.90377 -0.31886,5.45995 -4.46007,5.84 -8.20289,12.32072 -12.42083,18.36519 -1.37385,1.96787 -3.29463,0.0414 -2.42738,-2.09874 0.88118,-2.1739 2.06053,-3.99898 3.34915,-5.8153 1.20809,-1.70147 2.81353,-3.0576 3.88834,-4.85958 2.06619,-3.46267 2.39577,-6.62873 4.25443,-10.2393 0.63712,-1.23818 3.5225,0.42546 3.67386,-0.80905 z" id="path4367-9-2" inkscape:connector-curvature="0" sodipodi:nodetypes="sssssssss"></path>
+    </g>
+    <path style="display:inline;fill:#394655;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 224.72519,356.48517 c 5.65909,-27.53036 33.02677,-44.23325 69.85376,-60.74241 42.08876,-18.86796 81.63622,-27.89936 115.41057,-24.29696 20.18982,2.15346 40.27193,7.9975 57.70529,23.28458 19.98642,17.52583 32.96943,43.84698 38.4702,69.85377 13.7384,64.95303 6.42826,136.38605 -17.21035,198.4252 -12.44798,32.66952 -27.41547,65.47662 -55.68055,86.05174 -34.59762,25.18478 -78.69175,41.65883 -121.48481,41.50732 -43.97036,-0.15567 -101.27982,-6.20618 -124.52194,-43.53206 -11.85887,-19.04487 -1.53519,-46.5553 8.09899,-66.81665 18.45001,-38.80167 27.71621,-55.22022 32.39595,-93.13836 7.78272,-63.06041 -11.19778,-90.89617 -3.03711,-130.59617 z" id="path6418" inkscape:connector-curvature="0" sodipodi:nodetypes="ssssssssssss"></path>
+    <path style="display:inline;fill:#96d6ff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 399.0618,276.3076 c -29.45313,-0.34289 -63.89561,8.2356 -100.59264,24.52255 -18.47399,8.19916 -34.21876,16.39894 -45.60421,25.38701 -11.38544,8.98809 -18.30567,18.35325 -20.84434,29.95346 -4.012,18.33242 -1.73822,34.03137 0.89243,54.16278 2.63067,20.13142 5.46428,44.34979 1.65154,77.65379 -4.57109,39.92809 -14.19142,58.64285 -31.91968,98.07043 -4.52268,10.05838 -9.04209,21.69015 -10.97871,32.48786 -1.93662,10.79771 -1.28063,20.25458 3.20117,27.51827 10.22186,16.56663 28.18151,26.7919 49.73014,32.84749 21.54864,6.05559 46.24841,7.70754 67.89854,7.75063 40.7425,0.0811 83.60315,-16.2926 117.17209,-41.32776 26.25843,-19.58313 40.97688,-51.4709 53.51778,-84.66595 23.51228,-62.2357 31.0031,-133.77446 17.75484,-197.22285 -5.14905,-24.65976 -17.57475,-49.43698 -35.93066,-65.34836 -15.95818,-13.83295 -34.21471,-19.10071 -53.63095,-21.09938 -4.00219,-0.41198 -8.10915,-0.64097 -12.31734,-0.68997 z" id="path6432" inkscape:connector-curvature="0" sodipodi:nodetypes="sssssssssssssssss"></path>
+    <g id="g4376" transform="matrix(-0.28193437,0.25405386,0.25405386,0.28193437,22.377366,351.55502)" style="display:inline;opacity:1">
+      <path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#96d6ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m -626.57295,401.69566 c 2.24713,11.35067 0.36741,22.38948 -3.843,32.03835 -4.21053,9.64886 -10.54997,17.90531 -17.7192,24.34399 -7.1694,6.43883 -15.25457,11.1106 -24.57171,13.61082 -9.31727,2.5002 -20.94956,4.47176 -31.64526,1.82793 -10.69571,-2.64383 -18.09209,-9.81214 -24.14818,-17.25062 -6.05597,-7.43843 -12.44269,-16.56671 -23.09665,-25.35944 -10.65372,-8.79255 -20.95218,-17.78817 -25.30072,-26.87318 -4.34843,-9.08528 -7.1154,-18.36084 -7.98,-27.52156 -0.86459,-9.1606 0.24716,-17.36404 2.9617,-24.58398 2.71467,-7.22004 7.03243,-13.45488 12.66059,-18.5369 5.6283,-5.08191 12.56665,-9.01064 20.59229,-11.48936 8.02576,-2.47858 17.13537,-3.50537 27.20916,-2.66707 10.0738,0.83832 20.1809,3.47234 29.95223,7.6529 9.77122,4.18068 19.21426,9.9086 27.71179,16.89733 8.49741,6.98886 16.03465,15.24007 21.79567,24.41557 5.7609,9.17565 13.1742,22.14471 15.42129,33.49522 z" id="path4398" inkscape:connector-curvature="0" sodipodi:nodetypes="sssssssssssssssss"></path>
+      <path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#394655;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m -784.27135,455.90422 c -0.56339,0.0147 -1.08437,0.10666 -1.55902,0.26191 -0.63289,0.20699 -1.18231,0.52669 -1.63059,0.93484 -0.44828,0.40815 -0.79558,0.90361 -1.01756,1.4752 -0.22199,0.5716 -0.31844,1.21792 -0.26185,1.93717 0.0566,0.71926 0.26134,1.4471 0.59196,2.157 0.33063,0.7099 0.99621,1.41858 1.84494,2.08284 1.2491,0.99805 1.4931,1.42738 1.56744,1.03929 0.0543,-0.2836 -0.0455,-0.69628 -1.02638,-1.44959 -0.75217,-0.61879 -1.47924,-1.25213 -1.78697,-1.89162 -0.30772,-0.63951 -0.50455,-1.29287 -0.56648,-1.9378 -0.062,-0.64492 0.0165,-1.22191 0.20772,-1.73042 0.1912,-0.50852 0.49539,-0.94884 0.89287,-1.30706 0.3975,-0.35822 0.88707,-0.63484 1.45426,-0.80994 0.2836,-0.0875 0.58767,-0.1494 0.90851,-0.1822 0.32084,-0.0328 0.65966,-0.0369 1.01552,-0.008 0.71174,0.0585 1.42446,0.24383 2.11396,0.53794 0.6895,0.29412 1.35628,0.69807 1.95502,1.19025 0.59873,0.49218 1.12894,1.07271 1.53474,1.71893 0.4058,0.64623 0.9285,1.5589 1.08808,2.35795 0.13104,0.65619 0.075,1.29927 -0.13103,1.88026 -0.0384,0.10817 0.49808,0.30362 0.62824,-0.002 0.24262,-0.57052 0.23429,-1.24452 0.10166,-1.89748 -0.17938,-0.88293 -0.69436,-1.871 -1.14416,-2.58711 -0.44981,-0.71609 -1.03943,-1.35821 -1.70275,-1.89855 -0.66333,-0.54034 -1.3987,-0.97968 -2.16052,-1.29649 -0.76184,-0.31679 -1.55154,-0.51173 -2.33984,-0.56369 -0.19709,-0.013 -0.38986,-0.0163 -0.57767,-0.0116 z" id="path4369" inkscape:connector-curvature="0" sodipodi:nodetypes="cssscccsccscccsccscsssscscscc" transform="matrix(13.851095,0,0,13.851095,10133.213,-6001.611)"></path>
+      <path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#394655;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m -730.27274,382.91266 c 1.8068,-2.76405 6.31309,-3.63001 13.24575,-1.6171 10.53068,3.05761 22.43414,14.97755 28.94834,24.04709 3.57338,4.97534 7.6424,9.78266 9.64772,15.62449 0.68055,1.98294 1.27611,3.97774 0.68898,6.70435 -2.4056,-0.49416 -4.1871,-3.62313 -5.37952,-6.01329 -4.69962,-9.4202 -11.38574,-17.86492 -20.09536,-24.13889 -7.3284,-5.27852 -8.20487,-8.9719 -15.61502,-12.25742 -4.69053,-2.07967 -7.44128,-1.02076 -11.44089,-2.34923 z" id="path4365-1" inkscape:connector-curvature="0" sodipodi:nodetypes="cssscsssc"></path>
+      <path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#394655;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m -689.31909,403.49962 c 2.08771,-2.1886 -1.9021,4.5559 -4.48533,5.36905 -9.69439,3.05157 -19.01784,7.22624 -28.57811,10.64488 -3.11327,1.11257 -3.94795,-2.11026 -1.30738,-3.72982 2.68251,-1.64492 5.45711,-2.73872 8.35507,-3.75217 2.71578,-0.94874 5.64428,-1.2851 8.27731,-2.4236 5.06052,-2.18718 7.83343,-5.20599 12.75841,-7.67984 1.68866,-0.84854 3.86766,2.73608 4.97603,1.5739 z" id="path4367-9" inkscape:connector-curvature="0" sodipodi:nodetypes="sssssssss"></path>
+    </g>
+  </g>
+  <g inkscape:groupmode="layer" id="layer10" inkscape:label="gopher-body-shadow" style="display:inline;opacity:0.07000002">
+    <path style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 346.60547,29.654297 c -0.51194,0.002 -1.02971,0.02656 -1.55274,0.07617 -12.43668,-0.0081 -21.35252,11.35724 -25.40625,22.003906 -4.27309,12.12527 -3.58757,26.651396 3.49024,37.587891 1.41914,2.510347 4.82593,3.785039 5.86133,6.28125 -1.73355,2.958854 -4.8945,-0.955695 -6.35938,-2.265625 -2.95499,-2.549006 -4.72158,-6.267193 -5.94922,-9.751953 -1.06202,0.220482 -2.43072,0.526087 -3.39648,1.203124 0.0302,-0.05726 0.068,-0.124964 0.0976,-0.18164 -15.48254,7.275829 -33.36647,17.26135 -43.4414,25.21485 -12.14447,9.58729 -19.52451,19.57566 -22.23242,31.94921 -4.27947,19.55459 -1.85486,36.30189 0.95117,57.7754 2.80605,21.47351 5.83059,47.30581 1.76367,82.83007 -4.87583,42.58997 -15.13868,62.55134 -34.04883,104.60743 -4.82419,10.72893 -9.64521,23.13673 -11.71093,34.65429 -2.06573,11.51756 -1.36458,21.60363 3.41601,29.35156 10.90332,17.67108 30.05776,28.57977 53.04297,35.03907 22.98522,6.45929 49.33231,8.22161 72.42578,8.26758 43.45867,0.0865 89.1775,-17.37982 124.98438,-44.08399 4.90276,-3.6564 9.41907,-7.72135 13.62109,-12.11914 -57.60249,23.36732 -102.22932,28.04629 -126.86719,26.24219 -51.07809,-3.74021 -65.14337,-33.97388 -63.75,-66.02149 1.39338,-32.0476 16.16153,-26.43309 21.6211,-112.65234 4.19271,-66.21281 -15.07502,-69.4871 -13.68164,-143.33594 0.33187,-17.58907 6.91896,-32.55065 18.1914,-42.839844 4.202,-3.835477 15.55202,-5.167037 18.32422,-3.08789 4,2.999999 7.75,0.750004 13.25,-1 5.5,-1.749995 -2.43367,-7.341444 -5,-10.5 -3.25,-3.999999 -6.875,-9.750007 -8.625,-20 -1.31128,-7.680376 9.54413,-26.934701 26.33008,-34.373047 -1.69037,-0.561665 -3.4787,-0.878304 -5.34961,-0.871094 z" transform="scale(0.93749996)" id="path4449" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccssscssssscsssssscssccc"></path>
+    <path style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.6875;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 332.5267,288.73166 c -11.90688,18.40154 -11.4739,40.48339 -7.7936,48.27698 3.68031,7.7936 17.53559,8.22657 18.61804,5.62871 1.08244,-2.59786 2.25295,-6.49331 0.0881,-17.10126 -2.16489,-10.60795 -6.36625,-19.26885 -4.85082,-23.81511 1.51542,-4.54626 -6.06169,-12.98932 -6.06169,-12.98932 z" id="path4656" inkscape:connector-curvature="0" sodipodi:nodetypes="cscscc"></path>
+    <path style="display:inline;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.625;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 448.34961,21.550781 c -4.02689,0.703366 -7.95008,2.045342 -11.61523,3.832031 -6.27892,3.132832 -12.1157,7.924285 -14.92969,14.50586 -1.31617,3.124555 -1.71832,6.554975 -1.84961,9.916016 -0.24619,0.855405 0.43406,1.405951 1.25,1.175781 9.66899,0.07919 19.35044,0.879463 28.85547,2.716797 1.72781,0.324136 3.45156,0.699908 5.16992,1.101562 -6.17471,-2.551292 -20.88179,-3.268271 -21.34442,-10.956244 -0.42959,-7.138885 2.04672,-10.317548 6.97992,-15.826465 1.84335,-2.058467 4.30723,-4.213563 7.48364,-6.465338 z" id="path4728" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccssc" transform="scale(0.93749996)"></path>
+    <path style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.6875;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 481.60599,227.17563 c -4.1432,2.07161 -7.82748,7.70566 -7.8721,11.18665 -0.0828,6.4634 4.47467,9.19791 5.96623,9.61223 1.49155,0.41432 4.8061,0.0829 4.88898,1.90588 0.0829,1.82301 0.2486,11.10378 0.49719,12.76106 0.2486,1.65729 0.24859,3.2317 5.55188,2.90024 5.30331,-0.33146 10.44088,-1.65727 11.10379,-2.23732 0.66291,-0.58005 2.15447,-1.90587 2.65165,-4.14321 0.49719,-2.23732 1.82301,-14.08689 -2.0716,-18.2301 -3.89461,-4.14319 -7.20917,-5.71761 -10.02655,-8.12067 -2.81738,-2.40306 -10.68947,-5.63476 -10.68947,-5.63476 z" id="path4734" inkscape:connector-curvature="0" sodipodi:nodetypes="cssssssccsc"></path>
+  </g>
+  <g inkscape:groupmode="layer" id="layer1" inkscape:label="gopher-limbs" style="display:inline">
+    <g id="g4634" transform="matrix(0.1632235,-0.55671372,0.73857292,0.31323083,-244.27408,478.35885)" style="display:inline;opacity:1">
+      <path sodipodi:nodetypes="cssssssssssssssssc" inkscape:connector-curvature="0" id="path4636" d="m 381.04304,586.68302 c 0.38208,4.15678 0.1952,6.97227 -1.27391,8.83979 -1.46913,1.86751 -4.12728,2.74221 -7.09384,3.09881 -2.96656,0.35658 -6.03758,0.28304 -9.27787,0.16278 -3.2403,-0.12024 -6.91037,-0.34636 -12.20972,-0.47303 -5.29937,-0.12669 -6.01593,-0.19818 -11.96545,-0.86128 -5.94953,-0.6631 -11.07681,-1.53131 -15.32133,-2.65363 -4.24451,-1.12234 -7.64636,-2.53028 -10.1464,-4.4802 -2.50006,-1.94997 -4.14215,-4.4608 -4.18998,-7.60334 -0.0479,-3.14252 1.52668,-5.3722 3.96164,-6.80906 2.43493,-1.43687 5.76037,-2.06391 9.90478,-2.07226 4.1444,-0.008 9.14745,0.62465 15.11617,1.33241 5.96873,0.70774 8.88133,1.335 12.73701,1.90799 3.85569,0.57294 5.86055,0.51055 8.33899,0.2371 2.47844,-0.27343 6.21111,-0.9374 9.85571,-1.16146 3.64464,-0.22407 6.5789,0.18215 8.45181,1.83968 1.87291,1.65752 3.62859,14.2431 3.1124,8.69569 z" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e1d6b9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"></path>
+      <path sodipodi:nodetypes="csscsscssssssssssssssssssssccsssc" inkscape:connector-curvature="0" id="path4638" d="m 371.48564,573.78737 c -3.31346,0.0311 -7.25574,0.55425 -10.09339,0.76285 -3.24302,0.23841 -5.09103,0.14553 -9.12034,-0.55301 -4.02933,-0.6985 -8.21219,-1.41047 -14.93259,-2.03088 -6.72047,-0.62033 -12.3249,-1.06489 -16.97728,-0.73838 -4.65236,0.32652 -8.39127,1.39323 -11.11492,3.27723 -2.72364,1.88399 -4.44895,4.55993 -4.47152,8.02276 -0.0226,3.46282 1.70371,6.34472 4.43214,8.65298 2.72844,2.30825 6.5077,4.06289 11.29311,5.49107 4.78542,1.4282 10.62463,2.5691 17.40348,3.43879 6.77885,0.86968 8.46343,1.08314 14.62717,1.16114 6.16368,0.0777 10.13712,0.2388 13.79587,0.26239 3.65873,0.0236 7.28419,-0.0466 10.53217,-0.66276 1.23583,-0.23443 2.38299,-0.55913 3.40323,-0.98767 2.06049,-0.86545 -1.58528,-5.00948 -3.10668,-3.74856 -1.40958,1.16822 -3.51948,1.12251 -5.79607,1.35715 -2.77438,0.28594 -5.90329,-0.0838 -8.78778,-0.25766 -2.88448,-0.17385 -5.63859,0.61647 -10.0427,0.47793 -4.40413,-0.13856 -4.0044,-0.13581 -9.61503,-0.76876 -5.61066,-0.63299 -10.64807,-1.51963 -14.87588,-2.63992 -4.22779,-1.12029 -7.66367,-2.50128 -10.12101,-4.3351 -2.45734,-1.83385 -3.96118,-4.13722 -3.9846,-6.90925 -0.0234,-2.77201 1.43359,-4.65718 3.72763,-5.75078 2.29404,-1.09358 6.53171,-0.0665 10.46966,0.19884 3.93793,0.26533 9.2544,0.45187 14.74191,1.07828 5.48748,0.62645 4.90501,0.28381 8.42726,0.3946 3.52223,0.11082 5.57009,-0.47942 7.92539,-1.01396 2.35529,-0.53454 5.70752,-1.10214 9.1309,-1.26696 0.42791,-0.0206 0.85278,-0.0342 1.26754,-0.0371 1.06579,-0.007 2.08248,0.0268 2.9832,0.20081 1.03871,0.20069 3.05592,-3.06404 0.25982,-3.05636 -0.45382,0.002 -1.49996,0.36454 -1.38071,-0.0197 z" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#394655;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"></path>
+    </g>
+  </g>
+  <g inkscape:groupmode="layer" id="layer2" inkscape:label="gopher-face" style="display:inline" transform="translate(0.2136505,-223.25895)">
+    <g style="display:inline;opacity:1" transform="matrix(-0.36191901,-0.40248153,-0.40248153,0.36191901,805.91872,444.90397)" id="g4822">
+      <path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#394655;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 533.18379,326.94121 c -7.49625,7.76497 -18.04079,13.97022 -29.03452,20.11756 -10.99374,6.14733 -22.39268,12.46068 -33.27977,19.73526 -10.88709,7.27457 -21.32128,15.48155 -31.11466,23.14487 -9.7934,7.66333 -18.95391,14.61972 -28.11508,18.72754 -9.16116,4.10783 -17.61453,4.90882 -25.40288,2.71307 -7.78834,-2.19575 -18.21395,-3.97833 -24.00367,-11.22142 -5.7897,-7.24307 -9.99974,-16.54131 -11.70344,-27.12224 -1.7037,-10.58093 -0.87312,-22.4511 3.03022,-34.89759 3.90333,-12.44649 10.47755,-24.28421 18.74715,-34.94845 8.26964,-10.66423 18.19893,-20.16016 28.79535,-28.0741 10.5964,-7.91393 26.27056,-15.76227 37.35395,-20.22987 11.08341,-4.46761 22.42644,-6.88798 34.19031,-6.63785 11.76388,0.25025 22.95731,3.17778 33.17376,8.10553 10.21647,4.92775 19.40463,11.83604 26.20684,19.74853 6.80223,7.91249 11.15067,16.82417 11.64573,25.6378 0.49511,8.81362 -2.99301,17.43637 -10.48929,25.20136 z" id="path4824" inkscape:connector-curvature="0" sodipodi:nodetypes="sssssssssssssssss"></path>
+      <path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 527.03465,324.76007 c -6.47089,7.28027 -15.60191,13.44657 -25.49433,19.52037 -9.89243,6.07379 -20.5263,12.19262 -31.00971,18.87854 -10.48341,6.68594 -20.84746,13.93744 -30.63587,20.64228 -9.78839,6.70482 -18.98478,12.74607 -27.85388,16.37423 -8.86913,3.62815 -16.71441,4.42671 -23.70344,2.56494 -6.98903,-1.86175 -16.65119,-3.15797 -21.47907,-9.58465 -4.82786,-6.42672 -8.1336,-14.7466 -9.15426,-24.24957 -1.02065,-9.50295 0.26938,-20.19061 4.30942,-31.40202 4.04003,-11.21143 10.41896,-21.87842 18.25213,-31.50677 7.83316,-9.62835 17.08996,-18.22534 26.89991,-25.42945 9.80998,-7.2041 24.57271,-14.57485 34.76303,-18.7042 10.19036,-4.12934 20.58209,-6.43877 31.27816,-6.37281 10.69606,0.066 20.78196,2.52517 29.88642,6.76267 9.10445,4.23748 17.18108,10.23582 23.09372,17.14125 5.91263,6.90544 9.60335,14.70659 9.9745,22.51856 0.37116,7.81196 -2.65587,15.56637 -9.12673,22.84663 z" id="path4826" inkscape:connector-curvature="0" sodipodi:nodetypes="sssssssssssssssss"></path>
+      <ellipse style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#394655;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" id="path4828-0" cx="510.36035" cy="112.42966" transform="matrix(0.93072132,0.36572917,-0.50716472,0.86184915,0,0)" rx="21.855621" ry="27.177792"></ellipse>
+      <ellipse cy="99.339417" cx="504.47937" id="circle4830-3" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" transform="matrix(0.93072132,0.36572917,-0.50716472,0.86184915,0,0)" rx="10.748665" ry="13.366124"></ellipse>
+    </g>
+    <path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.3400259;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 502.61768,462.38367 -6.10334,0.78536 -3.57157,0.33255 c -1.13922,0.10606 -2.08915,0.76224 -2.735,1.64246 -0.64584,0.88021 -0.88167,2.02317 -0.9147,3.24453 l -0.18697,6.91405 -0.56247,6.98211 c -0.1013,1.25747 0.34782,2.30379 1.03513,3.02369 0.6873,0.71989 1.65357,1.06367 2.73464,0.96481 l 3.60446,-0.32959 7.09072,-0.9867 c 1.35998,-0.18923 2.56551,-0.86545 3.40046,-1.78661 0.83495,-0.92118 1.25655,-2.0914 1.22792,-3.31215 l -0.16058,-6.84532 -0.27679,-6.82103 c -0.0493,-1.21412 -0.71158,-2.23029 -1.55612,-2.9152 -0.84454,-0.68491 -1.92533,-1.02686 -3.02579,-0.89294 z" id="rect4659" inkscape:connector-curvature="0" sodipodi:nodetypes="scssscssscssscsss"></path>
+    <path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.3400259;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 501.73945,464.57154 -4.98089,0.64314 -2.38707,0.17693 c -0.90679,0.0672 -1.6875,0.61884 -2.23918,1.34205 -0.55166,0.72319 -0.81347,1.66755 -0.87018,2.67181 l -0.32023,5.6723 -0.5608,5.71475 c -0.10012,1.0203 0.2199,1.89145 0.7626,2.48154 0.54268,0.59009 1.33044,0.85228 2.22957,0.78448 l 2.45131,-0.18482 5.63554,-0.77485 c 1.06714,-0.14683 2.03571,-0.69434 2.72503,-1.44725 0.68934,-0.75292 1.07537,-1.71451 1.0863,-2.7179 l 0.0612,-5.61984 -0.0338,-5.60201 c -0.006,-0.99772 -0.49001,-1.83776 -1.14495,-2.40293 -0.65493,-0.56518 -1.51544,-0.8535 -2.41446,-0.73741 z" id="rect4661" inkscape:connector-curvature="0" sodipodi:nodetypes="scssscssscssscsss"></path>
+    <path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#394655;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.3400259;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 476.21064,460.65261 c 0.15979,2.13902 1.29328,3.93192 2.87239,5.2521 1.57912,1.32018 3.7354,2.11641 6.16163,2.41152 2.42624,0.29512 5.09451,0.11571 7.7305,-0.20067 2.636,-0.31639 5.24641,-0.75541 7.80684,-1.11145 2.56042,-0.35622 4.85563,-0.59046 6.8771,-0.85632 2.02147,-0.26585 3.75023,-0.59042 5.12515,-1.18343 1.37493,-0.593 2.40534,-1.45178 3.05933,-2.63779 0.65399,-1.18604 0.93092,-2.69906 0.71312,-4.5032 -0.21779,-1.80414 -0.91854,-3.72222 -1.99797,-5.56655 -1.07944,-1.84434 -2.52862,-3.612 -4.23477,-5.12423 -1.70614,-1.51222 -3.66799,-2.76931 -5.85434,-3.61457 -2.18637,-0.84523 -4.59968,-1.27759 -7.26556,-1.17068 -2.66588,0.10691 -5.34915,0.74147 -7.9202,1.79037 -2.57106,1.04891 -5.02112,2.51398 -7.0814,4.24888 -2.06025,1.73492 -3.77561,3.69016 -4.77169,5.83819 -1.0203,2.20026 -1.35629,4.60529 -1.22013,6.42783 z" id="ellipse4650" inkscape:connector-curvature="0" sodipodi:nodetypes="sssssssssssssssss"></path>
+    <path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e1d0cb;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.3400259;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 484.54443,462.87847 c 1.24333,0.85032 2.8958,1.33018 4.73221,1.53627 1.8364,0.20609 3.84656,0.15504 5.86695,0.0251 2.02039,-0.12993 4.0554,-0.33445 6.0561,-0.53469 2.00069,-0.20027 3.79029,-0.37987 5.35785,-0.62937 1.56755,-0.24951 2.90574,-0.57832 3.96456,-1.09586 1.05884,-0.51755 1.83947,-1.22525 2.30492,-2.15794 0.46544,-0.9327 0.61724,-2.08967 0.39588,-3.43851 -0.22135,-1.34883 -0.79723,-2.75816 -1.65132,-4.10145 -0.85409,-1.3433 -1.98429,-2.61854 -3.32065,-3.70113 -1.33636,-1.08258 -2.87801,-1.97241 -4.58878,-2.56012 -1.71078,-0.58773 -3.59104,-0.87383 -5.63946,-0.76172 -2.0484,0.11208 -4.08072,0.6127 -6.01052,1.42485 -1.9298,0.81214 -3.75508,1.93776 -5.30364,3.26641 -1.54857,1.32867 -2.81377,2.85939 -3.61518,4.44169 -0.8014,1.58229 -1.13767,3.21693 -0.87977,4.71888 0.25789,1.50196 1.08753,2.71724 2.33085,3.56757 z" id="ellipse4652" inkscape:connector-curvature="0" sodipodi:nodetypes="sssssssssssssssss"></path>
+    <path style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#394655;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.3400259;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="m 488.74009,446.63275 c 0.53717,1.23094 1.54212,2.26189 2.87176,3.07521 1.32964,0.81334 2.97927,1.41145 4.74444,1.81115 1.76517,0.39969 3.63894,0.60367 5.45395,0.61589 1.815,0.0122 3.57114,-0.16842 5.19464,-0.56023 1.62349,-0.39182 2.97039,-0.95812 4.08853,-1.65741 1.11815,-0.69931 2.00743,-1.53134 2.68038,-2.46671 0.67295,-0.93538 1.13031,-1.97559 1.34489,-3.09345 0.21457,-1.11785 0.18564,-2.31449 -0.1567,-3.54253 -0.34234,-1.22805 -0.97006,-2.36975 -1.84723,-3.36504 -0.87716,-0.99529 -2.00295,-1.84346 -3.32555,-2.48328 -1.3226,-0.63982 -2.84196,-1.07088 -4.49854,-1.238 -1.65657,-0.16712 -3.45056,-0.07 -5.31189,0.33479 -1.86133,0.40473 -3.61392,1.07796 -5.17334,1.94089 -1.55941,0.86292 -2.92579,1.91545 -4.00139,3.07623 -1.07558,1.16078 -1.86017,2.43042 -2.24216,3.72071 -0.38198,1.29027 -0.35895,2.60083 0.17821,3.83179 z" id="path4648" inkscape:connector-curvature="0" sodipodi:nodetypes="sssssssssssssssss"></path>
+    <g id="g4818" transform="matrix(-0.69886,-0.12390955,-0.12390955,0.69886,745.71587,233.88411)">
+      <path sodipodi:nodetypes="sssssssssssssssss" inkscape:connector-curvature="0" id="path4812" d="m 542.31458,317.38838 c 0.3734,15.16624 -2.29576,30.07176 -7.20806,44.06962 -4.9123,13.99784 -12.04354,27.07762 -20.88311,38.4314 -8.83958,11.3538 -19.40598,20.97611 -31.51131,28.04039 -12.10533,7.06427 -25.77657,11.5731 -40.75888,12.68683 -14.9823,1.11372 -29.853,-1.28649 -43.76621,-6.62402 -13.9132,-5.33753 -26.85474,-13.61011 -37.93154,-24.13051 -11.07682,-10.52041 -20.28471,-23.28551 -26.80664,-37.53811 -6.52193,-14.2526 -10.35433,-29.99154 -10.81057,-46.42672 -0.45623,-16.43518 2.50205,-31.99789 8.12685,-45.98655 5.62481,-13.98866 13.90965,-26.40294 24.06783,-36.6536 10.15818,-10.25065 22.18376,-18.33759 35.33927,-23.79491 13.15553,-5.45733 27.43054,-8.28934 42.25632,-8.12315 14.82579,0.16621 28.82218,3.29429 41.64205,8.68244 12.81988,5.38814 24.47907,13.03732 34.45909,22.44396 9.98003,9.40665 18.26814,20.57495 24.13347,33.16066 5.86534,12.58571 9.27803,26.596 9.65144,41.76227 z" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#394655;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"></path>
+      <path sodipodi:nodetypes="sssssssssssssssss" inkscape:connector-curvature="0" id="ellipse4814" d="m 534.81605,314.09 c 0.81036,14.26911 -1.19488,28.51674 -5.38354,42.06812 -4.18867,13.55138 -10.54232,26.39354 -18.63899,37.61041 -8.09668,11.21684 -17.95316,20.79289 -29.36166,27.81805 -11.40848,7.02513 -24.38843,11.50019 -38.63126,12.62823 -14.24282,1.12805 -28.38997,-1.19661 -41.62203,-6.31735 -13.23209,-5.12074 -25.54081,-13.03633 -36.0996,-23.04073 -10.55882,-10.00441 -19.36491,-22.09665 -25.65573,-35.53166 -6.29082,-13.435 -10.06276,-28.21132 -10.66423,-43.5666 -0.60149,-15.35527 2.02065,-29.82261 7.15309,-42.79024 5.13243,-12.96763 12.76846,-24.43695 22.16225,-33.92365 9.39381,-9.48672 20.5387,-16.99253 32.75364,-22.14366 12.21491,-5.15114 25.49216,-7.95355 39.32435,-8.08838 13.83218,-0.13488 26.93151,2.39287 38.96334,6.99242 12.03184,4.59954 23.00659,11.27373 32.45541,19.63393 9.44884,8.36021 17.3641,18.41006 23.11516,29.91366 5.75106,11.50359 9.31899,24.46834 10.1298,38.73745 z" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"></path>
+      <circle style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#394655;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" id="path4828" cx="379.89145" cy="316.66296" r="30.809652"></circle>
+      <circle r="15.152287" cy="302.52081" cx="366.25439" id="circle4830" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"></circle>
+    </g>
+  </g>
+  <g inkscape:groupmode="layer" id="layer11" inkscape:label="gopher-eye-shadow" style="display:inline;opacity:0.07000002">
+    <path style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.63286042;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 430.18359,115.91797 c -25.89879,0.18627 -51.65777,13.66892 -65.43554,35.80273 -11.93263,18.69537 -14.26106,42.22506 -9.70899,63.61328 4.23236,19.68617 14.35661,38.82756 30.81641,50.91602 11.60888,8.35637 25.94363,13.18135 40.30664,12.61133 13.52003,0.29038 26.79815,-4.04814 38.56445,-10.47266 5.69952,-3.15402 11.00715,-6.98285 15.84961,-11.33594 -7.77272,0.80711 -16.79413,1.34196 -27.32617,1.44141 -47.43359,0.44792 -67.66825,-30.48246 -69.97656,-64.45508 -1.73329,-25.50968 4.67273,-55.88995 49.18164,-78.10937 -0.7572,-0.0122 -1.51426,-0.021 -2.27149,-0.0117 z" transform="scale(0.93749996)" id="path4667" inkscape:connector-curvature="0"></path>
+    <path style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.63286042;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 535.01758,118.21484 c -6.35085,0.45204 -12.80572,3.37681 -15.88672,9.17578 -3.2107,5.33585 -2.50304,11.78621 -2.32813,17.72461 1.43805,11.90983 4.45284,23.56605 6.03711,35.45899 1.76611,10.95222 2.46909,22.15547 5.58789,32.84961 1.39001,3.83569 3.28228,7.79679 6.46094,10.45703 2.60405,1.42588 5.81687,0.73905 8.48633,2.08594 2.34756,0.7587 3.81428,2.76378 5.39062,4.49023 2.22861,1.15554 4.7982,-0.3198 7.03321,-0.8125 3.46782,-1.23912 6.58271,-3.0951 9.35742,-5.37695 -2.85909,0.0746 -5.49752,0.13086 -7.40625,0.13086 -11,0 -16.13009,-7.26375 -21.25,-12.75 -5.0528,-5.41434 -10.88244,-58.95714 -8.75,-69.75 1.10103,-5.57262 0.58254,-13.52637 7.26758,-23.6836 z" transform="scale(0.93749996)" id="path4669" inkscape:connector-curvature="0"></path>
+  </g>
+  <g inkscape:groupmode="layer" id="layer12" inkscape:label="gopher-hands" style="display:inline" transform="translate(0.2136505,-223.25895)">
+    <g id="g4533" transform="matrix(-0.00293744,-0.50023906,-0.6866362,0.08403721,744.37484,669.63842)">
+      <path sodipodi:nodetypes="cssssssssssssssssc" inkscape:connector-curvature="0" id="ellipse4523" d="m 423.4382,582.26976 c 0.004,4.34899 -1.20127,7.5168 -3.60318,9.8015 -2.40191,2.28468 -6.02255,3.70936 -10.86869,4.79691 -4.84614,1.08754 -10.94389,1.88284 -17.85519,2.52566 -6.91128,0.64281 -14.60551,1.05449 -22.28071,1.16646 -7.67521,0.11197 -14.93405,-0.23218 -21.42975,-0.8352 -6.4957,-0.60303 -12.22723,-1.43104 -17.03739,-2.5255 -4.81015,-1.09447 -8.72927,-2.48271 -11.58146,-4.40805 -2.85221,-1.92537 -4.67305,-4.40794 -4.72434,-7.52072 -0.0513,-3.11277 1.6925,-5.31792 4.44862,-6.69017 2.75612,-1.37226 6.54905,-1.89529 11.19919,-1.796 4.65014,0.0993 10.1882,0.83555 16.62754,1.57719 6.43934,0.74163 13.81778,1.43277 21.83194,1.21322 8.01416,-0.21957 16.24871,-1.70577 23.47838,-3.3417 7.22969,-1.63593 13.37469,-3.27833 18.06798,-3.93134 4.69332,-0.65304 8.02688,-0.35838 10.27873,1.21699 2.25185,1.57538 3.45608,13.0999 3.44833,8.75077 z" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e1d6b9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"></path>
+      <path sodipodi:nodetypes="csscsscssssssssssssssssssssccsssc" inkscape:connector-curvature="0" id="path4521" d="m 411.32398,569.86497 c -4.26559,0.34937 -9.70396,1.48209 -16.27914,2.81625 -7.51447,1.52477 -16.50044,3.20019 -25.62439,3.53856 -9.12398,0.33841 -17.50779,-0.36961 -24.79226,-1.0681 -7.28451,-0.69841 -13.53577,-1.30347 -18.80992,-1.12005 -5.27414,0.18342 -9.59939,1.13242 -12.74778,2.95492 -3.14838,1.82248 -5.13288,4.49061 -5.19886,7.94282 -0.066,3.4522 1.87638,6.31961 5.04654,8.61003 3.17017,2.29042 7.60911,4.02588 13.11588,5.42185 5.50679,1.39599 12.11621,2.48666 19.58424,3.2844 7.46802,0.79775 15.78543,1.26015 24.45277,1.10663 8.66734,-0.15352 16.95892,-0.69323 24.15527,-1.44289 7.19633,-0.74967 13.27349,-1.64565 18.0086,-2.9066 1.80168,-0.4798 3.41152,-1.02501 4.84552,-1.64962 2.89613,-1.26147 2.29763,-6.04548 -0.18618,-4.34897 -2.30122,1.57179 -5.37972,2.67345 -9.26387,3.53966 -4.73347,1.05562 -10.66092,1.82526 -17.34813,2.44124 -6.68721,0.61597 -14.10716,1.00509 -21.5121,1.10999 -7.40494,0.1049 -14.41117,-0.22651 -20.69538,-0.81536 -6.28424,-0.58886 -11.84509,-1.40185 -16.51759,-2.47163 -4.6725,-1.06979 -8.48517,-2.42243 -11.25043,-4.28194 -2.76527,-1.85954 -4.5161,-4.2452 -4.55069,-7.22489 -0.0346,-2.97968 1.66465,-5.08103 4.35149,-6.37906 2.68682,-1.29803 6.3829,-1.77862 10.9046,-1.66953 4.5217,0.10909 9.89733,0.8198 16.12122,1.52471 6.22387,0.70494 13.33047,1.35267 21.04579,1.14407 7.71532,-0.2086 15.64328,-1.61051 22.64576,-3.16766 7.00247,-1.55714 13.00451,-3.13814 17.61671,-3.78069 0.57652,-0.0803 1.13427,-0.1477 1.67004,-0.19928 1.37671,-0.13261 2.6236,-0.19082 3.7363,-0.0914 1.28319,0.11466 2.72576,-3.15188 -0.76385,-2.92068 -0.56634,0.0375 -1.71609,0.50106 -1.76015,0.10327 z" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#394655;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"></path>
+    </g>
+  </g>
+  <g inkscape:groupmode="layer" id="layer4" inkscape:label="palette" style="display:none" sodipodi:insensitive="true" transform="translate(0.2136505,-223.25895)">
+    <rect style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#394655;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:9.21052647;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" id="rect4162" width="40.789474" height="40.789474" x="779.60529" y="21.967466"></rect>
+    <rect y="21.967466" x="824.60529" height="40.789474" width="40.789474" id="rect4170" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:9.21052742;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"></rect>
+    <rect style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bce8ff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:9.21052647;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" id="rect4208" width="40.789474" height="40.789474" x="779.60529" y="86.967468"></rect>
+    <rect y="-127.75694" x="824.60529" height="40.789474" width="40.789474" id="rect4223" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#abccd9;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:9.21052647;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" transform="scale(1,-1)"></rect>
+    <rect style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#c3b0cb;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:9.21052647;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" id="rect4227" width="40.789474" height="40.789474" x="779.60529" y="131.96747"></rect>
+    <rect y="131.96747" x="824.60529" height="40.789474" width="40.789474" id="rect4231" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e1d0cb;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:9.21052647;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"></rect>
+    <rect style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f5c3d2;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:9.21052647;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" id="rect4233" width="40.789474" height="40.789474" x="869.60529" y="131.96747"></rect>
+    <rect y="176.96747" x="779.60529" height="40.789474" width="40.789474" id="rect4248" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#cec4ad;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:9.21052647;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"></rect>
+    <rect transform="scale(1,-1)" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#96d6ff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:9.21052647;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" id="rect4263" width="40.789474" height="40.789474" x="869.60529" y="-127.75694"></rect>
+    <rect style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f2f2ce;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:9.21052647;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" id="rect4267" width="40.789474" height="40.789474" x="824.60529" y="176.96747"></rect>
+  </g>
+</svg>
diff --git a/gosrc/testdata/hello.go b/gosrc/testdata/hello.go
new file mode 100644
index 0000000..1606866
--- /dev/null
+++ b/gosrc/testdata/hello.go
@@ -0,0 +1,9 @@
+package main
+
+import "fmt"
+
+func main() {
+	// START HELLO OMIT
+	fmt.Println("Hello, World!") // HLhello
+	// END HELLO OMIT
+}
diff --git a/gosrc/testdata/iframe.html b/gosrc/testdata/iframe.html
new file mode 100644
index 0000000..f9136ca
--- /dev/null
+++ b/gosrc/testdata/iframe.html
@@ -0,0 +1,25 @@
+<html>
+    <head>
+        <title>Iframe Content</title>
+    </head>
+    <body>
+        <h1>Hello from an <code>iframe</code></h1>
+
+       <p>Lorem ipsum dolor amet hot chicken man bun in excepteur tofu. Plaid
+       vegan dolor gochujang bitters vexillologist pok pok ad poke. Banh mi
+       deserunt sriracha in, four dollar toast biodiesel ugh cloud bread
+       humblebrag organic. VHS venmo readymade subway tile, art party green
+       juice mumblecore pariatur post-ironic lomo slow-carb portland
+       shoreditch unicorn.</p>
+
+        <p>Put a bird on it YOLO ea tilde salvia occaecat shoreditch. Dolore
+        locavore humblebrag pop-up ut sunt aliqua shaman cillum meh XOXO
+        biodiesel copper mug mumblecore cliche. Deserunt portland mollit
+        selfies, anim deep v tattooed tilde bespoke chambray hashtag
+        gluten-free chicharrones vinyl plaid. Thundercats aesthetic subway
+        tile lyft consectetur. Slow-carb schlitz quinoa kogi godard
+        post-ironic fam asymmetrical gluten-free deep v irony. Quis snackwave
+        velit unicorn kale chips, cronut typewriter deserunt helvetica
+        keffiyeh yr messenger bag.</p>
+    </body>
+</html>
\ No newline at end of file
diff --git a/gosrc/testdata/sample.slide b/gosrc/testdata/sample.slide
new file mode 100644
index 0000000..2700751
--- /dev/null
+++ b/gosrc/testdata/sample.slide
@@ -0,0 +1,83 @@
+Sample Presentation
+Demonstration of present tool features
+15:04 2 Jan 2006
+Tags: foo, bar, baz
+
+Author Name
+Job title, Company
+joe@example.com
+http://url/
+@twitter_name
+
+* Introduction
+
+Presentation intended to demonstrate all `present` features.
+
+* Text
+
+Some Text
+
+- bullets
+- more bullets
+
+Some More text
+
+  Preformatted text
+  is indented (however you like)
+
+: Presenter notes
+
+.link https://golang.org Link to golang.org
+
+_italic_
+*bold*
+`program`
+Markup—_especially_italic_text_—can easily be overused.
+_Why_use_scoped__ptr_? Use plain ***ptr* instead.
+
+* Image
+
+.image gopher.jpg _ 400
+.caption [[https://github.com/egonelbre/gophers][Public Domain Gophers]] provided by [[http://egonelbre.com/][Egon Elbre]]
+
+* Vector Graphics
+
+.image gopher.svg _ 400
+
+* Background
+
+.background gopher.jpg
+
+* Code
+
+Hello World in Go!
+
+.code hello.go
+
+We can extract the main function and highlight interesting parts
+
+.code hello.go /func main/,/^}/ HLhello
+
+Note that lines with `OMIT` are excluded
+
+.code hello.go /START HELLO/,/END HELLO/
+
+* Play
+
+We can even embed playable code
+
+.play hello.go /func main/,/^}/
+
+* HTML
+
+We can include arbitrary HTML from files:
+
+.html embed.html
+
+* Iframe
+
+Or we can embed entire pages as iframes
+
+.iframe iframe.html 400 600
+
+#.link http://foo label