administrate-field-jsonb 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 74b6d21a2f93c23b057e873aaad220655c3c817d
4
+ data.tar.gz: 606946be845f50d6b98b5553c5148c812ddad650
5
+ SHA512:
6
+ metadata.gz: 3eba72e6e53ec34666eb55b23884d9a9f41f41ed112e82fbb06e16c3d1e6c8083474d476e11b4800b2ed10e09b10788d61724b277178cce6b03837ecadc7fdbf
7
+ data.tar.gz: 22faae00b2abff4c56d1a4e538ddb4a7213c0d83831e2a2987bf0c4ecc7dce6ac79243b6768131d1a88b76113f462cbd9b2ad79042e7c1a39770c3a9a4305826
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at volkovbro1997@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in administrate-field-jsonb.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Sergey Volkov
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,71 @@
1
+ # Administrate::Field::Jsonb
2
+
3
+ A plugin to show and edit JSON objects within [Administrate](https://github.com/thoughtbot/administrate). inspired by [Administrate::Field::JSON](https://github.com/eddietejeda/administrate-field-json)
4
+
5
+ This gem uses [jsoneditor](https://github.com/josdejong/jsoneditor)
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'administrate-field-jsonb'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ ```bash
18
+ bundle
19
+ ```
20
+
21
+ ## Usage
22
+
23
+ ```ruby
24
+ ATTRIBUTE_TYPES = {
25
+ # ...
26
+ data: Field::JSONB
27
+ }.freeze
28
+ ```
29
+
30
+ If you have some kind of serialization, you can call methods on your object with `transform` option.
31
+
32
+ ```ruby
33
+ ATTRIBUTE_TYPES = {
34
+ # ...
35
+ data: Field::JSONB.with_options(
36
+ transform: %w[to_h]
37
+ )
38
+ }.freeze
39
+ ```
40
+
41
+ ## How it looks like
42
+
43
+ ### Form
44
+
45
+ <p align="center">
46
+ <img src="docs/images/form.png">
47
+ </p>
48
+
49
+ ### Show
50
+
51
+ <p align="center">
52
+ <img src="docs/images/show.png">
53
+ </p>
54
+
55
+ ### Index
56
+
57
+ <p align="center">
58
+ <img src="docs/images/index.png">
59
+ </p>
60
+
61
+ ## License
62
+
63
+ Copyright © 2015-2019 Codica. It is released under the [MIT License](https://opensource.org/licenses/MIT).
64
+
65
+ ## About Codica
66
+
67
+ [![Codica logo](https://www.codica.com/assets/images/logo/logo.svg)](https://www.codica.com)
68
+
69
+ Timebot is maintained and funded by Codica. The names and logos for Codica are trademarks of Codica.
70
+
71
+ We love open source software! See [our other projects](https://github.com/codica2) or [hire us](https://www.codica.com/) to design, develop, and grow your product.
@@ -0,0 +1,21 @@
1
+ $LOAD_PATH.push File.expand_path('lib', __dir__)
2
+
3
+ Gem::Specification.new do |gem|
4
+ gem.name = 'administrate-field-jsonb'
5
+ gem.version = '0.1.0'
6
+ gem.authors = ['Sergey Volkov', 'Codica']
7
+ gem.email = ['sergvolkov.codica@gmail.com']
8
+ gem.homepage = 'https://github.com/codica2/administrate-field-jsonb'
9
+ gem.summary = 'JSONb field plugin for Administrate'
10
+ gem.description = gem.summary
11
+ gem.license = 'MIT'
12
+
13
+ gem.require_paths = ['lib']
14
+ gem.files = `git ls-files`.split("\n")
15
+ gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
16
+
17
+ gem.add_runtime_dependency 'administrate', '< 1.0.0'
18
+ gem.add_runtime_dependency 'rails', '>= 4.2', '< 7'
19
+
20
+ gem.add_development_dependency 'rspec', '~> 3.7'
21
+ end
@@ -0,0 +1,14 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // the compiled file.
9
+ //
10
+ // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
11
+ // GO AFTER THE REQUIRES BELOW.
12
+ //
13
+ //= require jsoneditor-minimalist.min
14
+ //= require_tree .
@@ -0,0 +1,32 @@
1
+ $(function () {
2
+ let editor, updatedJson;
3
+ $('.administrate-jsoneditor').each(function (index) {
4
+
5
+ let $current = $(this).find("textarea");
6
+
7
+ let options = {
8
+ onChange: function () {
9
+ try {
10
+ updatedJson = editor.get();
11
+ } catch (err) {
12
+ console.log(err);
13
+ }
14
+
15
+ $current.val(JSON.stringify(updatedJson));
16
+ },
17
+ onError: function (err) {
18
+ alert(err.toString());
19
+ },
20
+ navigationBar: false,
21
+ search: false,
22
+ enableSort: false,
23
+ enableTransform: false,
24
+ mode: 'tree',
25
+ modes: ['text', 'tree'],
26
+ };
27
+
28
+ let editor = new JSONEditor(this, options);
29
+
30
+ editor.set(JSON.parse($current.val()));
31
+ });
32
+ });
@@ -0,0 +1,20 @@
1
+ $(function () {
2
+ let viewer;
3
+ $('.administrate-jsoneditor-viewer').each(function (index) {
4
+
5
+ let $current = $(this).find("textarea");
6
+
7
+ let options = {
8
+ navigationBar: false,
9
+ search: false,
10
+ enableSort: false,
11
+ enableTransform: false,
12
+ mode: 'view',
13
+ modes: [],
14
+ };
15
+
16
+ let viewer = new JSONEditor(this, options);
17
+
18
+ viewer.set(JSON.parse($current.val()));
19
+ });
20
+ });
@@ -0,0 +1,5 @@
1
+ /*
2
+ *= require_self
3
+ *= require jsoneditor.min
4
+ *= require_tree .
5
+ */
@@ -0,0 +1,24 @@
1
+ .administrate-jsoneditor textarea, .administrate-jsoneditor-viewer textarea {
2
+ display: none;
3
+ }
4
+
5
+ .jsoneditor-mode-text textarea {
6
+ display: block;
7
+ }
8
+
9
+ table.jsoneditor-tree td {
10
+ overflow: visible;
11
+ }
12
+
13
+ table.jsoneditor-search input {
14
+ padding: 0;
15
+ line-height: 20px;
16
+ }
17
+
18
+ textarea.jsoneditor-text {
19
+ resize: vertical;
20
+ }
21
+
22
+ table.jsoneditor-values tbody > tr {
23
+ border: none;
24
+ }
@@ -0,0 +1,13 @@
1
+
2
+ <%#
3
+ # JSONB Form Partial
4
+ This partial renders an JSON database into structured form
5
+ %>
6
+
7
+ <div class="field-unit__label">
8
+ <%= f.label field.attribute %>
9
+ </div>
10
+
11
+ <div class="field-unit__field administrate-jsoneditor">
12
+ <%= f.text_area field.attribute, value: field.data.to_json.html_safe.squish %>
13
+ </div>
@@ -0,0 +1 @@
1
+ <%= JSON.pretty_generate field.transform %>
@@ -0,0 +1,3 @@
1
+ <div class="administrate-jsoneditor-viewer">
2
+ <%= text_area_tag field.attribute, field.transform.to_json.html_safe.squish %>
3
+ </div>
Binary file
Binary file
Binary file
@@ -0,0 +1,39 @@
1
+ require 'administrate/engine'
2
+ require 'administrate/field/base'
3
+ require 'rails'
4
+
5
+ module Administrate
6
+
7
+ module Field
8
+
9
+ class JSONB < Administrate::Field::Base
10
+
11
+ def transform
12
+ return data unless options[:transform].present? && options[:transform].is_a?(Array)
13
+
14
+ result = data
15
+ options[:transform].each do |method|
16
+ result = data.public_send(method)
17
+ end
18
+ result
19
+ end
20
+
21
+ class Engine < ::Rails::Engine
22
+
23
+ Administrate::Engine.add_javascript 'administrate-field-jsonb/application'
24
+ Administrate::Engine.add_stylesheet 'administrate-field-jsonb/application'
25
+
26
+ engine_root = root
27
+
28
+ isolate_namespace Administrate
29
+ config.to_prepare do
30
+ Rails.application.config.assets.paths << engine_root.join('vendor', 'assets', 'images')
31
+ end
32
+
33
+ end
34
+
35
+ end
36
+
37
+ end
38
+
39
+ end
Binary file
@@ -0,0 +1,749 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ width="240"
11
+ height="144"
12
+ id="svg4136"
13
+ version="1.1"
14
+ inkscape:version="0.91 r13725"
15
+ sodipodi:docname="jsoneditor-icons.svg">
16
+ <title
17
+ id="title6512">JSON Editor Icons</title>
18
+ <metadata
19
+ id="metadata4148">
20
+ <rdf:RDF>
21
+ <cc:Work
22
+ rdf:about="">
23
+ <dc:format>image/svg+xml</dc:format>
24
+ <dc:type
25
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
26
+ <dc:title>JSON Editor Icons</dc:title>
27
+ </cc:Work>
28
+ </rdf:RDF>
29
+ </metadata>
30
+ <defs
31
+ id="defs4146" />
32
+ <sodipodi:namedview
33
+ pagecolor="#ff63ff"
34
+ bordercolor="#666666"
35
+ borderopacity="1"
36
+ objecttolerance="10"
37
+ gridtolerance="10"
38
+ guidetolerance="10"
39
+ inkscape:pageopacity="0"
40
+ inkscape:pageshadow="2"
41
+ inkscape:window-width="1920"
42
+ inkscape:window-height="1026"
43
+ id="namedview4144"
44
+ showgrid="true"
45
+ inkscape:zoom="4"
46
+ inkscape:cx="13.229181"
47
+ inkscape:cy="119.82429"
48
+ inkscape:window-x="0"
49
+ inkscape:window-y="0"
50
+ inkscape:window-maximized="1"
51
+ inkscape:current-layer="svg4136"
52
+ showguides="false"
53
+ borderlayer="false"
54
+ inkscape:showpageshadow="true"
55
+ showborder="true">
56
+ <inkscape:grid
57
+ type="xygrid"
58
+ id="grid4640"
59
+ empspacing="24" />
60
+ </sodipodi:namedview>
61
+ <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->
62
+ <rect
63
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0"
64
+ id="svg_1"
65
+ height="16"
66
+ width="16"
67
+ y="4"
68
+ x="4" />
69
+ <rect
70
+ id="svg_1-7"
71
+ height="16"
72
+ width="16"
73
+ y="3.999995"
74
+ x="28.000006"
75
+ style="fill:#ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0" />
76
+ <rect
77
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0"
78
+ x="52.000004"
79
+ y="3.999995"
80
+ width="16"
81
+ height="16"
82
+ id="rect4165" />
83
+ <rect
84
+ id="rect4175"
85
+ height="16"
86
+ width="16"
87
+ y="3.9999852"
88
+ x="172.00002"
89
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0" />
90
+ <rect
91
+ id="rect4175-3"
92
+ height="16"
93
+ width="16"
94
+ y="3.999995"
95
+ x="196"
96
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0" />
97
+ <g
98
+ id="g4299"
99
+ style="stroke:none">
100
+ <rect
101
+ x="7.0000048"
102
+ y="10.999998"
103
+ width="9.9999924"
104
+ height="1.9999986"
105
+ id="svg_1-1"
106
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0" />
107
+ <rect
108
+ x="11.000005"
109
+ y="7.0000114"
110
+ width="1.9999955"
111
+ height="9.9999838"
112
+ id="svg_1-1-1"
113
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0" />
114
+ </g>
115
+ <g
116
+ id="g4299-3"
117
+ transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)"
118
+ style="stroke:none">
119
+ <rect
120
+ x="7.0000048"
121
+ y="10.999998"
122
+ width="9.9999924"
123
+ height="1.9999986"
124
+ id="svg_1-1-0"
125
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0" />
126
+ <rect
127
+ x="11.000005"
128
+ y="7.0000114"
129
+ width="1.9999955"
130
+ height="9.9999838"
131
+ id="svg_1-1-1-9"
132
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0" />
133
+ </g>
134
+ <rect
135
+ id="svg_1-7-5"
136
+ height="6.9999905"
137
+ width="6.9999909"
138
+ y="7.0000048"
139
+ x="55.000004"
140
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
141
+ <rect
142
+ style="fill:#ffffff;fill-opacity:1;stroke:#4c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
143
+ x="58"
144
+ y="10.00001"
145
+ width="6.9999909"
146
+ height="6.9999905"
147
+ id="rect4354" />
148
+ <rect
149
+ id="svg_1-7-5-7"
150
+ height="6.9999905"
151
+ width="6.9999909"
152
+ y="10.000005"
153
+ x="58.000004"
154
+ style="fill:#ffffff;fill-opacity:1;stroke:#3c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647" />
155
+ <g
156
+ id="g4378">
157
+ <rect
158
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
159
+ x="198"
160
+ y="10.999999"
161
+ width="7.9999909"
162
+ height="1.9999965"
163
+ id="svg_1-7-5-3" />
164
+ <rect
165
+ id="rect4374"
166
+ height="1.9999946"
167
+ width="11.999995"
168
+ y="7.0000005"
169
+ x="198"
170
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
171
+ <rect
172
+ id="rect4376"
173
+ height="1.9999995"
174
+ width="3.9999928"
175
+ y="14.999996"
176
+ x="198"
177
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
178
+ </g>
179
+ <g
180
+ transform="matrix(1,0,0,-1,-23.999995,23.999995)"
181
+ id="g4383">
182
+ <rect
183
+ id="rect4385"
184
+ height="1.9999965"
185
+ width="7.9999909"
186
+ y="10.999999"
187
+ x="198"
188
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0" />
189
+ <rect
190
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
191
+ x="198"
192
+ y="7.0000005"
193
+ width="11.999995"
194
+ height="1.9999946"
195
+ id="rect4387" />
196
+ <rect
197
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0"
198
+ x="198"
199
+ y="14.999996"
200
+ width="3.9999928"
201
+ height="1.9999995"
202
+ id="rect4389" />
203
+ </g>
204
+ <rect
205
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none"
206
+ id="rect3754-4"
207
+ width="16"
208
+ height="16"
209
+ x="76"
210
+ y="3.9999199" />
211
+ <path
212
+ style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
213
+ d="m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z"
214
+ id="path4351"
215
+ inkscape:connector-curvature="0"
216
+ sodipodi:nodetypes="cccccccc" />
217
+ <path
218
+ style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
219
+ d="m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z"
220
+ id="path4351-9"
221
+ inkscape:connector-curvature="0"
222
+ sodipodi:nodetypes="cccccccc" />
223
+ <rect
224
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none"
225
+ id="rect3754-25"
226
+ width="16"
227
+ height="16"
228
+ x="100"
229
+ y="3.9999199" />
230
+ <path
231
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
232
+ d="m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z"
233
+ id="path2987"
234
+ inkscape:connector-curvature="0" />
235
+ <path
236
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
237
+ d="m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z"
238
+ id="path2987-1"
239
+ inkscape:connector-curvature="0" />
240
+ <rect
241
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none"
242
+ id="rect3754-73"
243
+ width="16"
244
+ height="16"
245
+ x="124"
246
+ y="3.9999199" />
247
+ <path
248
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
249
+ d="m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z"
250
+ id="path3780"
251
+ inkscape:connector-curvature="0"
252
+ sodipodi:nodetypes="ccccccccc" />
253
+ <path
254
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none"
255
+ d="m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z"
256
+ id="path3782"
257
+ inkscape:connector-curvature="0" />
258
+ <rect
259
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none"
260
+ id="rect3754-35"
261
+ width="16"
262
+ height="16"
263
+ x="148"
264
+ y="3.9999199" />
265
+ <path
266
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
267
+ d="m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z"
268
+ id="path5008-2"
269
+ inkscape:connector-curvature="0"
270
+ sodipodi:nodetypes="ccccccc" />
271
+ <path
272
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
273
+ d="m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z"
274
+ id="path5008-2-8"
275
+ inkscape:connector-curvature="0"
276
+ sodipodi:nodetypes="ccccccc" />
277
+ <rect
278
+ id="svg_1-7-2"
279
+ height="1.9999961"
280
+ width="11.999996"
281
+ y="64"
282
+ x="54"
283
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0" />
284
+ <rect
285
+ id="svg_1-7-2-2"
286
+ height="2.9999905"
287
+ width="2.9999907"
288
+ y="52"
289
+ x="80.000008"
290
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0" />
291
+ <rect
292
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0"
293
+ x="85.000008"
294
+ y="52"
295
+ width="2.9999907"
296
+ height="2.9999905"
297
+ id="rect4561" />
298
+ <rect
299
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0"
300
+ x="80.000008"
301
+ y="58"
302
+ width="2.9999907"
303
+ height="2.9999905"
304
+ id="rect4563" />
305
+ <rect
306
+ id="rect4565"
307
+ height="2.9999905"
308
+ width="2.9999907"
309
+ y="58"
310
+ x="85.000008"
311
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0" />
312
+ <rect
313
+ id="rect4567"
314
+ height="2.9999905"
315
+ width="2.9999907"
316
+ y="64"
317
+ x="80.000008"
318
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0" />
319
+ <rect
320
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0"
321
+ x="85.000008"
322
+ y="64"
323
+ width="2.9999907"
324
+ height="2.9999905"
325
+ id="rect4569" />
326
+ <circle
327
+ style="opacity:1;fill:none;fill-opacity:1;stroke:#4c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
328
+ id="path4571"
329
+ cx="110.06081"
330
+ cy="57.939209"
331
+ r="4.7438836" />
332
+ <rect
333
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0"
334
+ x="116.64566"
335
+ y="-31.79752"
336
+ width="4.229713"
337
+ height="6.4053884"
338
+ id="rect4563-2"
339
+ transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" />
340
+ <path
341
+ style="fill:#4c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
342
+ d="M 125,56 138.77027,56.095 132,64 Z"
343
+ id="path4613"
344
+ inkscape:connector-curvature="0"
345
+ sodipodi:nodetypes="cccc" />
346
+ <path
347
+ sodipodi:nodetypes="cccc"
348
+ inkscape:connector-curvature="0"
349
+ id="path4615"
350
+ d="M 149,64 162.77027,63.905 156,56 Z"
351
+ style="fill:#4c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
352
+ <rect
353
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0"
354
+ x="54"
355
+ y="53"
356
+ width="11.999996"
357
+ height="1.9999961"
358
+ id="rect4638" />
359
+ <rect
360
+ id="svg_1-7-2-24"
361
+ height="1.9999957"
362
+ width="12.99999"
363
+ y="-56"
364
+ x="53"
365
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0"
366
+ transform="matrix(0,1,-1,0,0,0)" />
367
+ <rect
368
+ transform="matrix(0,1,-1,0,0,0)"
369
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0"
370
+ x="53"
371
+ y="-66"
372
+ width="12.99999"
373
+ height="1.9999957"
374
+ id="rect4657" />
375
+ <rect
376
+ id="rect4659"
377
+ height="0.99999291"
378
+ width="11.999999"
379
+ y="57"
380
+ x="54"
381
+ style="fill:#4c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0" />
382
+ <rect
383
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1"
384
+ x="54"
385
+ y="88.000122"
386
+ width="11.999996"
387
+ height="1.9999961"
388
+ id="rect4661" />
389
+ <rect
390
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1"
391
+ x="80.000008"
392
+ y="76.000122"
393
+ width="2.9999907"
394
+ height="2.9999905"
395
+ id="rect4663" />
396
+ <rect
397
+ id="rect4665"
398
+ height="2.9999905"
399
+ width="2.9999907"
400
+ y="76.000122"
401
+ x="85.000008"
402
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1" />
403
+ <rect
404
+ id="rect4667"
405
+ height="2.9999905"
406
+ width="2.9999907"
407
+ y="82.000122"
408
+ x="80.000008"
409
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1" />
410
+ <rect
411
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1"
412
+ x="85.000008"
413
+ y="82.000122"
414
+ width="2.9999907"
415
+ height="2.9999905"
416
+ id="rect4669" />
417
+ <rect
418
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1"
419
+ x="80.000008"
420
+ y="88.000122"
421
+ width="2.9999907"
422
+ height="2.9999905"
423
+ id="rect4671" />
424
+ <rect
425
+ id="rect4673"
426
+ height="2.9999905"
427
+ width="2.9999907"
428
+ y="88.000122"
429
+ x="85.000008"
430
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1" />
431
+ <circle
432
+ r="4.7438836"
433
+ cy="81.939331"
434
+ cx="110.06081"
435
+ id="circle4675"
436
+ style="opacity:1;fill:none;fill-opacity:1;stroke:#d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
437
+ <rect
438
+ transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)"
439
+ id="rect4677"
440
+ height="6.4053884"
441
+ width="4.229713"
442
+ y="-14.826816"
443
+ x="133.6163"
444
+ style="fill:#d3d3d3;fill-opacity:1;stroke:#d3d3d3;stroke-width:0;stroke-opacity:1" />
445
+ <path
446
+ sodipodi:nodetypes="cccc"
447
+ inkscape:connector-curvature="0"
448
+ id="path4679"
449
+ d="m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z"
450
+ style="fill:#d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:#d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
451
+ <path
452
+ style="fill:#d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:#d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
453
+ d="M 149,88.0002 162.77027,87.9052 156,80.0002 Z"
454
+ id="path4681"
455
+ inkscape:connector-curvature="0"
456
+ sodipodi:nodetypes="cccc" />
457
+ <rect
458
+ id="rect4683"
459
+ height="1.9999961"
460
+ width="11.999996"
461
+ y="77.000122"
462
+ x="54"
463
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1" />
464
+ <rect
465
+ transform="matrix(0,1,-1,0,0,0)"
466
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1"
467
+ x="77.000122"
468
+ y="-56"
469
+ width="12.99999"
470
+ height="1.9999957"
471
+ id="rect4685" />
472
+ <rect
473
+ id="rect4687"
474
+ height="1.9999957"
475
+ width="12.99999"
476
+ y="-66"
477
+ x="77.000122"
478
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1"
479
+ transform="matrix(0,1,-1,0,0,0)" />
480
+ <rect
481
+ style="fill:#d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1"
482
+ x="54"
483
+ y="81.000122"
484
+ width="11.999999"
485
+ height="0.99999291"
486
+ id="rect4689" />
487
+ <rect
488
+ id="rect4761-1"
489
+ height="1.9999945"
490
+ width="15.99999"
491
+ y="101"
492
+ x="76.000008"
493
+ style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
494
+ <rect
495
+ id="rect4761-0"
496
+ height="1.9999945"
497
+ width="15.99999"
498
+ y="105"
499
+ x="76.000008"
500
+ style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
501
+ <rect
502
+ id="rect4761-7"
503
+ height="1.9999945"
504
+ width="9"
505
+ y="109"
506
+ x="76.000008"
507
+ style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
508
+ <rect
509
+ id="rect4761-1-1"
510
+ height="1.9999945"
511
+ width="12"
512
+ y="125"
513
+ x="76.000008"
514
+ style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
515
+ <rect
516
+ id="rect4761-1-1-4"
517
+ height="1.9999945"
518
+ width="10"
519
+ y="137"
520
+ x="76.000008"
521
+ style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
522
+ <rect
523
+ id="rect4761-1-1-4-4"
524
+ height="1.9999945"
525
+ width="10"
526
+ y="129"
527
+ x="82"
528
+ style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
529
+ <rect
530
+ id="rect4761-1-1-4-4-3"
531
+ height="1.9999945"
532
+ width="9"
533
+ y="133"
534
+ x="82"
535
+ style="fill:#ffffff;fill-opacity:0.8;stroke:none;stroke-width:0" />
536
+ <path
537
+ inkscape:connector-curvature="0"
538
+ 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;visibility:visible;opacity:0.8;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.66157866;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"
539
+ d="m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z"
540
+ id="path4138" />
541
+ <path
542
+ inkscape:connector-curvature="0"
543
+ 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;visibility:visible;opacity:0.8;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.66157866;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"
544
+ d="m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z"
545
+ id="path4138-1" />
546
+ <path
547
+ inkscape:connector-curvature="0"
548
+ style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none"
549
+ d="m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z"
550
+ id="path3055-0-77" />
551
+ <path
552
+ style="opacity:0.8;fill:none;stroke:#ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
553
+ d="m 4.9850574,108.015 14.0298856,-0.03"
554
+ id="path5244-5-0-5"
555
+ inkscape:connector-curvature="0"
556
+ sodipodi:nodetypes="cc" />
557
+ <path
558
+ style="opacity:0.8;fill:none;stroke:#ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
559
+ d="m 4.9849874,132.015 14.0298866,-0.03"
560
+ id="path5244-5-0-5-8"
561
+ inkscape:connector-curvature="0"
562
+ sodipodi:nodetypes="cc" />
563
+ <path
564
+ inkscape:connector-curvature="0"
565
+ 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;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;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"
566
+ d="m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z"
567
+ id="path4138-12" />
568
+ <path
569
+ inkscape:connector-curvature="0"
570
+ 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;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;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"
571
+ d="m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z"
572
+ id="path4138-1-3" />
573
+ <path
574
+ id="path6191"
575
+ d="m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z"
576
+ style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none"
577
+ inkscape:connector-curvature="0" />
578
+ <path
579
+ inkscape:connector-curvature="0"
580
+ style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none"
581
+ d="m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z"
582
+ id="path6193" />
583
+ <path
584
+ id="path6195"
585
+ d="m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z"
586
+ style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none"
587
+ inkscape:connector-curvature="0" />
588
+ <path
589
+ sodipodi:type="star"
590
+ style="fill:#4d4d4d;fill-opacity:0.90196078;stroke:#d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
591
+ id="path4500"
592
+ sodipodi:sides="3"
593
+ sodipodi:cx="11.55581"
594
+ sodipodi:cy="60.073242"
595
+ sodipodi:r1="5.1116104"
596
+ sodipodi:r2="2.5558052"
597
+ sodipodi:arg1="0"
598
+ sodipodi:arg2="1.0471976"
599
+ inkscape:flatsided="false"
600
+ inkscape:rounded="0"
601
+ inkscape:randomized="0"
602
+ d="m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z"
603
+ inkscape:transform-center-x="-1.2779026" />
604
+ <path
605
+ inkscape:transform-center-x="1.277902"
606
+ d="m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z"
607
+ inkscape:randomized="0"
608
+ inkscape:rounded="0"
609
+ inkscape:flatsided="false"
610
+ sodipodi:arg2="1.0471976"
611
+ sodipodi:arg1="0"
612
+ sodipodi:r2="2.5558052"
613
+ sodipodi:r1="5.1116104"
614
+ sodipodi:cy="60.073242"
615
+ sodipodi:cx="-36.611614"
616
+ sodipodi:sides="3"
617
+ id="path4502"
618
+ style="fill:#4d4d4d;fill-opacity:0.90196078;stroke:#d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
619
+ sodipodi:type="star"
620
+ transform="scale(-1,1)" />
621
+ <path
622
+ d="m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z"
623
+ inkscape:randomized="0"
624
+ inkscape:rounded="0"
625
+ inkscape:flatsided="false"
626
+ sodipodi:arg2="1.0471976"
627
+ sodipodi:arg1="0"
628
+ sodipodi:r2="2.5558052"
629
+ sodipodi:r1="5.1116104"
630
+ sodipodi:cy="60.073212"
631
+ sodipodi:cx="11.55581"
632
+ sodipodi:sides="3"
633
+ id="path4504"
634
+ style="fill:#4d4d4d;fill-opacity:0.90196078;stroke:#d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
635
+ sodipodi:type="star"
636
+ transform="matrix(0,1,-1,0,72.0074,71.7877)"
637
+ inkscape:transform-center-y="1.2779029" />
638
+ <path
639
+ inkscape:transform-center-y="-1.2779026"
640
+ transform="matrix(0,-1,-1,0,96,96)"
641
+ sodipodi:type="star"
642
+ style="fill:#4d4d4d;fill-opacity:0.90196078;stroke:#d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
643
+ id="path4506"
644
+ sodipodi:sides="3"
645
+ sodipodi:cx="11.55581"
646
+ sodipodi:cy="60.073212"
647
+ sodipodi:r1="5.1116104"
648
+ sodipodi:r2="2.5558052"
649
+ sodipodi:arg1="0"
650
+ sodipodi:arg2="1.0471976"
651
+ inkscape:flatsided="false"
652
+ inkscape:rounded="0"
653
+ inkscape:randomized="0"
654
+ d="m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z" />
655
+ <path
656
+ sodipodi:nodetypes="cccc"
657
+ inkscape:connector-curvature="0"
658
+ id="path4615-5"
659
+ d="m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z"
660
+ style="fill:#fbb917;fill-opacity:1;fill-rule:evenodd;stroke:#fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
661
+ <path
662
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
663
+ d="m 179,55 0,6 2,0 0,-6"
664
+ id="path4300"
665
+ inkscape:connector-curvature="0"
666
+ sodipodi:nodetypes="cccc" />
667
+ <path
668
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
669
+ d="m 179,62 0,2 2,0 0,-2"
670
+ id="path4300-6"
671
+ inkscape:connector-curvature="0"
672
+ sodipodi:nodetypes="cccc" />
673
+ <path
674
+ style="fill:#ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8"
675
+ d="M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z"
676
+ id="path4268"
677
+ inkscape:connector-curvature="0"
678
+ sodipodi:nodetypes="ccccccccccccccc" />
679
+ <rect
680
+ id="rect4175-3-5"
681
+ height="16"
682
+ width="16"
683
+ y="4"
684
+ x="220"
685
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0" />
686
+ <path
687
+ style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
688
+ d="m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2"
689
+ id="path3546"
690
+ inkscape:connector-curvature="0"
691
+ sodipodi:nodetypes="cccccccc" />
692
+ <g
693
+ transform="matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)"
694
+ id="g4383-6">
695
+ <rect
696
+ id="rect4385-2"
697
+ height="1.2499905"
698
+ width="5.9999924"
699
+ y="12.625005"
700
+ x="198.00002"
701
+ style="fill:#ffffff;fill-opacity:0.8;stroke:#000000;stroke-width:0" />
702
+ <rect
703
+ style="fill:#ffffff;fill-opacity:0.8;stroke:#000000;stroke-width:0"
704
+ x="198.00002"
705
+ y="15.125007"
706
+ width="7.4999928"
707
+ height="1.2499949"
708
+ id="rect4387-9" />
709
+ <rect
710
+ style="fill:#ffffff;fill-opacity:0.8;stroke:#000000;stroke-width:0"
711
+ x="198.00002"
712
+ y="7.6250024"
713
+ width="2.9999909"
714
+ height="1.2499905"
715
+ id="rect4389-1-0" />
716
+ <rect
717
+ style="fill:#ffffff;fill-opacity:0.8;stroke:#000000;stroke-width:0"
718
+ x="198.00002"
719
+ y="10.125004"
720
+ width="4.4999919"
721
+ height="1.2499905"
722
+ id="rect4389-1-9" />
723
+ <path
724
+ style="fill:#ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
725
+ d="m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0"
726
+ id="path4402"
727
+ inkscape:connector-curvature="0"
728
+ sodipodi:nodetypes="cccccccc" />
729
+ </g>
730
+ <path
731
+ style="fill:#ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
732
+ d="m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3"
733
+ id="path3546-2-2"
734
+ inkscape:connector-curvature="0"
735
+ sodipodi:nodetypes="cccccccc" />
736
+ <rect
737
+ style="fill:#4c4c4c;fill-opacity:1;stroke:none;stroke-width:0"
738
+ id="svg_1-3"
739
+ height="16"
740
+ width="16"
741
+ y="28"
742
+ x="4" />
743
+ <path
744
+ sodipodi:nodetypes="ccccccccc"
745
+ inkscape:connector-curvature="0"
746
+ id="path4402-5-7"
747
+ d="m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9"
748
+ style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
749
+ </svg>