trestle-jsoneditor 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
+ SHA256:
3
+ metadata.gz: 2c6588bb282df8a6728b85511159b752b326a24471c140e63cbb750bc14b4638
4
+ data.tar.gz: 18e18ffc0de6a30790e52136a645ef5593393027123e5b859891a844e5eb36ed
5
+ SHA512:
6
+ metadata.gz: 42a69b857c6a15732c95d0e09677eb8cfb37fc5999959c4c6f89a83bd377ca42263a2fc7607c259dcf23dcf6ff02c36228719ce06b0af3c64e7993dc6ba6163c
7
+ data.tar.gz: 9593809dc7943d52ff3343dc4636aca9b8b36db914da16c6d4ac49ce51a9735f9e6dce36b667c121f40e6a0244a8a6e987504b0a76fd7fcfce6203cdc2a9ead6
data/.gitignore ADDED
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+
11
+ /node_modules
12
+
13
+ # rspec failure tracking
14
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in trestle-JSONEditor.gemspec
6
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,165 @@
1
+ GNU LESSER GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+
9
+ This version of the GNU Lesser General Public License incorporates
10
+ the terms and conditions of version 3 of the GNU General Public
11
+ License, supplemented by the additional permissions listed below.
12
+
13
+ 0. Additional Definitions.
14
+
15
+ As used herein, "this License" refers to version 3 of the GNU Lesser
16
+ General Public License, and the "GNU GPL" refers to version 3 of the GNU
17
+ General Public License.
18
+
19
+ "The Library" refers to a covered work governed by this License,
20
+ other than an Application or a Combined Work as defined below.
21
+
22
+ An "Application" is any work that makes use of an interface provided
23
+ by the Library, but which is not otherwise based on the Library.
24
+ Defining a subclass of a class defined by the Library is deemed a mode
25
+ of using an interface provided by the Library.
26
+
27
+ A "Combined Work" is a work produced by combining or linking an
28
+ Application with the Library. The particular version of the Library
29
+ with which the Combined Work was made is also called the "Linked
30
+ Version".
31
+
32
+ The "Minimal Corresponding Source" for a Combined Work means the
33
+ Corresponding Source for the Combined Work, excluding any source code
34
+ for portions of the Combined Work that, considered in isolation, are
35
+ based on the Application, and not on the Linked Version.
36
+
37
+ The "Corresponding Application Code" for a Combined Work means the
38
+ object code and/or source code for the Application, including any data
39
+ and utility programs needed for reproducing the Combined Work from the
40
+ Application, but excluding the System Libraries of the Combined Work.
41
+
42
+ 1. Exception to Section 3 of the GNU GPL.
43
+
44
+ You may convey a covered work under sections 3 and 4 of this License
45
+ without being bound by section 3 of the GNU GPL.
46
+
47
+ 2. Conveying Modified Versions.
48
+
49
+ If you modify a copy of the Library, and, in your modifications, a
50
+ facility refers to a function or data to be supplied by an Application
51
+ that uses the facility (other than as an argument passed when the
52
+ facility is invoked), then you may convey a copy of the modified
53
+ version:
54
+
55
+ a) under this License, provided that you make a good faith effort to
56
+ ensure that, in the event an Application does not supply the
57
+ function or data, the facility still operates, and performs
58
+ whatever part of its purpose remains meaningful, or
59
+
60
+ b) under the GNU GPL, with none of the additional permissions of
61
+ this License applicable to that copy.
62
+
63
+ 3. Object Code Incorporating Material from Library Header Files.
64
+
65
+ The object code form of an Application may incorporate material from
66
+ a header file that is part of the Library. You may convey such object
67
+ code under terms of your choice, provided that, if the incorporated
68
+ material is not limited to numerical parameters, data structure
69
+ layouts and accessors, or small macros, inline functions and templates
70
+ (ten or fewer lines in length), you do both of the following:
71
+
72
+ a) Give prominent notice with each copy of the object code that the
73
+ Library is used in it and that the Library and its use are
74
+ covered by this License.
75
+
76
+ b) Accompany the object code with a copy of the GNU GPL and this license
77
+ document.
78
+
79
+ 4. Combined Works.
80
+
81
+ You may convey a Combined Work under terms of your choice that,
82
+ taken together, effectively do not restrict modification of the
83
+ portions of the Library contained in the Combined Work and reverse
84
+ engineering for debugging such modifications, if you also do each of
85
+ the following:
86
+
87
+ a) Give prominent notice with each copy of the Combined Work that
88
+ the Library is used in it and that the Library and its use are
89
+ covered by this License.
90
+
91
+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
92
+ document.
93
+
94
+ c) For a Combined Work that displays copyright notices during
95
+ execution, include the copyright notice for the Library among
96
+ these notices, as well as a reference directing the user to the
97
+ copies of the GNU GPL and this license document.
98
+
99
+ d) Do one of the following:
100
+
101
+ 0) Convey the Minimal Corresponding Source under the terms of this
102
+ License, and the Corresponding Application Code in a form
103
+ suitable for, and under terms that permit, the user to
104
+ recombine or relink the Application with a modified version of
105
+ the Linked Version to produce a modified Combined Work, in the
106
+ manner specified by section 6 of the GNU GPL for conveying
107
+ Corresponding Source.
108
+
109
+ 1) Use a suitable shared library mechanism for linking with the
110
+ Library. A suitable mechanism is one that (a) uses at run time
111
+ a copy of the Library already present on the user's computer
112
+ system, and (b) will operate properly with a modified version
113
+ of the Library that is interface-compatible with the Linked
114
+ Version.
115
+
116
+ e) Provide Installation Information, but only if you would otherwise
117
+ be required to provide such information under section 6 of the
118
+ GNU GPL, and only to the extent that such information is
119
+ necessary to install and execute a modified version of the
120
+ Combined Work produced by recombining or relinking the
121
+ Application with a modified version of the Linked Version. (If
122
+ you use option 4d0, the Installation Information must accompany
123
+ the Minimal Corresponding Source and Corresponding Application
124
+ Code. If you use option 4d1, you must provide the Installation
125
+ Information in the manner specified by section 6 of the GNU GPL
126
+ for conveying Corresponding Source.)
127
+
128
+ 5. Combined Libraries.
129
+
130
+ You may place library facilities that are a work based on the
131
+ Library side by side in a single library together with other library
132
+ facilities that are not Applications and are not covered by this
133
+ License, and convey such a combined library under terms of your
134
+ choice, if you do both of the following:
135
+
136
+ a) Accompany the combined library with a copy of the same work based
137
+ on the Library, uncombined with any other library facilities,
138
+ conveyed under the terms of this License.
139
+
140
+ b) Give prominent notice with the combined library that part of it
141
+ is a work based on the Library, and explaining where to find the
142
+ accompanying uncombined form of the same work.
143
+
144
+ 6. Revised Versions of the GNU Lesser General Public License.
145
+
146
+ The Free Software Foundation may publish revised and/or new versions
147
+ of the GNU Lesser General Public License from time to time. Such new
148
+ versions will be similar in spirit to the present version, but may
149
+ differ in detail to address new problems or concerns.
150
+
151
+ Each version is given a distinguishing version number. If the
152
+ Library as you received it specifies that a certain numbered version
153
+ of the GNU Lesser General Public License "or any later version"
154
+ applies to it, you have the option of following the terms and
155
+ conditions either of that published version or of any later version
156
+ published by the Free Software Foundation. If the Library as you
157
+ received it does not specify a version number of the GNU Lesser
158
+ General Public License, you may choose any version of the GNU Lesser
159
+ General Public License ever published by the Free Software Foundation.
160
+
161
+ If the Library as you received it specifies that a proxy can decide
162
+ whether future versions of the GNU Lesser General Public License shall
163
+ apply, that proxy's public statement of acceptance of any version is
164
+ permanent authorization for you to choose that version for the
165
+ Library.
data/README.md ADDED
@@ -0,0 +1,42 @@
1
+ # Trestle jsoneditor Integration (trestle-jsoneditor)
2
+
3
+ > [JSONEditor](https://github.com/josdejong/jsoneditor) integration plugin for the Trestle admin framework
4
+
5
+
6
+ ## Getting Started
7
+
8
+ These instructions assume you have a working Trestle application. To integrate trestle-jsoneditor, first add it to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem 'trestle-jsoneditor'
12
+ ```
13
+
14
+ Run `bundle install`, and then restart your Rails server.
15
+
16
+ To add a JSONEditor editor to your form, use the `editor` (or `JSONEditor`) field type:
17
+
18
+ ```ruby
19
+ Trestle.resource(:articles) do
20
+ form do |article|
21
+ json_editor :internal_json_blob
22
+ end
23
+ end
24
+ ```
25
+
26
+ JSONEditor can be configured by defining options within `config/initializers/trestle.rb`. See https://github.com/josdejong/jsoneditor/blob/master/docs/api.md#configuration-options for the full list of configuration options. Configuration keys will be camel-cased when passed to JSONEditor.
27
+
28
+ ```ruby
29
+ Trestle.configure do |config|
30
+ config.jsoneditor.configure do |c|
31
+ c.mode = "tree"
32
+ end
33
+ end
34
+ ```
35
+
36
+ ## License
37
+
38
+ The gem is available as open source under the terms of the [LGPLv3 License](https://opensource.org/licenses/LGPL-3.0).
39
+
40
+ ## Thanks
41
+
42
+ This gem is a pretty close port of https://github.com/TrestleAdmin/trestle-simplemde by Sam Pohlenz, also the creator of Trestle. Thanks Sam!
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -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>