aboutsummaryrefslogtreecommitdiff
path: root/sources/skins
diff options
context:
space:
mode:
Diffstat (limited to 'sources/skins')
-rw-r--r--sources/skins/moono/colorpanel.css127
-rw-r--r--sources/skins/moono/dev/icons16.pngbin0 -> 29947 bytes
-rw-r--r--sources/skins/moono/dev/icons16.svg2374
-rw-r--r--sources/skins/moono/dev/icons32.pngbin0 -> 75488 bytes
-rw-r--r--sources/skins/moono/dev/icons32.svg2722
-rw-r--r--sources/skins/moono/dev/locations.json144
-rw-r--r--sources/skins/moono/dialog.css1060
-rw-r--r--sources/skins/moono/dialog_ie.css62
-rw-r--r--sources/skins/moono/dialog_ie7.css68
-rw-r--r--sources/skins/moono/dialog_ie8.css24
-rw-r--r--sources/skins/moono/dialog_iequirks.css21
-rw-r--r--sources/skins/moono/editor.css69
-rw-r--r--sources/skins/moono/editor_gecko.css25
-rw-r--r--sources/skins/moono/editor_ie.css71
-rw-r--r--sources/skins/moono/editor_ie7.css213
-rw-r--r--sources/skins/moono/editor_ie8.css27
-rw-r--r--sources/skins/moono/editor_iequirks.css79
-rw-r--r--sources/skins/moono/elementspath.css76
-rw-r--r--sources/skins/moono/images/arrow.pngbin0 -> 191 bytes
-rw-r--r--sources/skins/moono/images/close.pngbin0 -> 468 bytes
-rw-r--r--sources/skins/moono/images/hidpi/close.pngbin0 -> 1271 bytes
-rw-r--r--sources/skins/moono/images/hidpi/lock-open.pngbin0 -> 1329 bytes
-rw-r--r--sources/skins/moono/images/hidpi/lock.pngbin0 -> 1299 bytes
-rw-r--r--sources/skins/moono/images/hidpi/refresh.pngbin0 -> 1842 bytes
-rw-r--r--sources/skins/moono/images/lock-open.pngbin0 -> 349 bytes
-rw-r--r--sources/skins/moono/images/lock.pngbin0 -> 475 bytes
-rw-r--r--sources/skins/moono/images/refresh.pngbin0 -> 422 bytes
-rw-r--r--sources/skins/moono/images/spinner.gifbin0 -> 2984 bytes
-rw-r--r--sources/skins/moono/mainui.css214
-rw-r--r--sources/skins/moono/menu.css201
-rw-r--r--sources/skins/moono/notification.css168
-rw-r--r--sources/skins/moono/panel.css237
-rw-r--r--sources/skins/moono/presets.css41
-rw-r--r--sources/skins/moono/readme.md49
-rw-r--r--sources/skins/moono/reset.css115
-rw-r--r--sources/skins/moono/richcombo.css210
-rw-r--r--sources/skins/moono/skin.js319
-rw-r--r--sources/skins/moono/toolbar.css387
38 files changed, 9103 insertions, 0 deletions
diff --git a/sources/skins/moono/colorpanel.css b/sources/skins/moono/colorpanel.css
new file mode 100644
index 0000000..8012f24
--- /dev/null
+++ b/sources/skins/moono/colorpanel.css
@@ -0,0 +1,127 @@
1/*
2Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6/*
7colorpanel.css (part of editor.css)
8=====================================
9
10The color panel is related to the contents part of the panels that are
11displayed when clicking the color buttons of the toolbar. See panels.css for
12styles related to the outer part of panels.
13
14The following is the visual representation of the color panel contents:
15
16+-- .cke_panel_block.cke_colorblock --+
17| +-- a.cke_colorauto --------------+ |
18| | | |
19| | AUTOMATIC COLOR | |
20| | | |
21| +---------------------------------+ |
22| +-- table ------------------------+ |
23| | | |
24| | COLOR PALETTE | |
25| | | |
26| |---------------------------------| |
27| | "More Colors" | |
28| +---------------------------------+ |
29+-------------------------------------+
30
31The AUTOMATIC COLOR section is an <a> containing a table with two cells with
32the following contents:
33
34+-- TD -----------------+ +-- TD -----------------+
35| +-- .cke_colorbox --+ | | |
36| | | | | "Automatic" |
37| +-------------------+ | | |
38+-----------------------+ +-----------------------+
39
40The COLOR PALETTE section instead is a table with a variable number of cells
41(by default 8). Each cell represents a color box, with the following structure:
42
43+-- A.cke_colorbox ---------+
44| +-- SPAN.cke_colorbox --+ |
45| | | |
46| +-----------------------+ |
47+---------------------------+
48*/
49
50/* The container of the color palette. */
51.cke_colorblock
52{
53 padding: 3px;
54 font-size: 11px;
55 font-family: 'Microsoft Sans Serif', Tahoma, Arial, Verdana, Sans-Serif;
56}
57
58.cke_colorblock,
59.cke_colorblock a
60{
61 text-decoration: none;
62 color: #000;
63}
64
65/* The box which is to represent a single color on the color palette.
66 It is a small, square-shaped element which can be selected from the palette. */
67span.cke_colorbox
68{
69 width: 10px;
70 height: 10px;
71 border: #808080 1px solid;
72 float: left;
73}
74
75.cke_rtl span.cke_colorbox
76{
77 float: right;
78}
79
80/* The wrapper of the span.cke_colorbox. It provides an extra border and padding. */
81a.cke_colorbox
82{
83 border: #fff 1px solid;
84 padding: 2px;
85 float: left;
86 width: 12px;
87 height: 12px;
88}
89
90.cke_rtl a.cke_colorbox
91{
92 float: right;
93}
94
95/* Different states of the a.cke_colorbox wrapper. */
96a:hover.cke_colorbox,
97a:focus.cke_colorbox,
98a:active.cke_colorbox
99{
100 border: #b6b6b6 1px solid;
101 background-color: #e5e5e5;
102}
103
104/* Buttons which are visible at the top/bottom of the color palette:
105 - cke_colorauto (TOP) applies the automatic color.
106 - cke_colormore (BOTTOM) executes the color dialog.
107*/
108a.cke_colorauto,
109a.cke_colormore
110{
111 border: #fff 1px solid;
112 padding: 2px;
113 display: block;
114 cursor: pointer;
115}
116
117/* Different states of cke_colorauto/cke_colormore buttons. */
118a:hover.cke_colorauto,
119a:hover.cke_colormore,
120a:focus.cke_colorauto,
121a:focus.cke_colormore,
122a:active.cke_colorauto,
123a:active.cke_colormore
124{
125 border: #b6b6b6 1px solid;
126 background-color: #e5e5e5;
127}
diff --git a/sources/skins/moono/dev/icons16.png b/sources/skins/moono/dev/icons16.png
new file mode 100644
index 0000000..a919742
--- /dev/null
+++ b/sources/skins/moono/dev/icons16.png
Binary files differ
diff --git a/sources/skins/moono/dev/icons16.svg b/sources/skins/moono/dev/icons16.svg
new file mode 100644
index 0000000..5719d3e
--- /dev/null
+++ b/sources/skins/moono/dev/icons16.svg
@@ -0,0 +1,2374 @@
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
4<svg
5 xmlns:dc="http://purl.org/dc/elements/1.1/"
6 xmlns:cc="http://creativecommons.org/ns#"
7 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8 xmlns:svg="http://www.w3.org/2000/svg"
9 xmlns="http://www.w3.org/2000/svg"
10 xmlns:xlink="http://www.w3.org/1999/xlink"
11 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13 version="1.1"
14 id="Layer_1"
15 x="0px"
16 y="0px"
17 width="496.00443"
18 height="368.00006"
19 viewBox="0 0 496.00443 368.00004"
20 enable-background="new 0 0 612 792"
21 xml:space="preserve"
22 inkscape:version="0.48.3.1 r9886"
23 sodipodi:docname="icons16.svg"
24 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/skins/moono/dev/icons16.png"
25 inkscape:export-xdpi="90"
26 inkscape:export-ydpi="90"><metadata
27 id="metadata9"><rdf:RDF><cc:Work
28 rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
29 rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
30 id="defs7"><marker
31 inkscape:stockid="DiamondLstart"
32 orient="auto"
33 refY="0.0"
34 refX="0.0"
35 id="DiamondLstart"
36 style="overflow:visible"><path
37 id="path4964"
38 d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
39 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt"
40 transform="scale(0.8) translate(7,0)" /></marker><linearGradient
41 inkscape:collect="always"
42 id="linearGradient4352"><stop
43 style="stop-color:#ff4141;stop-opacity:0"
44 offset="0"
45 id="stop4354" /><stop
46 id="stop4362"
47 offset="0.24227905"
48 style="stop-color:#ff4141;stop-opacity:0.78823529;" /><stop
49 id="stop4360"
50 offset="0.73632693"
51 style="stop-color:#ff4141;stop-opacity:0" /><stop
52 style="stop-color:#ff4141;stop-opacity:1"
53 offset="1"
54 id="stop4356" /></linearGradient><linearGradient
55 id="linearGradient4392"><stop
56 style="stop-color:#666666;stop-opacity:1;"
57 offset="0"
58 id="stop4394" /><stop
59 style="stop-color:#424242;stop-opacity:1;"
60 offset="1"
61 id="stop4396" /></linearGradient><linearGradient
62 id="linearGradient4392-45"><stop
63 style="stop-color:#666666;stop-opacity:1;"
64 offset="0"
65 id="stop4394-8" /><stop
66 style="stop-color:#424242;stop-opacity:1;"
67 offset="1"
68 id="stop4396-68" /></linearGradient><linearGradient
69 id="linearGradient4392-7-7"><stop
70 style="stop-color:#666666;stop-opacity:1;"
71 offset="0"
72 id="stop4394-2-8" /><stop
73 style="stop-color:#424242;stop-opacity:1;"
74 offset="1"
75 id="stop4396-7-9" /></linearGradient><filter
76 id="filter3224-1-7-1"
77 inkscape:label="Inner Shadow"
78 inkscape:menu="Shadows and Glows"
79 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
80 color-interpolation-filters="sRGB"
81 width="1"
82 height="1"
83 y="0"
84 x="0"><feOffset
85 id="feOffset3228-5-5-5"
86 dx="0"
87 dy="1.2"
88 result="result11" /><feComposite
89 id="feComposite3230-2-4-1"
90 in2="result11"
91 result="result6"
92 in="SourceGraphic"
93 operator="in" /><feFlood
94 id="feFlood3232-7-3-4"
95 result="result10"
96 in="result6"
97 flood-opacity="1"
98 flood-color="rgb(34,34,34)" /><feBlend
99 id="feBlend3234-6-3-5"
100 in2="result10"
101 mode="normal"
102 in="result6"
103 result="result12" /><feComposite
104 id="feComposite3236-1-3-5"
105 in2="SourceGraphic"
106 result="result2"
107 operator="in" /></filter><filter
108 id="filter3224-1-7-1-3"
109 inkscape:label="Inner Shadow"
110 inkscape:menu="Shadows and Glows"
111 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
112 color-interpolation-filters="sRGB"
113 width="1"
114 height="1"
115 y="0"
116 x="0"><feOffset
117 id="feOffset3228-5-5-5-70"
118 dx="0"
119 dy="1.2"
120 result="result11" /><feComposite
121 id="feComposite3230-2-4-1-9"
122 in2="result11"
123 result="result6"
124 in="SourceGraphic"
125 operator="in" /><feFlood
126 id="feFlood3232-7-3-4-91"
127 result="result10"
128 in="result6"
129 flood-opacity="1"
130 flood-color="rgb(34,34,34)" /><feBlend
131 id="feBlend3234-6-3-5-53"
132 in2="result10"
133 mode="normal"
134 in="result6"
135 result="result12" /><feComposite
136 id="feComposite3236-1-3-5-3"
137 in2="SourceGraphic"
138 result="result2"
139 operator="in" /></filter><linearGradient
140 inkscape:collect="always"
141 xlink:href="#linearGradient4392-45"
142 id="linearGradient4838"
143 gradientUnits="userSpaceOnUse"
144 gradientTransform="matrix(1.33333,0,0,1.33333,48.36541,-271.81697)"
145 x1="91"
146 y1="204"
147 x2="91"
148 y2="216" /><linearGradient
149 inkscape:collect="always"
150 xlink:href="#linearGradient4392-45"
151 id="linearGradient4840"
152 gradientUnits="userSpaceOnUse"
153 gradientTransform="matrix(-1,0,0,-1,511,96.250061)"
154 x1="472"
155 y1="17"
156 x2="472"
157 y2="31" /><linearGradient
158 inkscape:collect="always"
159 xlink:href="#linearGradient4392-45"
160 id="linearGradient4842"
161 gradientUnits="userSpaceOnUse"
162 gradientTransform="translate(47.88294,17.406131)"
163 x1="55"
164 y1="51"
165 x2="55"
166 y2="63" /><linearGradient
167 inkscape:collect="always"
168 xlink:href="#linearGradient4392-45"
169 id="linearGradient4844"
170 gradientUnits="userSpaceOnUse"
171 gradientTransform="translate(-95,49.250061)"
172 x1="136"
173 y1="50"
174 x2="136"
175 y2="62" /><linearGradient
176 inkscape:collect="always"
177 xlink:href="#linearGradient4392-45"
178 id="linearGradient4846"
179 gradientUnits="userSpaceOnUse"
180 gradientTransform="translate(-15,49.250061)"
181 x1="120"
182 y1="50"
183 x2="120"
184 y2="62" /><linearGradient
185 inkscape:collect="always"
186 xlink:href="#linearGradient4392-45"
187 id="linearGradient4848"
188 gradientUnits="userSpaceOnUse"
189 gradientTransform="translate(-79,49.250061)"
190 x1="88"
191 y1="50"
192 x2="88"
193 y2="63" /><linearGradient
194 inkscape:collect="always"
195 xlink:href="#linearGradient4392-45"
196 id="linearGradient4850"
197 gradientUnits="userSpaceOnUse"
198 gradientTransform="translate(-271,80.250061)"
199 x1="343"
200 y1="50"
201 x2="343"
202 y2="63" /><linearGradient
203 inkscape:collect="always"
204 xlink:href="#linearGradient4392-45"
205 id="linearGradient4852"
206 gradientUnits="userSpaceOnUse"
207 gradientTransform="translate(148,91.176371)"
208 x1="148"
209 y1="73.073685"
210 x2="148"
211 y2="84.073685" /><linearGradient
212 inkscape:collect="always"
213 xlink:href="#linearGradient4392-45"
214 id="linearGradient4856"
215 gradientUnits="userSpaceOnUse"
216 gradientTransform="translate(-367,176.25006)"
217 x1="407"
218 y1="113"
219 x2="407"
220 y2="127" /><linearGradient
221 inkscape:collect="always"
222 xlink:href="#linearGradient4392-45"
223 id="linearGradient4858"
224 gradientUnits="userSpaceOnUse"
225 gradientTransform="matrix(1.1649013,0,0,1.1649013,-385.36445,145.3613)"
226 x1="365"
227 y1="96.073685"
228 x2="365"
229 y2="108.07368" /><linearGradient
230 inkscape:collect="always"
231 xlink:href="#linearGradient4392-45"
232 id="linearGradient4860"
233 gradientUnits="userSpaceOnUse"
234 gradientTransform="matrix(1.33333,0,0,1.33333,-414.467,95.072771)"
235 x1="365"
236 y1="73.073685"
237 x2="365"
238 y2="84.073685" /><linearGradient
239 inkscape:collect="always"
240 xlink:href="#linearGradient4392-45"
241 id="linearGradient4862"
242 gradientUnits="userSpaceOnUse"
243 gradientTransform="matrix(1.1673123,0,0,1.1673123,-226.67995,74.209541)"
244 x1="366"
245 y1="48.073685"
246 x2="366"
247 y2="60.073685" /><linearGradient
248 inkscape:collect="always"
249 xlink:href="#linearGradient4392-45"
250 id="linearGradient4864"
251 gradientUnits="userSpaceOnUse"
252 gradientTransform="matrix(1.1111083,0,0,1.1111083,-186.99896,-192.59658)"
253 x1="378"
254 y1="205"
255 x2="378"
256 y2="214" /><linearGradient
257 inkscape:collect="always"
258 xlink:href="#linearGradient4392-45"
259 id="linearGradient4866"
260 gradientUnits="userSpaceOnUse"
261 gradientTransform="translate(178.99998,90.187541)"
262 x1="246"
263 y1="73.073685"
264 x2="246"
265 y2="84.073685" /><linearGradient
266 inkscape:collect="always"
267 xlink:href="#linearGradient4392-45"
268 id="linearGradient4868"
269 gradientUnits="userSpaceOnUse"
270 gradientTransform="translate(170.99998,90.187541)"
271 x1="222"
272 y1="73.073685"
273 x2="222"
274 y2="84.073685" /><linearGradient
275 inkscape:collect="always"
276 xlink:href="#linearGradient4392-45"
277 id="linearGradient4870"
278 gradientUnits="userSpaceOnUse"
279 gradientTransform="matrix(1.0131693,0,0,1.0131693,160.31347,89.185861)"
280 x1="197"
281 y1="73.073685"
282 x2="197"
283 y2="84.073685" /><linearGradient
284 inkscape:collect="always"
285 xlink:href="#linearGradient4392-45"
286 id="linearGradient4872"
287 gradientUnits="userSpaceOnUse"
288 gradientTransform="translate(154.99998,90.187541)"
289 x1="171"
290 y1="73.073685"
291 x2="171"
292 y2="84.073685" /><linearGradient
293 inkscape:collect="always"
294 xlink:href="#linearGradient4392-45"
295 id="linearGradient4874"
296 gradientUnits="userSpaceOnUse"
297 gradientTransform="matrix(1.2458722,0,0,1.1615489,-281.43958,-203.65157)"
298 x1="233"
299 y1="204"
300 x2="233"
301 y2="216" /><linearGradient
302 inkscape:collect="always"
303 xlink:href="#linearGradient4392-45"
304 id="linearGradient4876"
305 gradientUnits="userSpaceOnUse"
306 gradientTransform="matrix(1.1666672,0,0,1.1723864,-10.00007,112.59337)"
307 x1="126"
308 y1="96.073685"
309 x2="126"
310 y2="108.07368" /><linearGradient
311 inkscape:collect="always"
312 xlink:href="#linearGradient4392-45"
313 id="linearGradient4878"
314 gradientUnits="userSpaceOnUse"
315 gradientTransform="matrix(1.33333,0,0,1.1621519,95.65429,77.66723)"
316 x1="124"
317 y1="74.073685"
318 x2="124"
319 y2="82.073685" /><linearGradient
320 inkscape:collect="always"
321 xlink:href="#linearGradient4392-45"
322 id="linearGradient4880"
323 gradientUnits="userSpaceOnUse"
324 gradientTransform="matrix(1.1666666,0,0,1.1666669,-22,113.17048)"
325 x1="54"
326 y1="96.073685"
327 x2="54"
328 y2="108.07368" /><linearGradient
329 inkscape:collect="always"
330 xlink:href="#linearGradient4392-45"
331 id="linearGradient4882"
332 gradientUnits="userSpaceOnUse"
333 gradientTransform="matrix(1.33333,0,0,1.33333,-111.63459,-272.81697)"
334 x1="91"
335 y1="204"
336 x2="91"
337 y2="216" /><linearGradient
338 inkscape:collect="always"
339 xlink:href="#linearGradient4392-45"
340 id="linearGradient4884"
341 gradientUnits="userSpaceOnUse"
342 gradientTransform="matrix(1.33333,0,0,1.33333,-111.63459,-272.81697)"
343 x1="91"
344 y1="204"
345 x2="91"
346 y2="216" /><linearGradient
347 inkscape:collect="always"
348 xlink:href="#linearGradient4392-45"
349 id="linearGradient4886"
350 gradientUnits="userSpaceOnUse"
351 gradientTransform="matrix(1.1458395,0,0,1.1458395,-24.974994,183.6777)"
352 x1="30"
353 y1="120.07368"
354 x2="30"
355 y2="132.07368" /><linearGradient
356 inkscape:collect="always"
357 xlink:href="#linearGradient4392-45"
358 id="linearGradient4888"
359 gradientUnits="userSpaceOnUse"
360 gradientTransform="matrix(1.2584059,0,0,1.2584059,-26.9426,202.63781)"
361 x1="54"
362 y1="122.07368"
363 x2="54"
364 y2="130.07368" /><linearGradient
365 inkscape:collect="always"
366 xlink:href="#linearGradient4392-45"
367 id="linearGradient4890"
368 gradientUnits="userSpaceOnUse"
369 gradientTransform="matrix(1.1739937,0,0,1.1739937,-39.36396,212.27908)"
370 x1="150"
371 y1="120.07368"
372 x2="150"
373 y2="132.07368" /><linearGradient
374 inkscape:collect="always"
375 xlink:href="#linearGradient4392-45"
376 id="linearGradient4892"
377 gradientUnits="userSpaceOnUse"
378 gradientTransform="matrix(1.33333,0,0,1.33333,-30.36848,96.482511)"
379 x1="150"
380 y1="97.073685"
381 x2="150"
382 y2="107.07368" /><linearGradient
383 inkscape:collect="always"
384 xlink:href="#linearGradient4392-45"
385 id="linearGradient4894"
386 gradientUnits="userSpaceOnUse"
387 gradientTransform="matrix(1.1666648,0,0,1.1666669,34.00037,113.17712)"
388 x1="198"
389 y1="96.073685"
390 x2="198"
391 y2="108.07368" /><linearGradient
392 inkscape:collect="always"
393 xlink:href="#linearGradient4392-45"
394 id="linearGradient4898"
395 gradientUnits="userSpaceOnUse"
396 gradientTransform="translate(97,-203.74994)"
397 x1="136"
398 y1="204"
399 x2="136"
400 y2="220" /><linearGradient
401 inkscape:collect="always"
402 xlink:href="#linearGradient4392-45"
403 id="linearGradient4900"
404 gradientUnits="userSpaceOnUse"
405 gradientTransform="translate(-111,48.250061)"
406 x1="184"
407 y1="50"
408 x2="184"
409 y2="62" /><linearGradient
410 inkscape:collect="always"
411 xlink:href="#linearGradient4392-45"
412 id="linearGradient4904"
413 gradientUnits="userSpaceOnUse"
414 gradientTransform="translate(81,48.250061)"
415 x1="216"
416 y1="51.999996"
417 x2="216"
418 y2="59.999996" /><linearGradient
419 inkscape:collect="always"
420 xlink:href="#linearGradient4392-45"
421 id="linearGradient4906"
422 gradientUnits="userSpaceOnUse"
423 gradientTransform="translate(-271,79.250061)"
424 x1="407"
425 y1="51"
426 x2="407"
427 y2="62" /><linearGradient
428 inkscape:collect="always"
429 xlink:href="#linearGradient4392-45"
430 id="linearGradient4908"
431 gradientUnits="userSpaceOnUse"
432 gradientTransform="translate(-239,78.250061)"
433 x1="407"
434 y1="51"
435 x2="407"
436 y2="62" /><linearGradient
437 inkscape:collect="always"
438 xlink:href="#linearGradient4392-45"
439 id="linearGradient4910"
440 gradientUnits="userSpaceOnUse"
441 gradientTransform="translate(-79,48.250061)"
442 x1="87"
443 y1="16.999994"
444 x2="87"
445 y2="30.999994" /><linearGradient
446 inkscape:collect="always"
447 xlink:href="#linearGradient4392-45"
448 id="linearGradient4912"
449 gradientUnits="userSpaceOnUse"
450 gradientTransform="matrix(-1.1111083,0,0,1.1111083,716.999,-192.59658)"
451 x1="378"
452 y1="205"
453 x2="378"
454 y2="214" /><linearGradient
455 inkscape:collect="always"
456 xlink:href="#linearGradient4392-45"
457 id="linearGradient4914"
458 gradientUnits="userSpaceOnUse"
459 gradientTransform="translate(17,80.250061)"
460 x1="57"
461 y1="83"
462 x2="57"
463 y2="94" /><linearGradient
464 inkscape:collect="always"
465 xlink:href="#linearGradient4392-45"
466 id="linearGradient4916"
467 gradientUnits="userSpaceOnUse"
468 gradientTransform="translate(49,80.250061)"
469 x1="87"
470 y1="82"
471 x2="87"
472 y2="95" /><linearGradient
473 inkscape:collect="always"
474 xlink:href="#linearGradient4392-45"
475 id="linearGradient4918"
476 gradientUnits="userSpaceOnUse"
477 gradientTransform="matrix(-1,0,0,1,321,80.250061)"
478 x1="87"
479 y1="82"
480 x2="87"
481 y2="95" /><linearGradient
482 inkscape:collect="always"
483 xlink:href="#linearGradient4392-45"
484 id="linearGradient4920"
485 gradientUnits="userSpaceOnUse"
486 gradientTransform="translate(113,81.250061)"
487 x1="344"
488 y1="82"
489 x2="344"
490 y2="93" /><linearGradient
491 inkscape:collect="always"
492 xlink:href="#linearGradient4392-45"
493 id="linearGradient4922"
494 gradientUnits="userSpaceOnUse"
495 gradientTransform="translate(113,81.250061)"
496 x1="375"
497 y1="82"
498 x2="375"
499 y2="93" /><linearGradient
500 inkscape:collect="always"
501 xlink:href="#linearGradient4392-45"
502 id="linearGradient4924"
503 gradientUnits="userSpaceOnUse"
504 gradientTransform="matrix(1.2587978,0,0,1.2587978,-390.22595,101.39303)"
505 x1="340"
506 y1="75.073685"
507 x2="340"
508 y2="84.073685" /><linearGradient
509 inkscape:collect="always"
510 xlink:href="#linearGradient4392-45"
511 id="linearGradient4926"
512 gradientUnits="userSpaceOnUse"
513 gradientTransform="translate(49,80.250061)"
514 x1="87"
515 y1="82"
516 x2="87"
517 y2="95" /><linearGradient
518 inkscape:collect="always"
519 xlink:href="#linearGradient4392-45"
520 id="linearGradient4928"
521 gradientUnits="userSpaceOnUse"
522 gradientTransform="translate(81.11142,80.250041)"
523 x1="87"
524 y1="82"
525 x2="87"
526 y2="95" /><linearGradient
527 inkscape:collect="always"
528 xlink:href="#linearGradient4392-45"
529 id="linearGradient4930"
530 gradientUnits="userSpaceOnUse"
531 gradientTransform="matrix(-1,0,0,1,289,80.250051)"
532 x1="87"
533 y1="82"
534 x2="87"
535 y2="95" /><linearGradient
536 inkscape:collect="always"
537 xlink:href="#linearGradient4392-45"
538 id="linearGradient4932"
539 gradientUnits="userSpaceOnUse"
540 gradientTransform="translate(-15,112.25006)"
541 x1="24"
542 y1="114"
543 x2="24"
544 y2="126" /><linearGradient
545 inkscape:collect="always"
546 xlink:href="#linearGradient4392-45"
547 id="linearGradient4934"
548 gradientUnits="userSpaceOnUse"
549 gradientTransform="translate(-15,112.25006)"
550 x1="216"
551 y1="115"
552 x2="216"
553 y2="126" /><linearGradient
554 inkscape:collect="always"
555 xlink:href="#linearGradient4392-45"
556 id="linearGradient4936"
557 gradientUnits="userSpaceOnUse"
558 gradientTransform="translate(207,48.250051)"
559 x1="120"
560 y1="50"
561 x2="120"
562 y2="62" /><linearGradient
563 inkscape:collect="always"
564 xlink:href="#linearGradient4392-45"
565 id="linearGradient4938"
566 gradientUnits="userSpaceOnUse"
567 gradientTransform="translate(16,48.250051)"
568 x1="120"
569 y1="50"
570 x2="120"
571 y2="62" /><linearGradient
572 inkscape:collect="always"
573 xlink:href="#linearGradient4392-45"
574 id="linearGradient4940"
575 gradientUnits="userSpaceOnUse"
576 gradientTransform="translate(81.18519,49.361171)"
577 x1="120"
578 y1="50"
579 x2="120"
580 y2="62" /><linearGradient
581 inkscape:collect="always"
582 xlink:href="#linearGradient4392-45"
583 id="linearGradient4944"
584 gradientUnits="userSpaceOnUse"
585 gradientTransform="matrix(0.95906074,0,0,0.83983765,-245.54139,86.680785)"
586 x1="263.14438"
587 y1="53.202732"
588 x2="263.14438"
589 y2="65.97139" /><linearGradient
590 inkscape:collect="always"
591 xlink:href="#linearGradient4392-45"
592 id="linearGradient4946"
593 gradientUnits="userSpaceOnUse"
594 x1="324.89481"
595 y1="49.999996"
596 x2="327.98953"
597 y2="61.999996" /><linearGradient
598 inkscape:collect="always"
599 xlink:href="#linearGradient4392-45"
600 id="linearGradient4948"
601 gradientUnits="userSpaceOnUse"
602 x1="324.89481"
603 y1="49.999996"
604 x2="327.98953"
605 y2="61.999996" /><linearGradient
606 inkscape:collect="always"
607 xlink:href="#linearGradient4392-45"
608 id="linearGradient4950"
609 gradientUnits="userSpaceOnUse"
610 x1="263.14438"
611 y1="53.202732"
612 x2="263.14438"
613 y2="65.97139" /><linearGradient
614 inkscape:collect="always"
615 xlink:href="#linearGradient4392-45"
616 id="linearGradient4952"
617 gradientUnits="userSpaceOnUse"
618 x1="263.14438"
619 y1="53.202732"
620 x2="263.14438"
621 y2="65.97139" /><linearGradient
622 inkscape:collect="always"
623 xlink:href="#linearGradient4392-45"
624 id="linearGradient4954"
625 gradientUnits="userSpaceOnUse"
626 gradientTransform="matrix(-1.1111083,0,0,1.1111083,684.999,-192.59658)"
627 x1="378"
628 y1="205"
629 x2="378"
630 y2="214" /><linearGradient
631 inkscape:collect="always"
632 xlink:href="#linearGradient4392-45"
633 id="linearGradient4956"
634 gradientUnits="userSpaceOnUse"
635 gradientTransform="matrix(1.1111083,0,0,1.1111083,-90.99896,-192.59658)"
636 x1="378"
637 y1="205"
638 x2="378"
639 y2="214" /><linearGradient
640 inkscape:collect="always"
641 xlink:href="#linearGradient4392-45"
642 id="linearGradient4958"
643 gradientUnits="userSpaceOnUse"
644 gradientTransform="matrix(-1,0,0,1,352.81481,49.361171)"
645 x1="120"
646 y1="50"
647 x2="120"
648 y2="62" /><linearGradient
649 inkscape:collect="always"
650 xlink:href="#linearGradient4392-45"
651 id="linearGradient4960"
652 gradientUnits="userSpaceOnUse"
653 gradientTransform="matrix(-1.33333,0,0,1.33333,593.467,95.072771)"
654 x1="365"
655 y1="73.073685"
656 x2="365"
657 y2="84.073685" /><linearGradient
658 inkscape:collect="always"
659 xlink:href="#linearGradient4392-45"
660 id="linearGradient4962"
661 gradientUnits="userSpaceOnUse"
662 gradientTransform="matrix(-1,0,0,1,481,176.25006)"
663 x1="407"
664 y1="113"
665 x2="407"
666 y2="127" /><linearGradient
667 inkscape:collect="always"
668 xlink:href="#linearGradient4392-7-7"
669 id="linearGradient4964"
670 gradientUnits="userSpaceOnUse"
671 gradientTransform="translate(-207,-111.74995)"
672 x1="280"
673 y1="112"
674 x2="280"
675 y2="128" /><linearGradient
676 inkscape:collect="always"
677 xlink:href="#linearGradient4392-45"
678 id="linearGradient4966"
679 gradientUnits="userSpaceOnUse"
680 gradientTransform="translate(57,80.250061)"
681 x1="57"
682 y1="83"
683 x2="57"
684 y2="94" /><linearGradient
685 inkscape:collect="always"
686 xlink:href="#linearGradient4392-45"
687 id="linearGradient4968"
688 gradientUnits="userSpaceOnUse"
689 gradientTransform="matrix(-1,0,0,1,449,112.25006)"
690 x1="216"
691 y1="115"
692 x2="216"
693 y2="126" /><linearGradient
694 inkscape:collect="always"
695 xlink:href="#linearGradient4392-45"
696 id="linearGradient4970"
697 gradientUnits="userSpaceOnUse"
698 gradientTransform="matrix(1.1666672,0,0,1.1723864,-106.00007,208.59337)"
699 x1="126"
700 y1="96.073685"
701 x2="126"
702 y2="108.07368" /><linearGradient
703 inkscape:collect="always"
704 xlink:href="#linearGradient4392"
705 id="linearGradient4972"
706 gradientUnits="userSpaceOnUse"
707 x1="104"
708 y1="230.99998"
709 x2="104"
710 y2="232.99998"
711 gradientTransform="translate(1.0000001,0.25006141)" /><linearGradient
712 inkscape:collect="always"
713 xlink:href="#linearGradient4392-45"
714 id="linearGradient4974"
715 gradientUnits="userSpaceOnUse"
716 gradientTransform="translate(47,47.99999)"
717 x1="120"
718 y1="50"
719 x2="120"
720 y2="62" /><linearGradient
721 inkscape:collect="always"
722 xlink:href="#linearGradient4392-45"
723 id="linearGradient4980"
724 gradientUnits="userSpaceOnUse"
725 gradientTransform="matrix(1.33333,0,0,1.33333,144.36541,-271.81697)"
726 x1="91"
727 y1="204"
728 x2="91"
729 y2="216" /><linearGradient
730 inkscape:collect="always"
731 xlink:href="#linearGradient4392-45"
732 id="linearGradient4982"
733 gradientUnits="userSpaceOnUse"
734 gradientTransform="matrix(1.33333,0,0,1.33333,-111.63459,-271.81697)"
735 x1="91"
736 y1="204"
737 x2="91"
738 y2="216" /><linearGradient
739 inkscape:collect="always"
740 xlink:href="#linearGradient4392-45"
741 id="linearGradient4984"
742 gradientUnits="userSpaceOnUse"
743 gradientTransform="matrix(1.33333,0,0,1.33333,-80.63459,-273.06703)"
744 x1="91"
745 y1="204"
746 x2="91"
747 y2="216" /><linearGradient
748 inkscape:collect="always"
749 xlink:href="#linearGradient4392-45"
750 id="linearGradient4986"
751 gradientUnits="userSpaceOnUse"
752 gradientTransform="matrix(1.33333,0,0,1.33333,-80.63459,-273.06703)"
753 x1="91"
754 y1="204"
755 x2="91"
756 y2="216" /><linearGradient
757 inkscape:collect="always"
758 xlink:href="#linearGradient4392-45"
759 id="linearGradient4988"
760 gradientUnits="userSpaceOnUse"
761 gradientTransform="matrix(1.33333,0,0,1.33333,-79.63459,-272.06703)"
762 x1="91"
763 y1="204"
764 x2="91"
765 y2="216" /><linearGradient
766 inkscape:collect="always"
767 xlink:href="#linearGradient4392-45"
768 id="linearGradient4990"
769 gradientUnits="userSpaceOnUse"
770 gradientTransform="matrix(1.33333,0,0,1.33333,-15.63459,-271.81697)"
771 x1="91"
772 y1="204"
773 x2="91"
774 y2="216" /><linearGradient
775 inkscape:collect="always"
776 xlink:href="#linearGradient4392-45"
777 id="linearGradient4992"
778 gradientUnits="userSpaceOnUse"
779 gradientTransform="matrix(1.33333,0,0,1.33333,16.36541,-272.06703)"
780 x1="91"
781 y1="204"
782 x2="91"
783 y2="216" /><linearGradient
784 inkscape:collect="always"
785 xlink:href="#linearGradient4392-45"
786 id="linearGradient4994"
787 gradientUnits="userSpaceOnUse"
788 gradientTransform="matrix(1.33333,0,0,1.33333,176.36541,-271.81697)"
789 x1="91"
790 y1="204"
791 x2="91"
792 y2="216" /><linearGradient
793 inkscape:collect="always"
794 xlink:href="#linearGradient4392-45"
795 id="linearGradient4996"
796 gradientUnits="userSpaceOnUse"
797 gradientTransform="matrix(1.33333,0,0,1.33333,-80.63459,-244.81697)"
798 x1="91"
799 y1="204"
800 x2="91"
801 y2="216" /><linearGradient
802 inkscape:collect="always"
803 xlink:href="#linearGradient4392-45"
804 id="linearGradient5002"
805 gradientUnits="userSpaceOnUse"
806 gradientTransform="matrix(1.33333,0,0,1.33333,67.36541,-272.06703)"
807 x1="91"
808 y1="204"
809 x2="91"
810 y2="216" /><linearGradient
811 inkscape:collect="always"
812 xlink:href="#linearGradient4392-45"
813 id="linearGradient5004"
814 gradientUnits="userSpaceOnUse"
815 gradientTransform="matrix(1.33333,0,0,1.33333,208.36541,-272.06703)"
816 x1="91"
817 y1="204"
818 x2="91"
819 y2="216" /><linearGradient
820 inkscape:collect="always"
821 xlink:href="#linearGradient4392"
822 id="linearGradient6476"
823 gradientUnits="userSpaceOnUse"
824 gradientTransform="translate(17,-2.7499485)"
825 x1="56"
826 y1="225"
827 x2="56"
828 y2="239" /><linearGradient
829 id="linearGradient4392-45-3"><stop
830 style="stop-color:#666666;stop-opacity:1;"
831 offset="0"
832 id="stop4394-8-2" /><stop
833 style="stop-color:#424242;stop-opacity:1;"
834 offset="1"
835 id="stop4396-68-9" /></linearGradient><filter
836 id="filter3224-1-7-1-2"
837 inkscape:label="Inner Shadow"
838 inkscape:menu="Shadows and Glows"
839 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
840 color-interpolation-filters="sRGB"
841 width="1"
842 height="1"
843 y="0"
844 x="0"><feOffset
845 id="feOffset3228-5-5-5-0"
846 dx="0"
847 dy="1.2"
848 result="result11" /><feComposite
849 id="feComposite3230-2-4-1-5"
850 in2="result11"
851 result="result6"
852 in="SourceGraphic"
853 operator="in" /><feFlood
854 id="feFlood3232-7-3-4-1"
855 result="result10"
856 in="result6"
857 flood-opacity="1"
858 flood-color="rgb(34,34,34)" /><feBlend
859 id="feBlend3234-6-3-5-8"
860 in2="result10"
861 mode="normal"
862 in="result6"
863 result="result12" /><feComposite
864 id="feComposite3236-1-3-5-5"
865 in2="SourceGraphic"
866 result="result2"
867 operator="in" /></filter><linearGradient
868 y2="108.07368"
869 x2="342"
870 y1="97.073685"
871 x1="342"
872 gradientTransform="matrix(1.2681238,0,0,1.2681238,-424.35773,135.21343)"
873 gradientUnits="userSpaceOnUse"
874 id="linearGradient7390"
875 xlink:href="#linearGradient4392-45-3"
876 inkscape:collect="always" /><linearGradient
877 inkscape:collect="always"
878 xlink:href="#linearGradient4392"
879 id="linearGradient3645"
880 gradientUnits="userSpaceOnUse"
881 gradientTransform="translate(33,0.25005141)"
882 x1="72"
883 y1="32"
884 x2="72"
885 y2="47" /><linearGradient
886 inkscape:collect="always"
887 xlink:href="#linearGradient4392"
888 id="linearGradient3667"
889 gradientUnits="userSpaceOnUse"
890 gradientTransform="matrix(-1,0,0,1,209,0.25005141)"
891 x1="72"
892 y1="32"
893 x2="72"
894 y2="47" /><linearGradient
895 inkscape:collect="always"
896 xlink:href="#linearGradient4392"
897 id="linearGradient3726"
898 gradientUnits="userSpaceOnUse"
899 x1="72"
900 y1="32"
901 x2="72"
902 y2="47"
903 gradientTransform="translate(1.0000001,0.25005141)" /><linearGradient
904 inkscape:collect="always"
905 xlink:href="#linearGradient4392"
906 id="linearGradient3809"
907 x1="264"
908 y1="114"
909 x2="264"
910 y2="121"
911 gradientUnits="userSpaceOnUse"
912 gradientTransform="translate(1.0000001,-13.749949)" /><linearGradient
913 inkscape:collect="always"
914 xlink:href="#linearGradient4392-45"
915 id="linearGradient3576"
916 gradientUnits="userSpaceOnUse"
917 gradientTransform="matrix(1.33333,0,0,1.33333,-478.467,255.07277)"
918 x1="365"
919 y1="73.073685"
920 x2="365"
921 y2="84.073685" /><linearGradient
922 inkscape:collect="always"
923 xlink:href="#linearGradient4352"
924 id="linearGradient4358"
925 x1="366.95544"
926 y1="335.06354"
927 x2="356.00427"
928 y2="335.08957"
929 gradientUnits="userSpaceOnUse"
930 gradientTransform="matrix(0.90909091,0,0,1,-318.63636,23.250061)" /><linearGradient
931 inkscape:collect="always"
932 xlink:href="#linearGradient4392-45"
933 id="linearGradient3629"
934 gradientUnits="userSpaceOnUse"
935 gradientTransform="matrix(1.33333,0,0,1.33333,-127.467,242.82272)"
936 x1="365"
937 y1="73.073685"
938 x2="365"
939 y2="84.073685" /><linearGradient
940 inkscape:collect="always"
941 xlink:href="#linearGradient4352"
942 id="linearGradient3631"
943 gradientUnits="userSpaceOnUse"
944 gradientTransform="matrix(0.90909091,0,0,1,32.363636,11)"
945 x1="366.95544"
946 y1="335.06354"
947 x2="356.00427"
948 y2="335.08957" /><linearGradient
949 inkscape:collect="always"
950 xlink:href="#linearGradient4392-45"
951 id="linearGradient3633"
952 gradientUnits="userSpaceOnUse"
953 gradientTransform="matrix(1.33333,0,0,1.33333,-127.467,242.82271)"
954 x1="365"
955 y1="73.073685"
956 x2="365"
957 y2="84.073685" /><linearGradient
958 inkscape:collect="always"
959 xlink:href="#linearGradient4352"
960 id="linearGradient3635"
961 gradientUnits="userSpaceOnUse"
962 gradientTransform="matrix(0.90909091,0,0,1,32.363636,11)"
963 x1="366.95544"
964 y1="335.06354"
965 x2="356.00427"
966 y2="335.08957" /><linearGradient
967 inkscape:collect="always"
968 xlink:href="#linearGradient4392-45"
969 id="linearGradient4406"
970 gradientUnits="userSpaceOnUse"
971 gradientTransform="matrix(1.33333,0,0,1.33333,-478.467,255.07277)"
972 x1="365"
973 y1="73.073685"
974 x2="365"
975 y2="84.073685" /><linearGradient
976 inkscape:collect="always"
977 xlink:href="#linearGradient4392"
978 id="linearGradient4386"
979 x1="73"
980 y1="321"
981 x2="73"
982 y2="335"
983 gradientUnits="userSpaceOnUse"
984 gradientTransform="translate(1.0000001,0.25005141)" /><linearGradient
985 inkscape:collect="always"
986 xlink:href="#linearGradient4392"
987 id="linearGradient4388"
988 x1="69"
989 y1="323"
990 x2="69"
991 y2="333"
992 gradientUnits="userSpaceOnUse" /><linearGradient
993 inkscape:collect="always"
994 xlink:href="#linearGradient4392-3"
995 id="linearGradient4386-0"
996 x1="73"
997 y1="321"
998 x2="73"
999 y2="335"
1000 gradientUnits="userSpaceOnUse" /><linearGradient
1001 id="linearGradient4392-3"><stop
1002 style="stop-color:#666666;stop-opacity:1;"
1003 offset="0"
1004 id="stop4394-6" /><stop
1005 style="stop-color:#424242;stop-opacity:1;"
1006 offset="1"
1007 id="stop4396-8" /></linearGradient><filter
1008 id="filter3224-1-7-1-2-7"
1009 inkscape:label="Inner Shadow"
1010 inkscape:menu="Shadows and Glows"
1011 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1012 color-interpolation-filters="sRGB"
1013 width="1"
1014 height="1"
1015 y="0"
1016 x="0"><feOffset
1017 id="feOffset3228-5-5-5-0-0"
1018 dx="0"
1019 dy="1.2"
1020 result="result11" /><feComposite
1021 id="feComposite3230-2-4-1-5-5"
1022 in2="result11"
1023 result="result6"
1024 in="SourceGraphic"
1025 operator="in" /><feFlood
1026 id="feFlood3232-7-3-4-1-0"
1027 result="result10"
1028 in="result6"
1029 flood-opacity="1"
1030 flood-color="rgb(34,34,34)" /><feBlend
1031 id="feBlend3234-6-3-5-8-2"
1032 in2="result10"
1033 mode="normal"
1034 in="result6"
1035 result="result12" /><feComposite
1036 id="feComposite3236-1-3-5-5-1"
1037 in2="SourceGraphic"
1038 result="result2"
1039 operator="in" /></filter><linearGradient
1040 inkscape:collect="always"
1041 xlink:href="#linearGradient4392-45"
1042 id="linearGradient3947"
1043 gradientUnits="userSpaceOnUse"
1044 gradientTransform="matrix(1.33333,0,0,1.33333,-478.467,255.07277)"
1045 x1="365"
1046 y1="73.073685"
1047 x2="365"
1048 y2="84.073685" /><linearGradient
1049 inkscape:collect="always"
1050 xlink:href="#linearGradient4352"
1051 id="linearGradient3949"
1052 gradientUnits="userSpaceOnUse"
1053 gradientTransform="matrix(0.90909091,0,0,1,-318.63636,23.250061)"
1054 x1="366.95544"
1055 y1="335.06354"
1056 x2="356.00427"
1057 y2="335.08957" /><linearGradient
1058 inkscape:collect="always"
1059 xlink:href="#linearGradient4392"
1060 id="linearGradient3951"
1061 gradientUnits="userSpaceOnUse"
1062 x1="69"
1063 y1="323"
1064 x2="69"
1065 y2="333" /><linearGradient
1066 inkscape:collect="always"
1067 xlink:href="#linearGradient4392"
1068 id="linearGradient3287"
1069 x1="39.452351"
1070 y1="196.14122"
1071 x2="39.452351"
1072 y2="202.77057"
1073 gradientUnits="userSpaceOnUse"
1074 gradientTransform="translate(1.0000001,0.25006141)" /><linearGradient
1075 inkscape:collect="always"
1076 xlink:href="#linearGradient4392"
1077 id="linearGradient3289"
1078 x1="7.0987959"
1079 y1="196.14124"
1080 x2="7.0987959"
1081 y2="202.87701"
1082 gradientUnits="userSpaceOnUse"
1083 gradientTransform="translate(1.0000001,0.25006141)" /><linearGradient
1084 inkscape:collect="always"
1085 xlink:href="#linearGradient4392"
1086 id="linearGradient3291"
1087 x1="38.596195"
1088 y1="163.43153"
1089 x2="38.596195"
1090 y2="174.78519"
1091 gradientUnits="userSpaceOnUse"
1092 gradientTransform="translate(1.0000001,0.25006141)" /><linearGradient
1093 inkscape:collect="always"
1094 xlink:href="#linearGradient4392"
1095 id="linearGradient3293"
1096 x1="9.2478447"
1097 y1="162.9012"
1098 x2="9.2478447"
1099 y2="174.65788"
1100 gradientUnits="userSpaceOnUse"
1101 gradientTransform="translate(1.0000001,0.25006141)" /><linearGradient
1102 inkscape:collect="always"
1103 xlink:href="#linearGradient4392"
1104 id="linearGradient3295"
1105 x1="329"
1106 y1="96.25"
1107 x2="329"
1108 y2="112.25"
1109 gradientUnits="userSpaceOnUse" /><linearGradient
1110 id="linearGradient4392-4"><stop
1111 style="stop-color:#666666;stop-opacity:1;"
1112 offset="0"
1113 id="stop4394-86" /><stop
1114 style="stop-color:#424242;stop-opacity:1;"
1115 offset="1"
1116 id="stop4396-6" /></linearGradient><filter
1117 id="filter3224-1-7-1-3-6"
1118 inkscape:label="Inner Shadow"
1119 inkscape:menu="Shadows and Glows"
1120 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1121 color-interpolation-filters="sRGB"
1122 width="1"
1123 height="1"
1124 y="0"
1125 x="0"><feOffset
1126 id="feOffset3228-5-5-5-70-8"
1127 dx="0"
1128 dy="1.2"
1129 result="result11" /><feComposite
1130 id="feComposite3230-2-4-1-9-3"
1131 in2="result11"
1132 result="result6"
1133 in="SourceGraphic"
1134 operator="in" /><feFlood
1135 id="feFlood3232-7-3-4-91-9"
1136 result="result10"
1137 in="result6"
1138 flood-opacity="1"
1139 flood-color="rgb(34,34,34)" /><feBlend
1140 id="feBlend3234-6-3-5-53-7"
1141 in2="result10"
1142 mode="normal"
1143 in="result6"
1144 result="result12" /><feComposite
1145 id="feComposite3236-1-3-5-3-6"
1146 in2="SourceGraphic"
1147 result="result2"
1148 operator="in" /></filter><linearGradient
1149 inkscape:collect="always"
1150 xlink:href="#linearGradient4392-4"
1151 id="linearGradient6173"
1152 gradientUnits="userSpaceOnUse"
1153 gradientTransform="matrix(2,0,0,2,-32,386.0001)"
1154 x1="88"
1155 y1="161"
1156 x2="88"
1157 y2="174" /><linearGradient
1158 id="linearGradient6287"><stop
1159 style="stop-color:#666666;stop-opacity:1;"
1160 offset="0"
1161 id="stop6289" /><stop
1162 style="stop-color:#424242;stop-opacity:1;"
1163 offset="1"
1164 id="stop6291" /></linearGradient><filter
1165 id="filter6293"
1166 inkscape:label="Inner Shadow"
1167 inkscape:menu="Shadows and Glows"
1168 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1169 color-interpolation-filters="sRGB"
1170 width="1"
1171 height="1"
1172 y="0"
1173 x="0"><feOffset
1174 id="feOffset6295"
1175 dx="0"
1176 dy="1.2"
1177 result="result11" /><feComposite
1178 id="feComposite6297"
1179 in2="result11"
1180 result="result6"
1181 in="SourceGraphic"
1182 operator="in" /><feFlood
1183 id="feFlood6299"
1184 result="result10"
1185 in="result6"
1186 flood-opacity="1"
1187 flood-color="rgb(34,34,34)" /><feBlend
1188 id="feBlend6301"
1189 in2="result10"
1190 mode="normal"
1191 in="result6"
1192 result="result12" /><feComposite
1193 id="feComposite6303"
1194 in2="SourceGraphic"
1195 result="result2"
1196 operator="in" /></filter><linearGradient
1197 inkscape:collect="always"
1198 xlink:href="#linearGradient4392-45"
1199 id="linearGradient3348"
1200 gradientUnits="userSpaceOnUse"
1201 gradientTransform="translate(-15,193.25005)"
1202 x1="88"
1203 y1="161"
1204 x2="88"
1205 y2="174" /><linearGradient
1206 inkscape:collect="always"
1207 xlink:href="#linearGradient4392-45"
1208 id="linearGradient3350"
1209 gradientUnits="userSpaceOnUse"
1210 gradientTransform="translate(17,193.25005)"
1211 x1="88"
1212 y1="161"
1213 x2="88"
1214 y2="174" /><linearGradient
1215 inkscape:collect="always"
1216 xlink:href="#linearGradient4392-45-36"
1217 id="linearGradient4840-7"
1218 gradientUnits="userSpaceOnUse"
1219 gradientTransform="matrix(-1,0,0,-1,511,96.250061)"
1220 x1="472"
1221 y1="17"
1222 x2="472"
1223 y2="31" /><linearGradient
1224 id="linearGradient4392-45-36"><stop
1225 style="stop-color:#666666;stop-opacity:1;"
1226 offset="0"
1227 id="stop4394-8-4" /><stop
1228 style="stop-color:#424242;stop-opacity:1;"
1229 offset="1"
1230 id="stop4396-68-0" /></linearGradient><filter
1231 id="filter3224-1-7-1-21"
1232 inkscape:label="Inner Shadow"
1233 inkscape:menu="Shadows and Glows"
1234 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1235 color-interpolation-filters="sRGB"
1236 width="1"
1237 height="1"
1238 y="0"
1239 x="0"><feOffset
1240 id="feOffset3228-5-5-5-2"
1241 dx="0"
1242 dy="1.2"
1243 result="result11" /><feComposite
1244 id="feComposite3230-2-4-1-2"
1245 in2="result11"
1246 result="result6"
1247 in="SourceGraphic"
1248 operator="in" /><feFlood
1249 id="feFlood3232-7-3-4-3"
1250 result="result10"
1251 in="result6"
1252 flood-opacity="1"
1253 flood-color="rgb(34,34,34)" /><feBlend
1254 id="feBlend3234-6-3-5-4"
1255 in2="result10"
1256 mode="normal"
1257 in="result6"
1258 result="result12" /><feComposite
1259 id="feComposite3236-1-3-5-1"
1260 in2="SourceGraphic"
1261 result="result2"
1262 operator="in" /></filter><linearGradient
1263 inkscape:collect="always"
1264 xlink:href="#linearGradient4392-45-1"
1265 id="linearGradient4563-7"
1266 gradientUnits="userSpaceOnUse"
1267 gradientTransform="matrix(1.1649013,0,0,1.1649013,-321.36445,209.3613)"
1268 x1="365"
1269 y1="96.073685"
1270 x2="365"
1271 y2="108.07368" /><linearGradient
1272 id="linearGradient4392-45-1"><stop
1273 style="stop-color:#666666;stop-opacity:1;"
1274 offset="0"
1275 id="stop4394-8-21" /><stop
1276 style="stop-color:#424242;stop-opacity:1;"
1277 offset="1"
1278 id="stop4396-68-2" /></linearGradient><filter
1279 id="filter3224-1-7-1-5"
1280 inkscape:label="Inner Shadow"
1281 inkscape:menu="Shadows and Glows"
1282 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1283 color-interpolation-filters="sRGB"
1284 width="1"
1285 height="1"
1286 y="0"
1287 x="0"><feOffset
1288 id="feOffset3228-5-5-5-6"
1289 dx="0"
1290 dy="1.2"
1291 result="result11" /><feComposite
1292 id="feComposite3230-2-4-1-0"
1293 in2="result11"
1294 result="result6"
1295 in="SourceGraphic"
1296 operator="in" /><feFlood
1297 id="feFlood3232-7-3-4-6"
1298 result="result10"
1299 in="result6"
1300 flood-opacity="1"
1301 flood-color="rgb(34,34,34)" /><feBlend
1302 id="feBlend3234-6-3-5-6"
1303 in2="result10"
1304 mode="normal"
1305 in="result6"
1306 result="result12" /><feComposite
1307 id="feComposite3236-1-3-5-55"
1308 in2="SourceGraphic"
1309 result="result2"
1310 operator="in" /></filter><linearGradient
1311 y2="108.07368"
1312 x2="365"
1313 y1="96.073685"
1314 x1="365"
1315 gradientTransform="matrix(1.1649013,0,0,1.1649013,-328.36445,204.3613)"
1316 gradientUnits="userSpaceOnUse"
1317 id="linearGradient4604-8"
1318 xlink:href="#linearGradient4392-45-1-0"
1319 inkscape:collect="always" /><linearGradient
1320 id="linearGradient4392-45-1-0"><stop
1321 style="stop-color:#666666;stop-opacity:1;"
1322 offset="0"
1323 id="stop4394-8-21-2" /><stop
1324 style="stop-color:#424242;stop-opacity:1;"
1325 offset="1"
1326 id="stop4396-68-2-2" /></linearGradient><filter
1327 id="filter3224-1-7-1-5-0"
1328 inkscape:label="Inner Shadow"
1329 inkscape:menu="Shadows and Glows"
1330 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1331 color-interpolation-filters="sRGB"
1332 width="1"
1333 height="1"
1334 y="0"
1335 x="0"><feOffset
1336 id="feOffset3228-5-5-5-6-7"
1337 dx="0"
1338 dy="1.2"
1339 result="result11" /><feComposite
1340 id="feComposite3230-2-4-1-0-9"
1341 in2="result11"
1342 result="result6"
1343 in="SourceGraphic"
1344 operator="in" /><feFlood
1345 id="feFlood3232-7-3-4-6-7"
1346 result="result10"
1347 in="result6"
1348 flood-opacity="1"
1349 flood-color="rgb(34,34,34)" /><feBlend
1350 id="feBlend3234-6-3-5-6-4"
1351 in2="result10"
1352 mode="normal"
1353 in="result6"
1354 result="result12" /><feComposite
1355 id="feComposite3236-1-3-5-55-7"
1356 in2="SourceGraphic"
1357 result="result2"
1358 operator="in" /></filter><filter
1359 id="filter3224-1-7-1-5-0-8"
1360 inkscape:label="Inner Shadow"
1361 inkscape:menu="Shadows and Glows"
1362 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1363 color-interpolation-filters="sRGB"
1364 width="1"
1365 height="1"
1366 y="0"
1367 x="0"><feOffset
1368 id="feOffset3228-5-5-5-6-7-6"
1369 dx="0"
1370 dy="1.2"
1371 result="result11" /><feComposite
1372 id="feComposite3230-2-4-1-0-9-3"
1373 in2="result11"
1374 result="result6"
1375 in="SourceGraphic"
1376 operator="in" /><feFlood
1377 id="feFlood3232-7-3-4-6-7-1"
1378 result="result10"
1379 in="result6"
1380 flood-opacity="1"
1381 flood-color="rgb(34,34,34)" /><feBlend
1382 id="feBlend3234-6-3-5-6-4-1"
1383 in2="result10"
1384 mode="normal"
1385 in="result6"
1386 result="result12" /><feComposite
1387 id="feComposite3236-1-3-5-55-7-6"
1388 in2="SourceGraphic"
1389 result="result2"
1390 operator="in" /></filter><filter
1391 id="filter3224-1-7-1-7"
1392 inkscape:label="Inner Shadow"
1393 inkscape:menu="Shadows and Glows"
1394 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1395 color-interpolation-filters="sRGB"
1396 width="1"
1397 height="1"
1398 y="0"
1399 x="0"><feOffset
1400 id="feOffset3228-5-5-5-5"
1401 dx="0"
1402 dy="1.2"
1403 result="result11" /><feComposite
1404 id="feComposite3230-2-4-1-56"
1405 in2="result11"
1406 result="result6"
1407 in="SourceGraphic"
1408 operator="in" /><feFlood
1409 id="feFlood3232-7-3-4-7"
1410 result="result10"
1411 in="result6"
1412 flood-opacity="1"
1413 flood-color="rgb(34,34,34)" /><feBlend
1414 id="feBlend3234-6-3-5-0"
1415 in2="result10"
1416 mode="normal"
1417 in="result6"
1418 result="result12" /><feComposite
1419 id="feComposite3236-1-3-5-9"
1420 in2="SourceGraphic"
1421 result="result2"
1422 operator="in" /></filter><filter
1423 id="filter3224-1-7-1-7-5"
1424 inkscape:label="Inner Shadow"
1425 inkscape:menu="Shadows and Glows"
1426 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1427 color-interpolation-filters="sRGB"
1428 width="1"
1429 height="1"
1430 y="0"
1431 x="0"><feOffset
1432 id="feOffset3228-5-5-5-5-8"
1433 dx="0"
1434 dy="1.2"
1435 result="result11" /><feComposite
1436 id="feComposite3230-2-4-1-56-0"
1437 in2="result11"
1438 result="result6"
1439 in="SourceGraphic"
1440 operator="in" /><feFlood
1441 id="feFlood3232-7-3-4-7-3"
1442 result="result10"
1443 in="result6"
1444 flood-opacity="1"
1445 flood-color="rgb(34,34,34)" /><feBlend
1446 id="feBlend3234-6-3-5-0-5"
1447 in2="result10"
1448 mode="normal"
1449 in="result6"
1450 result="result12" /><feComposite
1451 id="feComposite3236-1-3-5-9-5"
1452 in2="SourceGraphic"
1453 result="result2"
1454 operator="in" /></filter></defs><sodipodi:namedview
1455 pagecolor="#dddddd"
1456 bordercolor="#666666"
1457 borderopacity="1"
1458 objecttolerance="10"
1459 gridtolerance="10"
1460 guidetolerance="10"
1461 inkscape:pageopacity="0"
1462 inkscape:pageshadow="2"
1463 inkscape:window-width="1360"
1464 inkscape:window-height="898"
1465 id="namedview5"
1466 showgrid="true"
1467 inkscape:showpageshadow="false"
1468 inkscape:zoom="22.627417"
1469 inkscape:cx="133.501"
1470 inkscape:cy="41.601897"
1471 inkscape:window-x="363"
1472 inkscape:window-y="91"
1473 inkscape:window-maximized="0"
1474 inkscape:current-layer="layer1"
1475 fit-margin-top="1"
1476 fit-margin-left="0"
1477 fit-margin-bottom="0"
1478 fit-margin-right="2"
1479 showguides="false"
1480 inkscape:guide-bbox="true"><inkscape:grid
1481 type="xygrid"
1482 id="grid2986"
1483 units="px"
1484 empspacing="16"
1485 visible="true"
1486 enabled="true"
1487 snapvisiblegridlinesonly="true"
1488 spacingx="1px"
1489 spacingy="1px"
1490 dotted="false"
1491 originx="0px"
1492 originy="4.0855018e-05px" /></sodipodi:namedview>
1493
1494
1495<g
1496 inkscape:groupmode="layer"
1497 id="layer2"
1498 inkscape:label="Dark background"
1499 style="display:inline"
1500 transform="translate(-1,-0.25001385)"
1501 sodipodi:insensitive="true"><rect
1502 style="fill:#ffaaaa;fill-opacity:1;stroke:none"
1503 id="rect6406"
1504 width="496"
1505 height="368"
1506 x="1"
1507 y="0.25000146" /></g><g
1508 inkscape:groupmode="layer"
1509 id="layer1"
1510 inkscape:label="Shadow"
1511 style="display:inline"
1512 transform="translate(-1,-0.25001385)"
1513 sodipodi:insensitive="true"><path
1514 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1515 d="m 68,2.2664957 0,1 10,0 0,-1 z m 160.09375,1 c -0.0535,0.15448 -0.0937,0.32687 -0.0937,0.5 0,0.83099 0.669,1.5 1.5,1.5 l 7,0 c 0.831,0 1.5,-0.66901 1.5,-1.5 0,-0.17313 -0.0403,-0.34552 -0.0937,-0.5 -0.20326,0.58701 -0.74838,1 -1.40625,1 l -7,0 c -0.65787,0 -1.20299,-0.41299 -1.40625,-1 z m 1.90625,4 c -0.554,0 -1,0.44599 -1,1 l 0,1 c 0,-0.55401 0.446,-1 1,-1 l 6,0 c 0.554,0 1,0.44599 1,1 l 0,-1 c 0,-0.55401 -0.446,-1 -1,-1 z m 1.5,2 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.2769893 0.223,0.4999983 0.5,0.4999983 l 3,0 c 0.277,0 0.5,-0.223009 0.5,-0.4999983 0,-0.277 -0.223,-0.5 -0.5,-0.5 z M 69,10.266494 l 0,1 2,0 2,0 4,0 0,-1 z m 162.5,1 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 3,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m -165.5,0.9375 0,1 3,3.0625 9,0 c 1.108,0 2,-0.89201 2,-2 l 0,-1 c 0,1.10799 -0.892,2 -2,2 l -1,0 -4,0 -2,0 -2,0 z m 160,0.0625 0,1 c 0,0.554 0.446,1 1,1 l 2,0 0,-1 -2,0 c -0.554,0 -1,-0.446 -1,-1 z m 14,0 c 0,0.554 -0.446,1 -1,1 l -2,0 0,1 2,0 c 0.554,0 1,-0.446 1,-1 z m -10,3 0,1 6,0 0,-1 z M 5.09375,35.078994 c -0.0321,0.10941 -0.0625,0.22755 -0.0625,0.375 0,2.02126 1.30983,3.93782 2.84375,5.5 l 0.4375,-0.5625 c -1.55369,-1.47791 -2.95861,-3.3358 -3.21875,-5.3125 z m 9.875,0.09375 c -0.25301,1.93915 -1.65457,3.76438 -3.1875,5.21875 l 0.46875,0.53125 c 1.4966,-1.53303 2.75,-3.41075 2.75,-5.375 0,-0.13982 -0.0081,-0.26521 -0.03125,-0.375 z m 211.71875,5.59375 -0.6875,0.5 7,5 0,-1 z m 44.625,0 -6.3125,4.5 0,1 7,-5 z m 32,0 -6.3125,4.5 0,1 7,-5 z m 19.375,0 -0.6875,0.5 7,5 0,-1 z M 10.03125,41.860244 C 9.22019,42.486324 8.48091,42.963334 8,43.266494 c 0.22032,0.18121 0.39081,0.41214 0.53125,0.65625 0.43604,-0.28502 0.92578,-0.61924 1.5,-1.0625 0.60817,0.4711 1.13459,0.82096 1.59375,1.125 0.13177,-0.24582 0.28903,-0.46928 0.5,-0.65625 -0.50956,-0.32059 -1.26151,-0.82409 -2.09375,-1.46875 z M 233,41.922744 l 0,1 c 3.41666,0 5.61556,1.23041 7,3.34375 0,-0.37177 -0.024,-0.7269 -0.0625,-1.0625 -1.38712,-2.06828 -3.5607,-3.28125 -6.9375,-3.28125 z m 32,0 c -3.3768,0 -5.55038,1.21298 -6.9375,3.28125 -0.0385,0.3356 -0.0625,0.69073 -0.0625,1.0625 1.38444,-2.11333 3.58334,-3.34375 7,-3.34375 z m 32,0 c -3.3768,0 -5.55038,1.21298 -6.9375,3.28125 -0.0385,0.3356 -0.0625,0.69073 -0.0625,1.0625 1.38444,-2.11333 3.58334,-3.34375 7,-3.34375 z m 32,0 0,1 c 3.41666,0 5.61556,1.23041 7,3.34375 0,-0.37177 -0.024,-0.7269 -0.0625,-1.0625 -1.38712,-2.06828 -3.5607,-3.28125 -6.9375,-3.28125 z m -322.65625,1.9375 c -0.68772,0 -1.21875,0.51508 -1.21875,1.15625 0,0.18496 0.0456,0.34537 0.125,0.5 0.19583,-0.38143 0.60441,-0.65625 1.09375,-0.65625 0.48369,0 0.88614,0.28199 1.09375,0.65625 0.0876,-0.15786 0.15625,-0.30978 0.15625,-0.5 0,-0.64117 -0.56229,-1.15625 -1.25,-1.15625 z m 7.5,0 c -0.68772,0 -1.25,0.51508 -1.25,1.15625 0,0.19022 0.0687,0.34214 0.15625,0.5 0.2076,-0.37426 0.61005,-0.65625 1.09375,-0.65625 0.48934,0 0.89792,0.27482 1.09375,0.65625 0.0794,-0.15463 0.125,-0.31504 0.125,-0.5 0,-0.64117 -0.53104,-1.15625 -1.21875,-1.15625 z m -5.0625,1.65625 c -0.24632,1.04124 -1.24534,1.8125 -2.4375,1.8125 -1.18081,0 -2.15456,-0.75502 -2.40625,-1.78125 -0.0326,0.15175 -0.0625,0.30846 -0.0625,0.46875 0,1.28234 1.0933,2.3125 2.46875,2.3125 1.37545,0 2.5,-1.03016 2.5,-2.3125 0,-0.17336 -0.0239,-0.33674 -0.0625,-0.5 z m 2.625,0.03125 c -0.0359,0.15617 -0.0625,0.30294 -0.0625,0.46875 0,1.28234 1.12455,2.3125 2.5,2.3125 1.37545,0 2.46875,-1.03016 2.46875,-2.3125 0,-0.16029 -0.03,-0.31697 -0.0625,-0.46875 -0.25169,1.02623 -1.22544,1.78125 -2.40625,1.78125 -1.18081,0 -2.17929,-0.75502 -2.4375,-1.78125 z M 99,67.266494 l 0,1 2,0 0,-1 z m 5,0 0,1 2,0 0,-1 z m 5,0 0,1 3,0 0,-1 z m -101.5,0 c -1.933,0 -3.5,1.567 -3.5,3.5 0,0.16773 0.00805,0.33856 0.03125,0.5 0.24009,-1.699 1.70348,-3 3.46875,-3 1.73308,0 3.15841,1.25256 3.4375,2.90625 0.0156,-0.13448 0.0625,-0.26754 0.0625,-0.40625 0,-1.933 -1.567,-3.5 -3.5,-3.5 z m 27.5,1 0,1 2,0 0,-1 z m 71,1 0,1 1,0 0,-1 z m 0,1 -2,0 0,1 2,0 z m -65.25,-1.5625 -0.75,0.5 3,2 0,-1 z m 2.25,0.1875 0,1 c 2.26799,8.7e-4 3.4435,1.45051 4,2.3125 -0.014,-0.50756 -0.142583,-0.99673 -0.34375,-1.4375 -0.01583,-0.0347 -0.04562,-0.05965 -0.0625,-0.09375 C 45.939623,69.851134 44.84378,68.892204 43,68.891494 z m 56,2.375 0,1 2,0 0,-1 z m -86.03125,-0.0625 c -0.0883,1.09275 -0.49087,2.08521 -1.125,2.90625 l 0.375,0.375 C 12.6919,73.678874 13,72.770744 13,71.766494 c 0,-0.18985 -0.01255,-0.37761 -0.03125,-0.5625 z M 37,71.266494 l 0,1 1,0 0,-1 z m 0,1 -2,0 -2,0 0,1 2,0 2,0 z m 69,0 0,1 1,0 0,-1 z m 0,1 -2,0 -1,0 0,1 1,0 2,0 z m 2,-1 0,0.84375 0,0.15625 0.25,0 0.75,-0.75 0,-0.25 z M 2.03125,71.328994 C 2.01985,71.473844 2,71.618704 2,71.766494 c 0,3.03756 2.46243,5.5 5.5,5.5 1.04725,0 2.01057,-0.30446 2.84375,-0.8125 l 3.53125,3.53125 c 0.39174,0.39173 1.01451,0.39173 1.40625,0 0.33125,-0.33125 0.35395,-0.82959 0.125,-1.21875 -0.0418,0.0711 -0.0645,0.15826 -0.125,0.21875 -0.39174,0.39173 -1.01451,0.39173 -1.40625,0 l -3.53125,-3.53125 c -0.83318,0.50804 -1.7965,0.8125 -2.84375,0.8125 -2.84772,0 -5.1871,-2.1641 -5.46875,-4.9375 z M 98,73.266494 l 0,1 1,0 0,-1 z m 3,0 0,1 1,0 0,-1 z m 9.21875,0 c 0.13749,0.14402 0.26979,0.29334 0.40625,0.4375 l -5.21875,5.25 -1.40625,1.40625 -1.40625,-1.40625 -1.625,-1.625 -0.5,0.5 2.125,2.125 1.40625,1.40625 1.40625,-1.40625 5.21875,-5.25 c -0.13646,-0.14416 -0.26876,-0.29348 -0.40625,-0.4375 l 1.375,0 0.40625,0 0,-1 -0.40625,0 -0.96875,0 z m -67.21875,0 0,1 3,0 0,-1 z m -9,2 c 0.056,2.03024 1.74134,3.6862 4,3.6875 l 0,-1 c -1.64956,-9.5e-4 -2.96714,-0.88894 -3.59375,-2.15625 -0.0253,-0.0318 -0.0386,-0.06245 -0.0625,-0.09375 -0.11831,-0.15487 -0.25718,-0.30341 -0.34375,-0.4375 z m 9,1 0,1 3,0 0,-1 z m -2.75,1.5 -2.25,1.4375 0,1 3,-1.9375 z m 1.75,1.5 0,1 1,0 0,-1 z m 1,1 0,1 3,0 2,0 0,-1 -2,0 z m 292.5,17 -0.5,1 0,1 1,-2 z m -0.5,2 -0.5,0 -4.5,9.000036 0.5,0 4,-8 0.5,0 z M 37,100.48529 c -0.554,0 -1,0.44599 -1,1 l 0,1 c 0,-0.55401 0.446,-1 1,-1 l 8,0 c 0.554,0 1,0.44599 1,1 l 0,-1 c 0,-0.55401 -0.446,-1 -1,-1 z m 36,-1.218796 c -0.207107,0 -0.423297,0.01085 -0.625,0.03125 -0.125778,0.0159 -0.252316,0.0374 -0.375,0.0625 -2.278414,0.46623 -4,2.490036 -4,4.906286 0,0.17259 0.01418,0.33191 0.03125,0.5 0.25605,-2.52128 2.379919,-4.5 4.96875,-4.5 2.588831,0 4.7127,1.97872 4.96875,4.5 0.01707,-0.16809 0.03125,-0.32741 0.03125,-0.5 0,-2.41625 -1.721586,-4.440056 -4,-4.906286 -0.122684,-0.0251 -0.249222,-0.0466 -0.375,-0.0625 -0.04024,-0.004 -0.08453,0.003 -0.125,0 -0.168085,-0.0171 -0.327411,-0.03125 -0.5,-0.03125 z m 58,0 c -0.554,0 -1,0.446002 -1,1.000036 l 0,1 c 0,-0.554 0.446,-1 1,-1 l 0.5,0 2,0 9.5,0 c 0.554,0 1,0.446 1,1 l 0,-1 c 0,-0.554034 -0.446,-1.000036 -1,-1.000036 z m 32.03125,0 c -0.554,0 -1,0.446002 -1,1.000036 l 0,1 c 0,-0.554 0.446,-1 1,-1 l 9.5,0 2,0 0.5,0 c 0.554,0 1,0.446 1,1 l 0,-1 c 0,-0.554034 -0.446,-1.000036 -1,-1.000036 z M 195,100.26653 c -0.554,0 -1,1 -1,1 l 0,1 c 0,-0.554 0.446,-1 1,-1 l 12,0 c 0.554,0 1,0.446 1,1 l 0,-1 c 0,-0.554 -0.446,-1 -1,-1 z m 32,0 c -0.554,0 -1,1 -1,1 l 0,1 c 0,-0.554 0.446,-1 1,-1 l 12,0 c 0.554,0 1,0.446 1,1 l 0,-1 c 0,-0.554 -0.446,-1 -1,-1 z m 96,-1.000036 c -0.554,0 -1,0.445992 -1,1.000036 l 0,1 c 0,-0.55401 0.446,-1 1,-1 l 0.5,0 3.5,0 0.5,0 3.5,0 1,0 0.5,-1.000036 -1.5,0 -4,0 z m 13,0.28125 0,0.718786 0.71875,0 C 336.5419,99.964166 336.30232,99.724594 336,99.547744 z M 99,100.26653 c -0.554,0 -1,0.44599 -1,1 l 0,1 c 0,-0.55401 0.446,-1 1,-1 l 1.5,0 2,0 8.5,0 c 0.554,0 1,0.44599 1,1 l 0,-1 c 0,-0.55401 -0.446,-1 -1,-1 z m -96,2.21876 0,1 1,0 3,0 2,0 5,0 1,0 0,7 0,-8 z m 128.5,-1.21876 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.24237 0.0444,0.53446 0.5625,0.5 l 0.4375,0 0,-1 -0.4375,0 c -0.0257,0.002 -0.0391,-1.5e-4 -0.0625,0 z m 1.5,0 0,1 0.5,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 39.53125,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 0.5,0 0,-1 z m 1.5,0 0,1 0.4375,0 c 0.5181,0.0345 0.5625,-0.25763 0.5625,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 -0.0234,-1.5e-4 -0.0368,0.002 -0.0625,0 z m 117.96875,0 c -0.18612,0 -0.35468,0.0304 -0.53125,0.0625 -0.5068,0.14135 -0.92854,0.48982 -1.1875,0.9375 l 1.71875,0 10,0 1.71875,0 c -0.25896,-0.44768 -0.6807,-0.79615 -1.1875,-0.9375 -0.16893,-0.0471 -0.34578,-0.0625 -0.53125,-0.0625 z m 44,0 0,1 1,0 0,-1 z m -235.5,1 c -0.277,0 -0.5,0.22299 -0.5,0.5 0.0807,0.57703 0.3111,0.49624 1,0.5 l 0,-1 -0.4375,0 c -0.0263,-4.3e-4 -0.0385,10e-4 -0.0625,0 z m 1.5,0 0,1 0.5,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.777,-0.5 -0.5,-0.5 z m -57.5,1.71876 -4.5,4.5 -1.40625,-1.40625 -0.9375,-0.9375 -0.5,0.5 1.4375,1.4375 1.40625,1.40625 5,-5 z m -40.5,0.5 0,1 3,0 0,-1 z m 197,-0.21876 3,4 3,-4 -0.75,0 -2.25,3 -2.25,-3 z m 26,0 3,4 3,-4 -0.75,0 -2.25,3 -2.25,-3 z m 109,-1 0,1 1,0 0,-1 z m -327,2.21876 0,1 5,0 0,-1 z m 61.0625,-0.71876 c -0.02868,0.16658 -0.0625,0.32524 -0.0625,0.5 0,1.65685 1.34315,3 3,3 1.65685,0 3,-1.34315 3,-3 0,-0.17476 -0.03382,-0.33342 -0.0625,-0.5 -0.243216,1.41264 -1.455414,2.5 -2.9375,2.5 -1.482086,0 -2.694284,-1.08736 -2.9375,-2.5 z m -3.03125,0.125 C 67.02375,105.01412 67,105.14206 67,105.26653 c 0,3.3137 2.68629,6 6,6 3.31371,0 6,-2.6863 6,-6 0,-0.12447 -0.02378,-0.25241 -0.03125,-0.375 -0.273821,2.69627 -2.325104,4.84119 -4.96875,5.28125 -0.162744,0.0333 -0.331915,0.0454 -0.5,0.0625 -0.16239,0.0132 -0.334211,0.0312 -0.5,0.0312 -0.165789,0 -0.33761,-0.0182 -0.5,-0.0312 -0.04138,-0.004 -0.08393,0.005 -0.125,0 -0.127563,-0.013 -0.249927,-0.0417 -0.375,-0.0625 -2.643646,-0.44006 -4.694929,-2.58498 -4.96875,-5.28125 z m 189.96875,0.375 0,1 c 0,1.662 1.338,3 3,3 l 10,0 c 1.662,0 3,-1.338 3,-3 l 0,-1 c 0,1.662 -1.338,3 -3,3 l -10,0 c -1.662,0 -3,-1.338 -3,-3 z m 32,0 0,1 c 0,1.662 1.338,3 3,3 l 10,0 c 1.662,0 3,-1.338 3,-3 l 0,-1 c 0,1.662 -1.338,3 -3,3 l -10,0 c -1.662,0 -3,-1.338 -3,-3 z m 47,0 0,1 1,0 0,-1 z m -192,0.40625 -4.59375,4.59375 0.84375,0 c 0.0134,-0.0178 0.0149,-0.0462 0.0312,-0.0625 l 3.71875,-3.6875 0,-0.84375 z m 18.03125,0 0,0.84375 3.71875,3.6875 c 0.0163,0.0163 0.0179,0.0447 0.0312,0.0625 l 0.84375,0 -4.59375,-4.59375 z M 4,107.48529 l 0,1 3,0 0,-1 z m 321.65625,-0.25001 c -0.0517,0.018 -0.0982,0.0312 -0.15625,0.0312 l -0.5,0 -1,0 -0.5,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 1.5,0 0.5,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.1841 -0.16469,-0.4438 -0.3125,-0.53125 -0.007,-0.004 -0.0247,0.003 -0.0312,0 z M 9,108.48529 l 0,1 5,0 0,-1 z m 26,0 0,1 c 0,1.0907 0.9093,2 2,2 l 8,0 c 1.0907,0 2,-0.9093 2,-2 l 0,-1 c 0,1.0907 -0.9093,2 -2,2 l -8,0 c -1.0907,0 -2,-0.9093 -2,-2 z m 96.5,-1.21876 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.12178,-0.5281 -0.5,-0.5 l -0.5,0 -1,0 z m 40.8125,0 c -0.19381,0.0717 -0.28125,0.29225 -0.28125,0.5 0,0.277 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -0.5,0 -1,0 -0.5,0 c -0.0945,-0.007 -0.15415,-0.0239 -0.21875,0 z m 20.6875,1 0,1 c 0,1.0907 0.9093,2 2,2 l 12,0 c 1.0907,0 2,-0.9093 2,-2 l 0,-1 c 0,1.0907 -0.9093,2 -2,2 l -12,0 c -1.0907,0 -2,-0.9093 -2,-2 z m 32,0 0,1 c 0,1.0907 0.9093,2 2,2 l 12,0 c 1.0907,0 2,-0.9093 2,-2 l 0,-1 c 0,1.0907 -0.9093,2 -2,2 l -12,0 c -1.0907,0 -2,-0.9093 -2,-2 z m 96,-1 0,1 c 0,1.09069 0.9093,2 2,2 l 4,0 0.5,-1 -4.5,0 c -1.0907,0 -2,-0.90931 -2,-2 z m 15,0 0,1 0.71875,0 0.28125,0 0,-1 z m -192,0.625 -2.34375,2.375 0.625,0 1.71875,-1.75 z m 18.03125,0 0,0.625 1.71875,1.75 0.625,0 z M 2,109.48529 l 0,1 c 0,0.55399 0.446,1 1,1 l 12,0 c 0.554,0 1,-0.44601 1,-1 l 0,-1 c 0,0.55399 -0.446,1 -1,1 l -12,0 c -0.554,0 -1,-0.44601 -1,-1 z m 95,-1.21876 0,1 c 0,1.0907 0.9093,2 2,2 l 12,0 c 1.0907,0 2,-0.9093 2,-2 l 0,-1 c 0,1.0907 -0.9093,2 -2,2 l -12,0 c -1.0907,0 -2,-0.9093 -2,-2 z m 3.5,0 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.11921,-0.5 -0.5,-0.5 l -0.5,0 -1,0 z m 28.5,1 0,1 c 0,1.09069 0.9093,2 2,2 l 12,0 c 1.0907,0 2,-0.90931 2,-2 l 0,-0.375 c 0.0328,-0.0893 0.0213,-0.17215 0,-0.25 l 0,-0.375 c 0,1.09069 -0.9093,2 -2,2 l -0.71875,0 -0.625,0 -1.40625,0 -0.84375,0 -3.375,0 -5.03125,0 c -1.0907,0 -2,-0.90931 -2,-2 z m 32.03125,0 0,0.375 c -0.0213,0.0779 -0.0328,0.1607 0,0.25 l 0,0.375 c 0,1.0907 0.9093,2 2,2 l 12,0 c 1.0907,0 2,-0.9093 2,-2 l 0,-1 c 0,1.0907 -0.9093,2 -2,2 l -7.03125,0 -1.375,0 -0.84375,0 -1.40625,0 -0.625,0 -0.71875,0 c -1.0907,0 -2,-0.9093 -2,-2 z m 168.46875,0 -1.5,3 -1.5,0 -0.5,1 2,0 1.5,-3 1.5,0 0,-1 -1,0 z m 2.5,0 0,1 1,0 0,-1 z m 2,0 0,1 1,0 0,-1 z m 2,0 0,0.71875 c 0.30232,-0.17686 0.5419,-0.41643 0.71875,-0.71875 z m -195.5,22 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 2.5,0 0,-1 z m 63.96875,0 -0.0937,0.34375 -3,0 -2.40625,8.65625 -2.71875,0 -0.28125,1 3,0 2.40625,-8.65625 3,0 0.3125,-1.34375 -0.21875,0 z m -159.1875,0.0312 -0.25,0.96875 -1.59375,0 -2.0625,8.03125 0.25,0 1.8125,-7.03125 1.59375,0 0.5,-1.96875 z m 150.3125,0.3125 -0.21875,1 2.71875,0 0.28125,-1 z M 8.5625,132.26653 c -0.21684,0.0127 -0.42028,0.0372 -0.59375,0.0625 l 0,1 c 0.17347,-0.0253 0.37691,-0.0498 0.59375,-0.0625 0.21684,-0.0126 0.42262,1e-5 0.625,0 0.24576,1e-5 0.48745,0.0245 0.71875,0.0625 0.23129,0.0253 0.42028,0.0862 0.59375,0.1875 0.17347,0.0886 0.30506,0.19778 0.40625,0.375 0.0253,0.0411 0.0431,0.10584 0.0625,0.15625 0.0553,-0.14566 0.09375,-0.29026 0.09375,-0.46875 0,-0.27849 -0.05499,-0.52292 -0.15625,-0.6875 -0.10119,-0.17722 -0.23278,-0.2864 -0.40625,-0.375 -0.17347,-0.1013 -0.36246,-0.1622 -0.59375,-0.1875 -0.2313,-0.038 -0.47299,-0.0625 -0.71875,-0.0625 -0.20238,1e-5 -0.40816,-0.0126 -0.625,0 z m 31.125,0 -0.25,1 1.34375,0 0.25,-1 z m 104.3125,0.5 c 0,0.277 -0.223,0.5 -0.5,0.5 l -0.5,0 -2,0 0,1 2.5,0 c 0.277,0 0.5,-0.223 0.5,-0.5 z m -130.375,1.03125 c -0.063,0.36627 -0.21145,0.69408 -0.4375,1 -0.30358,0.43041 -0.69834,0.77808 -1.21875,1.03125 0.33848,0.10821 0.62371,0.23704 0.875,0.375 0.12273,-0.12465 0.24256,-0.26278 0.34375,-0.40625 0.31803,-0.4304 0.46874,-0.91175 0.46875,-1.46875 0,-0.18355 -6.9e-4,-0.34959 -0.03125,-0.53125 z m 149.46875,0.0937 c -0.19229,0.43111 -0.1321,0.96164 0.21875,1.3125 l 1.53125,1.53125 0.5,-0.5 -2.03125,-2.03125 c -0.0959,-0.0959 -0.16343,-0.1957 -0.21875,-0.3125 z m 7.78125,0 c -0.0553,0.1168 -0.12287,0.21661 -0.21875,0.3125 l -2.03125,2.0313 0.5,0.5 1.53125,-1.53125 c 0.35085,-0.35086 0.41104,-0.88139 0.21875,-1.3125 z m -30.875,0.875 0,1 c 0,0.277 0.223,0.5 0.5,0.5 l 3,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 l -2.5,0 -0.5,0 c -0.277,0 -0.5,-0.223 -0.5,-0.5 z m -8.90625,0.125 c -0.19229,0.43111 -0.1321,0.96164 0.21875,1.3125 l 1.53125,1.53125 0.5,-0.5 -2.03125,-2.03125 c -0.0959,-0.0959 -0.16343,-0.1957 -0.21875,-0.3125 z m 7.78125,0 c -0.0553,0.1168 -0.12287,0.21661 -0.21875,0.3125 l -2.03125,2.0313 0.5,0.5 1.53125,-1.53125 c 0.35085,-0.35086 0.41104,-0.88139 0.21875,-1.3125 z m -69.875,1.8438 0,1 c 0,0 0.0818,1.2882 0.21875,1.84375 0.13694,0.55554 0.35886,1.04609 0.6875,1.4375 0.32865,0.3914 0.76476,0.6916 1.3125,0.90625 0.56144,0.20201 1.24087,0.28125 2.0625,0.28125 0.8353,0 1.53231,-0.0792 2.09375,-0.28125 0.56143,-0.21465 1.03265,-0.51485 1.375,-0.90625 0.34233,-0.39141 0.5818,-0.88196 0.71875,-1.4375 0.13697,-0.55555 0.18749,-1.16195 0.1875,-1.84375 l 0,-1 c -1e-5,0.6818 -0.05053,1.2882 -0.1875,1.84375 -0.13695,0.55554 -0.37642,1.04609 -0.71875,1.4375 -0.34235,0.3914 -0.81357,0.6916 -1.375,0.90625 -0.56144,0.20205 -1.25845,0.28125 -2.09375,0.28125 -0.82163,0 -1.50106,-0.0792 -2.0625,-0.28125 -0.54774,-0.21465 -0.98385,-0.51485 -1.3125,-0.90625 -0.32864,-0.39141 -0.55056,-0.88196 -0.6875,-1.4375 C 69.0818,138.02348 69,137.41708 69,136.73528 z m -61.03125,0.21875 0,1 1.4375,0 c 0.69388,1e-5 1.220231,0.15308 1.625,0.40625 0.29273,0.16795 0.4753,0.42054 0.5625,0.75 0.0413,-0.15807 0.0625,-0.33102 0.0625,-0.53125 0,-0.56965 -0.20578,-0.97823 -0.625,-1.21875 -0.404769,-0.25317 -0.93112,-0.40624 -1.625,-0.40625 z M 167,137.89153 l -2.0625,2.03125 c -0.45327,0.45327 -1.17173,0.45327 -1.625,0 -0.10242,-0.10242 -0.16262,-0.2179 -0.21875,-0.34375 -0.20618,0.43535 -0.13864,0.98636 0.21875,1.34375 0.45327,0.45327 1.17173,0.45327 1.625,0 l 2.0625,-2.03125 2.03125,2.03125 c 0.45327,0.45327 1.17173,0.45327 1.625,0 0.35739,-0.35739 0.42493,-0.9084 0.21875,-1.34375 -0.0561,0.12585 -0.11633,0.24133 -0.21875,0.34375 -0.45327,0.45327 -1.17173,0.45327 -1.625,0 z m -32,1 -2.0625,2.03125 c -0.45327,0.45327 -1.17173,0.45327 -1.625,0 -0.10242,-0.10242 -0.16262,-0.2179 -0.21875,-0.34375 -0.20618,0.43535 -0.13864,0.98636 0.21875,1.34375 0.45327,0.45327 1.17173,0.45327 1.625,0 l 2.0625,-2.03125 2.03125,2.03125 c 0.45327,0.45327 1.17173,0.45327 1.625,0 0.35739,-0.35739 0.42493,-0.9084 0.21875,-1.34375 -0.0561,0.12585 -0.11633,0.24133 -0.21875,0.34375 -0.45327,0.45327 -1.17173,0.45327 -1.625,0 z m -120.75,0.28125 c -0.0559,0.448 -0.1825,0.85035 -0.375,1.1875 -0.27467,0.46838 -0.64796,0.83384 -1.125,1.125 -0.4626,0.2785 -1.00573,0.49841 -1.65625,0.625 -0.636069,0.11395 -1.32525,0.15625 -2.0625,0.15625 l -3.75,0 0,1 3.75,0 c 0.73725,0 1.426431,-0.0423 2.0625,-0.15625 0.65052,-0.12659 1.19365,-0.3465 1.65625,-0.625 0.47704,-0.29116 0.85033,-0.65662 1.125,-1.125 0.27465,-0.48104 0.40624,-1.07235 0.40625,-1.78125 0,-0.13608 -0.01035,-0.27282 -0.03125,-0.40625 z m 158.25,0.0937 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.24281,0.60287 0.5,0.5 l 2.5,0 0,-1 z m 29.75,0.65625 -0.5,0.46875 1.4375,1.46875 0.46875,-0.5 z m 4.8125,0 -1.4375,1.4375 0.5,0.5 1.4375,-1.46875 z M 176,140.76653 c 0,0.277 -0.223,0.5 -0.5,0.5 l -0.5,0 -2,0 0,1 2.5,0 c 0.277,0 0.5,-0.223 0.5,-0.5 z m -133.28125,0.53125 -0.25,0.96875 -5.34375,0 -0.28125,1 5.625,0 0.5,-1.96875 z M 194.5,142.26653 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 z m 10.125,0.0937 -1.90625,1.96875 -0.5,-0.5 -0.46875,0.5 0.96875,1 1.90625,-1.96875 1.96875,1.96875 0.96875,-1 -0.5,-0.5 -0.46875,0.5 z m -32.625,0.40625 0,1 c 0,0.277 0.223,0.5 0.5,0.5 l 3,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 l -2.5,0 -0.5,0 c -0.277,0 -0.5,-0.223 -0.5,-0.5 z m -103.5,0.5 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 10,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 z m 224.5,19 0,1 2,0 0,-1 z m -288.5,2 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 0.5,0 0,-1 z m 4,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 27,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 10,0 c 0,0 -0.5,0.223 -0.5,0.5 0,0.24237 0.599346,0.45353 0.5625,0.5 l 0.4375,0 0,-1 -0.4375,0 z m 28,0 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 z m 25,0 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 z m 361.5,0 0,1 1,0 0,-1 z m 27,0 0,1 1,0 0,-1 z m -354.5,1 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.20711 0.13304,0.39285 0.3125,0.46875 0.0598,0.0253 0.11847,0.0312 0.1875,0.0312 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.069,0 -0.12768,0.006 -0.1875,0.0312 -0.17946,0.0759 -0.3125,0.26164 -0.3125,0.46875 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 4,0 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 3,0 2,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z m 37,0 c 0.277,0 0.5,0.20565 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.223,0.46875 -0.5,0.46875 l -2,0 -3,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 0.223,-0.46875 0.5,-0.46875 z m -9,0 c 0.27614,0 0.5,0.22385 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27615 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22385 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27615 0.22386,-0.5 0.5,-0.5 z m 41,0 c 0.27614,0 0.5,0.22385 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27615 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22385 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27615 0.22386,-0.5 0.5,-0.5 z m -4,0 c 0.277,0 0.5,0.20565 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.777,0.46875 -0.5,0.46875 l -3,0 -2,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 0.223,-0.46875 0.5,-0.46875 z m 27,0 c -0.277,0 -0.5,0.20566 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 2,0 3,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.26309 -0.223,-0.46875 -0.5,-0.46875 z m 9,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 85.5,0 0,1 7,0 0,-1 z m 33.875,0 0,1 8.09375,0 0,-1 z m 35.125,0 0,1 7,0 0,-1 z m 27,0 0,1 12,0 0,-1 z m 43,0 0,1 1,0 0,-1 z m 27,0 0,1 1,0 0,-1 z m -421.9375,0.5 c -0.0411,0.15976 -0.0625,0.32741 -0.0625,0.5 0,1.10456 0.895431,2 2,2 1.104569,0 2,-0.89544 2,-2 0,-0.17259 -0.0214,-0.34024 -0.0625,-0.5 -0.221963,0.8627 -1.00552,1.5 -1.9375,1.5 -0.93198,0 -1.715537,-0.6373 -1.9375,-1.5 z m 40,0 c -0.0411,0.15976 -0.0625,0.32741 -0.0625,0.5 0,1.10456 0.89543,2 2,2 1.10457,0 2,-0.89544 2,-2 0,-0.17259 -0.0214,-0.34024 -0.0625,-0.5 -0.22196,0.8627 -1.00552,1.5 -1.9375,1.5 -0.93198,0 -1.71554,-0.6373 -1.9375,-1.5 z m -98.5625,0.5 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 27,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 38,0 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 z m 25,0 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 z m 200.5,0 0,1 1,0 0,-1 z m 3,0 0,1 1,0 0,-1 z m 154.0625,0.5 c -0.0287,0.16658 -0.0625,0.32524 -0.0625,0.5 0,1.65685 1.34315,3 3,3 l 0,-1 c -1.48209,0 -2.69428,-1.08736 -2.9375,-2.5 z m 27,0 c -0.0287,0.16658 -0.0625,0.32524 -0.0625,0.5 0,1.65685 1.34315,3 3,3 l 0,-1 c -1.48209,0 -2.69428,-1.08736 -2.9375,-2.5 z m -224.125,0.0625 c -0.0395,0.16596 -0.0625,0.33 -0.0625,0.5 0,1.2454 1.11952,2.25457 2.53125,2.3125 0.11409,-0.35505 0.2024,-0.68476 0.25,-1 -0.0438,8.7e-4 -0.0797,0 -0.125,0 -1.27634,0 -2.33451,-0.77035 -2.59375,-1.8125 z m 8,0 c -0.0395,0.165 -0.0625,0.33 -0.0625,0.5 0,1.24541 1.11952,2.25457 2.53125,2.3125 0.11379,-0.35113 0.2024,-0.68899 0.25,-1 -0.0465,8.7e-4 -0.077,0 -0.125,0 -1.27634,0 -2.33451,-0.77035 -2.59375,-1.8125 z m -2.78125,0.34375 c -0.32899,3.04037 -2.38768,4.9421 -3.9375,5.71875 -0.35953,0.46482 -0.80193,0.93399 -1.34375,1.40625 1.33333,0 5.3125,-2.32015 5.3125,-6.96875 0,-0.0539 -0.0272,-0.10254 -0.0312,-0.15625 z m 8,0 c -0.32572,3.03782 -2.38152,4.9188 -3.9375,5.6875 -0.35966,0.46296 -0.80081,0.93301 -1.34375,1.40625 1.37466,0 5.3125,-2.28889 5.3125,-6.9375 0,-0.0539 -0.0272,-0.10264 -0.0312,-0.15625 z M 138.5,167.26653 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 3,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z m 35,0 c 0.277,0 0.5,0.20565 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.223,0.46875 -0.5,0.46875 l -3,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 0.223,-0.46875 0.5,-0.46875 z m 26,0 c 0.277,0 0.5,0.20565 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.223,0.46875 -0.5,0.46875 l -3,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 0.223,-0.46875 0.5,-0.46875 z m 29,0 c -0.277,0 -0.5,0.20566 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 3,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.26309 -0.223,-0.46875 -0.5,-0.46875 z m 66.5,0 0,1 1,0 0,-1 z m 0,1 -2,0 -1,0 0,1 1,0 2,0 z m -290,-0.5 0,1 c 0,0.27699 0.223,0.5 0.5,0.5 0.277,0 0.5,-0.22301 0.5,-0.5 l 0,-1 c 0,0.27699 -0.223,0.5 -0.5,0.5 -0.277,0 -0.5,-0.22301 -0.5,-0.5 z m 41,0 0,1 c 0,0.27699 0.223,0.5 0.5,0.5 0.277,0 0.5,-0.22301 0.5,-0.5 l 0,-1 c 0,0.27699 -0.223,0.5 -0.5,0.5 -0.277,0 -0.5,-0.22301 -0.5,-0.5 z m 251,0.5 0,1 1,0 0,-1 z m 3,0 0,1 2,0 0,-1 z m 23,0 0,1 9,0 2,0 0,-1 z m 65,0 0,1 2,0 9,0 0,-1 z m 31,0 0,1 12,0 0,-1 z m -64.15625,0.0312 0,1 2.03125,0 8.09375,0 2.03125,0 0,-1 z m -224.21875,0.9688 -0.625,0.46875 0,0.0625 2,1.46875 0,-1 z m 1.375,1 2.5,0 c 0.0693,0 0.12764,-0.008 0.1875,-0.0312 0.17958,-0.0702 0.3125,-0.24018 0.3125,-0.4375 l 0,-0.0625 c 0,-0.0658 -0.006,-0.13122 -0.0312,-0.1875 -0.0757,-0.16883 -0.261,-0.28125 -0.46875,-0.28125 l -2.5,0 0,1 z m 6.5,-1 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 3,0 2,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z m 37,0 c 0.277,0 0.5,0.20565 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.223,0.46875 -0.5,0.46875 l -2,0 -3,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 0.223,-0.46875 0.5,-0.46875 z m -9.125,0 0.625,0.46875 0,0.0625 -2,1.46875 0,-1 z m -1.375,1 -2.5,0 c -0.27637,0 -0.5,-0.18037 -0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 0.22363,-0.46875 0.5,-0.46875 l 2.5,0 z m 42.59375,-1 c 0.28935,0 0.53125,0.20565 0.53125,0.46875 l 0,0.0625 c 0,0.43405 -0.2419,0.46875 -0.53125,0.46875 l -2.59375,0 0,-1 z m -2.59375,1 0,1 -2.09375,-1.46875 0,-0.0625 0.65625,-0.46875 z m -5.5,-1 c 0.277,0 0.5,0.20565 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.777,0.46875 -0.5,0.46875 l -3,0 -2,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 0.223,-0.46875 0.5,-0.46875 z m 27,0 c -0.277,0 -0.5,0.20566 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 2,0 3,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.26309 -0.223,-0.46875 -0.5,-0.46875 z m 9,0 c -0.277,0 -0.5,0.20566 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 2.5,0 0,-1 z m 2.5,1 0,1 2,-1.46875 0,-0.0625 -0.625,-0.46875 z m 215.5,-0.5 -2.5,2.5 0,1 3,-3 z m 39,0 -0.5,0.5 3,3 0,-1 z m -193.3125,0.875 -2.09375,4.65625 -1.40625,0 -0.4375,1 1.84375,0 2.53125,-5.65625 z m -4.75,0.4375 -1.40625,1.375 0.5,0.5 1.40625,-1.375 z m 5.875,0 -0.5,0.5 1.375,1.375 0.5,-0.5 z M 3.5,171.26653 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 1.5,0 0,-1 z m 5,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 27,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 9,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 1.5,0 0,-1 z m 29,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 25,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 40,0 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 3,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z m 35,0 c 0.277,0 0.5,0.20565 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.223,0.46875 -0.5,0.46875 l -3,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 0.223,-0.46875 0.5,-0.46875 z m 26,0 c 0.277,0 0.5,0.20565 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.223,0.46875 -0.5,0.46875 l -3,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 0.223,-0.46875 0.5,-0.46875 z m 29,0 c -0.277,0 -0.5,0.20566 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 3,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.26309 -0.223,-0.46875 -0.5,-0.46875 z m 94.5,0 0,1 9,0 0,-1 z m 67,0 0,1 9,0 0,-1 z m 29,0 0,1 12,0 0,-1 z m -62.125,0.0625 0,1 8.09375,0 0,-1 z M 6,172.76653 c 0,0.0693 -0.00605,0.12755 -0.03125,0.1875 -0.0505,0.13912 -0.15407,0.24025 -0.28125,0.28125 -0.0599,0.0252 -0.1182,0.0312 -0.1875,0.0312 l -0.5,0 -1,0 0,1 1.5,0 c 0.0693,0 0.12764,-0.006 0.1875,-0.0312 0.12718,-0.041 0.2307,-0.14213 0.28125,-0.28125 C 5.99395,173.89413 6,173.83578 6,173.76653 z m 41,0 c 0,0.0693 -0.0061,0.12755 -0.03125,0.1875 -0.05055,0.13912 -0.15407,0.24025 -0.28125,0.28125 -0.05986,0.0252 -0.1182,0.0312 -0.1875,0.0312 l -0.5,0 -1,0 0,1 1.5,0 c 0.0693,0 0.12764,-0.006 0.1875,-0.0312 0.12718,-0.041 0.2307,-0.14213 0.28125,-0.28125 C 46.99395,173.89413 47,173.83578 47,173.76653 z m 20.0625,0 c -0.0411,0.15976 -0.0625,0.32741 -0.0625,0.5 0,1.10456 0.895431,2 2,2 1.104569,0 2,-0.89544 2,-2 0,-0.17259 -0.0214,-0.34024 -0.0625,-0.5 -0.221963,0.8627 -1.00552,1.5 -1.9375,1.5 -0.93198,0 -1.715537,-0.6373 -1.9375,-1.5 z m 40,0 c -0.0411,0.15976 -0.0625,0.32741 -0.0625,0.5 0,1.10456 0.89543,2 2,2 1.10457,0 2,-0.89544 2,-2 0,-0.17259 -0.0214,-0.34024 -0.0625,-0.5 -0.22196,0.8627 -1.00552,1.5 -1.9375,1.5 -0.93198,0 -1.71554,-0.6373 -1.9375,-1.5 z m 184.5625,0.1875 -0.5,0.5 2.84375,2.84375 0.96875,-0.90625 -0.5,-0.53125 -0.46875,0.4375 z m 11.5,0 -2.34375,2.34375 -0.46875,-0.4375 -0.5,0.53125 0.96875,0.90625 2.84375,-2.84375 z M 8.5,173.26653 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 27,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 38,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 25,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 34,0 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.069,0 -0.12768,0.006 -0.1875,0.0312 -0.17946,0.0759 -0.3125,0.26164 -0.3125,0.46875 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 4,0 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z m 37,0 c 0.277,0 0.5,0.20565 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.223,0.46875 -0.5,0.46875 l -5,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 0.223,-0.46875 0.5,-0.46875 z m -9,0 c 0.27614,0 0.5,0.22385 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27615 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22385 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27615 0.22386,-0.5 0.5,-0.5 z m 41,0 c 0.27614,0 0.5,0.22385 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27615 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22385 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27615 0.22386,-0.5 0.5,-0.5 z m -4,0 c 0.277,0 0.5,0.20565 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.223,0.46875 -0.5,0.46875 l -5,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 0.223,-0.46875 0.5,-0.46875 z m 27,0 c -0.277,0 -0.5,0.20566 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.26309 -0.223,-0.46875 -0.5,-0.46875 z m 9,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 221.5,0 0,1 1,0 0,-1 z m 2,0 0,1 1,0 0,-1 z m 25,0 0,1 1,0 0,-1 z m 2,0 0,1 1,0 0,-1 z m -165,1 0,1 12,0 0,-1 z m 64,0 0,1 12,0 0,-1 z m 32,0 0,1 12,0 0,-1 z m -64.15625,0.0937 0,1 12.15625,0 0,-1 z M 3,174.76653 l 0,1 c 0,0.27699 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -1.5,0 -0.5,0 c -0.277,0 -0.5,-0.22301 -0.5,-0.5 z m 41,0 0,1 c 0,0.27699 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -1.5,0 -0.5,0 c -0.277,0 -0.5,-0.22301 -0.5,-0.5 z m 92.0625,0 0,1 c 0,0.277 0.21154,0.5 0.46875,0.5 0.25721,0 0.46875,-0.223 0.46875,-0.5 l 0,-1 c 0,0.277 -0.21154,0.5 -0.46875,0.5 -0.25721,0 -0.46875,-0.223 -0.46875,-0.5 z m 32.9375,0 0,1 c 0,0.277 -0.21154,0.5 -0.46875,0.5 -0.25721,0 -0.46875,-0.223 -0.46875,-0.5 l 0,-1 c 0,0.277 0.21154,0.5 0.46875,0.5 0.25721,0 0.46875,-0.223 0.46875,-0.5 z m 32.9375,0 0,1 c 0,0.27699 -0.21154,0.5 -0.46875,0.5 -0.25721,0 -0.46875,-0.22301 -0.46875,-0.5 l 0,-1 c 0,0.27699 0.21154,0.5 0.46875,0.5 0.25721,0 0.46875,-0.22301 0.46875,-0.5 z m 31.0625,0 0,1 c 0,0.277 0.21154,0.5 0.46875,0.5 0.25722,0 0.46875,-0.223 0.46875,-0.5 l 0,-1 c 0,0.277 -0.21153,0.5 -0.46875,0.5 -0.25721,0 -0.46875,-0.223 -0.46875,-0.5 z m -228,22.5 c -0.1602,0 -0.31869,0.0256 -0.46875,0.0625 C 3.6596,197.54351 3,198.33602 3,199.26653 l 0,1 c 0,-1.09071 0.9093,-2 2,-2 l 3,0 0,-1 z m 5,0 0,1 3,0 c 1.0907,0 2,0.90929 2,2 l 0,-1 c 0,-0.93051 -0.6596,-1.72302 -1.53125,-1.9375 -0.0216,-0.004 -0.0407,-0.0283 -0.0625,-0.0312 -0.12925,-0.027 -0.26991,-0.0312 -0.40625,-0.0312 l -3,0 z m 27,0 c -0.1602,0 -0.31869,0.0256 -0.46875,0.0625 C 35.6596,197.54351 35,198.33602 35,199.26653 l 0,1 c 0,-1.09071 0.9093,-2 2,-2 l 3,0 0,-1 z m 5,0 0,1 3,0 c 1.0907,0 2,0.90929 2,2 l 0,0.4375 0.53125,0.53125 0.4375,0.4375 C 47.98778,201.5373 48,201.40693 48,201.26653 l 0,-1 c 0,0.1404 -0.01222,0.27077 -0.03125,0.40625 l -0.4375,-0.4375 L 47,199.70403 l 0,-0.4375 c 0,-0.93051 -0.659603,-1.72302 -1.53125,-1.9375 -0.02162,-0.004 -0.04073,-0.0283 -0.0625,-0.0312 -0.129247,-0.027 -0.269913,-0.0312 -0.40625,-0.0312 l -3,0 z m -36.5,2 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 7,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 l -2.5,0 -2,0 z m 32,0 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 4.3125,0 1.5,0 1.1875,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 l -2.5,0 -2,0 z m -35.5,1 0,1 c 0,1.64649 1.35351,3 3,3 l 3,0 1,-1 1,1 3,0 c 1.64649,0 3,-1.35351 3,-3 l 0,-1 c 0,1.48353 -1.10933,2.70546 -2.53125,2.9375 -0.0223,0.005 -0.0399,0.0265 -0.0625,0.0312 -0.13548,0.019 -0.26585,0.0312 -0.40625,0.0312 l -3,0 -1,-1 -1,1 -3,0 c -0.1404,0 -0.27077,-0.0122 -0.40625,-0.0312 -0.0226,-0.005 -0.0402,-0.0258 -0.0625,-0.0312 C 3.10933,202.97199 2,201.75006 2,200.26653 z m 2,0 0,1 c 0,0.554 0.446,1 1,1 l 3,0 0,-1 -2.5,0 -0.5,0 c -0.554,0 -1,-0.446 -1,-1 z m 10,0 c 0,0.554 -0.446,1 -1,1 l -0.5,0 -2.5,0 0,1 3,0 c 0.554,0 1,-0.446 1,-1 z m 20,0 0,1 c 0,1.64649 1.35351,3 3,3 l 3,0 0.6875,-0.6875 -0.5,-0.5 -0.1875,0.1875 -3,0 c -0.1404,0 -0.27077,-0.0122 -0.40625,-0.0312 -0.0226,-0.005 -0.0401,-0.0258 -0.0625,-0.0312 C 35.10933,202.97189 34,201.75006 34,200.26653 z m 2,0 0,1 c 0,0.554 0.446,1 1,1 l 3,0 0,-1 -2.5,0 -0.5,0 c -0.554,0 -1,-0.446 -1,-1 z m 10,0 c 0,0.0353 -0.02772,0.0594 -0.03125,0.0937 l -0.875,0.875 c -0.03434,0.004 -0.05845,0.0312 -0.09375,0.0312 l -0.5,0 -0.1875,0 -1,0 1,1 0.6875,0 c 0.0353,0 0.05941,-0.0277 0.09375,-0.0312 l 0.875,-0.875 C 45.97225,201.32598 46,201.30183 46,201.26653 z m 25.8125,0.65625 c -0.899959,-0.0141 -1.82217,0.32909 -2.8125,1.34375 l 0,1 c 3.96132,-4.05865 6.94268,2.81598 11,-1 l 0,-1 c -3.04299,2.86198 -5.487624,-0.30138 -8.1875,-0.34375 z m 35.375,0 c -2.69988,0.0424 -5.14451,3.20574 -8.1875,0.34375 l 0,1 c 4.05732,3.81599 7.03868,-3.05865 11,1 l 0,-1 c -0.99033,-1.01466 -1.91254,-1.35788 -2.8125,-1.34375 z m -66.34375,0.34375 -0.03125,0.0312 -0.65625,0.71875 0.46875,0.5 0.1875,-0.21875 1,-1.03125 -0.96875,0 z m 1.1875,1.21875 -0.5,0.5 1.59375,1.59375 0.5,-0.5 z m 5.3125,0 -1.59375,1.59375 0.5,0.5 1.59375,-1.59375 z m -2.65625,2.65625 -2.125,2.125 -0.53125,-0.5625 -0.5,0.5 1.03125,1.0625 2.125,-2.125 2.125,2.125 1.03125,-1.0625 -0.5,-0.5 -0.53125,0.5625 z m 22.3125,2.125 0,1 1,0 0,-1 z m 44,0 0,1 1,0 0,-1 z m 154,19 c -0.34628,0 -0.67165,0.0352 -1,0.0937 -0.98506,0.17561 -1.89451,0.59634 -2.65625,1.1875 0.13763,0.005 0.26821,0.0331 0.40625,0.0625 0.0582,0.0594 -0.12804,0.19841 -0.3125,0.34375 0.31668,-0.24446 0.66584,-0.3597 1.09375,-0.375 0.20293,-0.0412 0.41536,-0.0346 0.59375,0 0.16865,-0.0578 0.35611,-0.0825 0.53125,-0.125 -0.22012,-0.0629 0.0305,-0.20755 0.28125,-0.21875 0.0955,-0.004 0.16445,0.0179 0.21875,0.0625 0.11003,0.002 0.2574,-0.10843 0.1875,0.0312 0.12547,-0.0147 0.24703,-0.0248 0.375,-0.0312 -0.12874,-0.0406 0.003,-0.1019 0.125,-0.125 0.10685,-0.0202 0.16269,0.002 0.0312,0.0937 0.0427,-9.4e-4 0.0821,0 0.125,0 0.13861,0 0.27026,0.0205 0.40625,0.0312 0.0233,-0.0312 0.0578,-0.0728 0.125,-0.125 0.0886,-0.0585 0.113,-0.0756 0.125,-0.0625 0.027,0.0293 -0.0732,0.19992 -0.0312,0.1875 0.014,-0.004 0.0355,-0.0411 0.0937,-0.0937 0.27569,-0.0726 0.65041,0.0656 0.84375,0.28125 0.009,0.01 0.0231,0.0209 0.0312,0.0312 0.016,0.0203 0.0186,0.041 0.0312,0.0625 0.005,0.009 -0.005,0.0221 0,0.0312 0.0224,0.0438 0.0566,0.0778 0.0625,0.125 0.11394,-0.038 0.23099,-0.0536 0.34375,-0.0937 0.0491,0.0177 0.10773,0.0123 0.15625,0.0312 -0.057,0.0184 -0.10829,0.071 -0.15625,0.0625 -0.2431,0.18027 0.18715,0.11836 0.4375,0.21875 -0.0479,-0.17153 0.0692,-0.42292 0.15625,-0.46875 0.041,-0.0216 0.0545,0.0172 0.0625,0.125 -0.0128,0.0643 0.017,0.19499 0.0312,0.3125 1.80061,0.91451 3.06549,2.70374 3.25,4.8125 0.012,-0.15544 0.0312,-0.31017 0.0312,-0.46875 0,-2.36207 -1.35959,-4.39623 -3.34375,-5.375 0.0114,0.14518 0.0591,0.3475 -0.0312,0.3125 0.10838,-0.49625 -0.9425,-0.21013 -0.59375,-0.46875 0.048,0.009 0.0992,-0.0441 0.15625,-0.0625 -0.0485,-0.0189 -0.10715,-0.0137 -0.15625,-0.0312 -0.26917,0.0961 -0.54455,0.1962 -0.8125,0.25 -0.0958,-0.002 -0.2497,-0.019 -0.3125,-0.0312 0.0241,-0.006 0.0765,-0.0264 0.1875,-0.0312 0.0729,-0.099 0.0423,-0.0421 0.15625,-0.125 0.0599,-0.086 0.79642,-0.122 0.1875,-0.125 -0.0279,-0.003 -0.019,-0.0282 -0.0312,-0.0312 0.0509,-0.01 0.14162,-0.0192 0.25,-0.0312 -0.26349,-0.0756 -0.53626,-0.14391 -0.8125,-0.1875 -0.27624,-0.0436 -0.55593,-0.0625 -0.84375,-0.0625 z m 0.9375,0.34375 c 0.10941,-0.002 0.19002,0.0392 -0.0312,0.125 l -0.125,0 c -0.0956,-0.0755 0.047,-0.123 0.15625,-0.125 z m -0.34375,0.34375 c 0.0496,-0.007 0.1158,-0.01 0.1875,0.0312 0.23935,-0.0591 0.64214,0.0399 0.15625,0.0937 -0.0173,-0.0557 -0.1805,0.0348 -0.1875,-0.0312 -0.30815,0.0694 -0.3051,-0.0736 -0.15625,-0.0937 z m -96.375,0.125 c -2.01716,0.24966 -3.59375,2.35002 -3.59375,4.84375 0,0.18815 0.0135,0.38055 0.0312,0.5625 0.18622,-2.45446 1.88384,-4.40625 3.96875,-4.40625 2.08491,0 3.78253,1.95179 3.96875,4.40625 0.0174,-0.18193 0.0312,-0.37435 0.0312,-0.5625 0,-2.65998 -1.79067,-4.84375 -4,-4.84375 -0.13808,0 -0.27177,-0.0166 -0.40625,0 z m 95.96875,0.0625 c 0.14032,-0.0399 0.26801,0.0676 -0.0625,0.0937 -0.0249,0.0331 -0.039,0.001 -0.0625,0 0.0321,-0.0541 0.0782,-0.0805 0.125,-0.0937 z m -1.5625,0.0312 c 0.17989,-0.004 0.26434,0.0509 -0.0937,0.125 -0.11866,0.0154 -0.22739,0.165 -0.34375,0.125 -9e-5,-0.1727 0.25776,-0.246 0.4375,-0.25 z M 3,227.26653 l 0,1 2.5,0 9.5,0 0,-1 z m 40.46875,0.3125 c -1.88316,0.0897 -2.926,2.52114 -3.9375,4.78125 l -0.21875,0.5 c -0.80967,1.77098 -1.63642,3.3095 -2.96875,3.3125 0.3882,0.27003 0.75663,0.46625 1.09375,0.59375 0.74347,-0.56869 1.31215,-1.67512 1.875,-2.90625 l 0.21875,-0.5 c 1.0115,-2.26011 2.05434,-4.69152 3.9375,-4.78125 0.33166,-0.0157 0.67688,0.0457 1.0625,0.1875 0.33672,-0.25016 0.70547,-0.40625 1.125,-0.40625 -0.85371,-0.58916 -1.55978,-0.81105 -2.1875,-0.78125 z m 222.46875,0.0312 c -0.10926,0.002 -0.25181,0.0495 -0.15625,0.125 l 0.125,0 c 0.22132,-0.0858 0.14066,-0.12682 0.0312,-0.125 z m 0.5,0.15625 c -0.0203,0.0141 -0.0254,0.0267 -0.0312,0.0625 0.0724,-0.0194 0.14598,-0.0391 0.21875,-0.0625 -0.076,-0.0103 -0.15699,-0.0211 -0.1875,0 z m -0.84375,0.1875 c -0.12371,0.0168 -0.14134,0.131 0.0312,0.125 0.0351,-0.001 0.0729,-0.0196 0.125,-0.0312 0.007,0.066 0.1702,-0.0245 0.1875,0.0312 0.0875,-0.01 0.12024,-0.0198 0.15625,-0.0312 -0.007,-0.0318 -0.0413,-0.0395 -0.0625,-0.0625 -0.0797,-0.0105 -0.16296,-0.0215 -0.25,0 -0.0717,-0.0408 -0.13788,-0.038 -0.1875,-0.0312 z m 2.03125,0.15625 c 0.004,0.029 0.008,0.0565 0,0.0937 0.0384,0.0149 0.0606,-0.0143 0.0625,-0.0625 -0.0144,10e-4 -0.038,-0.0146 -0.0625,-0.0312 z m -2.4375,0.0312 c -0.0468,0.0133 -0.0929,0.0396 -0.125,0.0937 0.0235,0.001 0.0376,0.0331 0.0625,0 0.33051,-0.0263 0.20282,-0.13368 0.0625,-0.0937 z m -0.34375,0.0312 c -0.12212,0.0231 -0.25374,0.0844 -0.125,0.125 l 0.0312,0.0312 0.0937,-0.0312 c 0.22922,-0.13332 0.12212,-0.14807 0,-0.125 z m 1.0625,0.0312 c 0.065,0.0918 0.1072,0.21301 0.1875,0.21875 0.0987,-0.11602 0.1767,-0.13872 0.21875,-0.125 -0.1283,-0.0667 -0.26786,-0.0902 -0.40625,-0.0937 z m -1.5625,0.0315 c -0.0283,0.006 -0.0807,0.0189 -0.125,0.0312 -0.10641,0.0913 -0.14533,0.19131 -0.0625,0.28125 0.23141,-0.0322 0.39735,-0.0693 0.15625,-0.15625 0.0809,-0.1276 0.0749,-0.16495 0.0312,-0.15625 z M 265,228.36023 c -0.0243,-0.005 -0.0587,0.0139 -0.0937,0.0312 -0.0387,0.23854 -0.27092,0.27701 -0.53125,0.28125 0.18753,0.0603 0.34616,0.1219 0.34375,0.3125 0.34901,0.0214 0.0627,-0.2312 0.375,-0.1875 0.0374,-0.0477 0.0595,-0.10421 0.0937,-0.15625 -0.0739,-0.0575 -0.0798,-0.26094 -0.1875,-0.28125 z m 1.375,0 c 0.0343,0.11949 0.009,0.35008 0.0625,0.40625 0.0407,-0.0282 0.12377,-0.0215 0.25,0 -0.007,-0.16706 -0.14492,-0.29959 -0.3125,-0.40625 z m -5.96875,0.0625 c -0.87281,1.042 -1.40625,2.37815 -1.40625,3.84375 0,0.20711 0.0109,0.4233 0.0312,0.625 0.05,-0.77883 0.24163,-1.51871 0.5625,-2.1875 -0.0134,-0.002 -0.021,-0.0151 -0.0312,-0.0625 0.0384,-0.0679 0.0822,-0.1008 0.0937,-0.0937 0.20706,-0.40173 0.46215,-0.78135 0.75,-1.125 0.25655,-0.0158 0.56015,0.0785 0.6875,0.25 0.0297,-0.0169 0.0688,-0.0334 0.0937,-0.0312 0.042,-0.0985 0.08,-0.16987 0.125,-0.1875 -0.33344,-0.18836 -0.1679,-0.36609 -0.0937,-0.5625 -0.009,0.0116 -0.0318,0.0132 -0.0625,-0.0312 0.0243,-0.30945 -0.40794,-0.4586 -0.75,-0.4375 z m 4.25,0.0625 c -0.0294,0.007 -0.0677,0.0412 -0.0937,0.0937 0.23501,0.0305 0.18197,-0.11403 0.0937,-0.0937 z m 2.96875,0 c -0.1229,0.0647 -0.30864,0.56687 0,0.625 0.19641,0.13297 0.0343,-0.35877 0.0625,-0.5 -0.008,-0.10783 -0.0215,-0.14656 -0.0625,-0.125 z m -6.40625,0.15625 c -0.009,0.0326 -0.003,0.0919 0,0.15625 0.008,-0.04 0.0392,-0.0815 0.0312,-0.125 -0.001,-0.0172 -0.0254,-0.0171 -0.0312,-0.0312 z M 261,228.82903 c 0.0264,-0.019 0.0968,0.0763 0,0.0625 -0.007,-0.0415 -0.009,-0.0565 0,-0.0625 z m 4.875,0.34375 c -0.23735,-0.008 -0.70217,0.40793 -0.21875,0.15625 0.44403,-0.16004 -0.2027,0.70993 -0.125,0.125 l -0.0312,0.0625 c -0.0217,0.31005 -0.5469,0.5013 -0.5625,0.5625 -0.30778,0.0882 -0.38275,0.41405 -0.46875,0.34375 0.0688,0.4831 -0.87396,0.50311 -0.53125,1.09375 -0.0138,0.0154 -0.0211,0.21545 -0.0937,0.15625 -0.0109,-0.394 -0.37081,-0.61268 -0.71875,-0.4375 0.0163,0.0122 0.0242,0.0232 0.0312,0.0312 -0.10385,0.007 -0.5117,-0.077 -0.5625,0.125 -0.10172,0.1351 -0.1738,0.2411 -0.25,0.1875 0.0576,0.14242 0.0733,0.32522 0,0.4375 -0.005,0.23701 0.13149,0.33275 0.28125,0.34375 0.004,-0.007 0.0258,0.006 0.0312,0 0.0616,-0.0648 0.13539,-0.0965 0.25,-0.0937 0.0604,-0.0487 0.12526,-0.1103 0.15625,-0.1875 0.14196,-0.0234 0.16896,0.0402 0.15625,0.125 0.31377,-0.0921 0.61514,0.11241 0.625,0.46875 0.0727,0.0592 0.0799,-0.14085 0.0937,-0.15625 -0.12166,-0.20968 -0.0682,-0.3254 0.0312,-0.4375 -0.004,-0.002 0.004,-0.0297 0,-0.0312 -0.18038,-0.0735 -0.37537,-0.1227 -0.4375,-0.0937 0.0102,-0.029 0.024,-0.0525 0.0625,-0.0625 0.10213,-0.0253 0.27432,0.0391 0.4375,0.0937 0.19261,-0.16267 0.4762,-0.29076 0.4375,-0.5625 0.086,0.0703 0.16097,-0.25555 0.46875,-0.34375 0.0156,-0.0612 0.5408,-0.25245 0.5625,-0.5625 l 0.0312,-0.0625 c -0.0777,0.58493 0.56903,-0.28504 0.125,-0.125 -0.48342,0.25168 -0.0186,-0.16425 0.21875,-0.15625 0.2339,0.10315 1.13432,-0.3299 0.59375,-0.375 -0.0817,0.002 -0.0573,-0.25438 -0.0937,-0.40625 -0.002,-0.007 -0.0294,0.006 -0.0312,0 -0.0448,0.005 -0.0241,-0.019 0,-0.0625 -0.0396,-0.0514 -0.12172,-0.0571 -0.25,0.0937 -0.091,-0.007 -0.14021,-0.15128 -0.21875,-0.25 z m -4.84375,0.15625 c 0.0652,0.004 0.34053,0.29011 0.0312,0.125 -0.0557,-0.0851 -0.053,-0.126 -0.0312,-0.125 z m 4.875,0.1875 c 0.0553,0.002 0.006,0.0768 -0.0937,0.0312 0.0427,-0.0211 0.0754,-0.032 0.0937,-0.0312 z m 0.21875,0 c -0.0161,0.0169 -0.0897,0.0798 -0.25,0.15625 -0.098,0.0228 -0.17812,0.12482 -0.28125,0.125 0.054,-0.10979 0.30057,-0.2123 0.4375,-0.25 0.0685,-0.0188 0.10987,-0.0481 0.0937,-0.0312 z m 0.4375,0.59375 c -0.0981,0.006 -0.34815,0.29505 -0.21875,0.28125 0.13337,0.0266 0.64304,-0.01 0.25,-0.15625 0.021,-0.0859 8.5e-4,-0.12697 -0.0312,-0.125 z M 4.09375,230.26653 C 4.04015,230.42085 4,230.59394 4,230.76653 c 0,0.82842 0.67157,1.5 1.5,1.5 0.82843,0 1.5,-0.67158 1.5,-1.5 0,-0.17259 -0.04015,-0.34568 -0.09375,-0.5 -0.20384,0.58641 -0.75041,1 -1.40625,1 -0.65584,0 -1.20241,-0.41359 -1.40625,-1 z m 93.90625,3 0,1 14,0 0,-1 z m 101,-3 0,1 10,0 0,-1 z m 26,0 0,1 10,0 0,-1 z m 40.90625,0.25 c -0.0184,-7.1e-4 -0.051,0.0102 -0.0937,0.0312 0.0994,0.0455 0.14906,-0.0292 0.0937,-0.0312 z m 0.21875,0 c 0.0161,-0.0169 -0.0253,0.0124 -0.0937,0.0312 -0.13693,0.0377 -0.38348,0.14021 -0.4375,0.25 0.10313,-1.8e-4 0.18325,-0.1022 0.28125,-0.125 0.16025,-0.0764 0.23388,-0.1394 0.25,-0.15625 z m -5.28125,0.4375 c -0.11123,0.1825 -0.1956,0.40944 -0.1875,0.5625 -0.006,0.28224 0.15163,0.47561 0.375,0.5625 -0.16645,0.0629 -0.0795,0.49173 0.0937,0.625 0.234,0.59128 0.0786,-0.21992 -0.0625,-0.40625 0.1184,-0.41868 0.28654,0.49131 0.5,0.59375 0.0459,0.40021 0.30654,0.5924 0.6875,0.71875 0.1724,0.007 0.42696,0.0904 0.5625,0 -0.0572,0.0939 -0.0543,0.2011 0.0937,0.21875 0.0497,0.0166 0.18315,0.0719 0.21875,0 0.0368,0.0175 0.10148,0.0197 0.15625,-0.0312 0.0432,-0.0198 0.0361,0.0124 0.0625,0 -0.11865,0.0885 -0.24669,0.23155 0.0312,0.28125 0.18197,0.12198 0.21941,-0.59882 -0.0312,-0.46875 -0.27053,-0.0764 -0.31824,0.10185 -0.25,0.1875 -0.15746,0.0411 -0.11319,-0.12221 -0.0312,-0.28125 -0.0131,-0.0878 -0.1107,-0.0461 -0.1875,0.0312 0.0164,-0.0269 0.0254,-0.0521 0.0312,-0.0937 0.0937,-0.0718 0.12538,-0.11212 0.15625,-0.125 0.065,-0.0272 0.0304,0.0826 0,0.1875 0.11801,-0.22906 0.30468,-0.48768 0,-0.4375 -0.14636,0.36457 -0.72915,0.44313 -0.71875,-0.0625 0.0685,-0.10487 0.0484,-0.26871 0,-0.40625 -0.0319,-0.004 -0.0654,0.001 -0.0937,0 -0.38096,-0.12635 -0.6416,-0.31854 -0.6875,-0.71875 -0.21346,-0.10244 -0.3816,-1.01243 -0.5,-0.59375 0.1411,0.18633 0.2965,0.99753 0.0625,0.40625 -0.1732,-0.13327 -0.26025,-0.5621 -0.0937,-0.625 -0.0698,-0.0272 -0.13352,-0.0776 -0.1875,-0.125 z M 43.3125,231.29778 c -0.1816,0.31879 -0.35963,0.64171 -0.53125,1 l 1.5,0 c 0.0209,0 0.0427,-0.003 0.0625,0 l 0.375,-0.5 c 0,-0.26716 -0.17967,-0.5 -0.4375,-0.5 z m 216.34375,0.25 c -0.0116,-0.007 -0.0553,0.0258 -0.0937,0.0937 0.0414,0.1895 0.12859,-0.0729 0.0937,-0.0937 z M 163,232.32903 c -0.0205,0.19287 -0.0312,0.39628 -0.0312,0.59375 0,2.09778 1.19729,3.92576 3,5 l 1,0 0,-0.5 c -2.21887,-0.87849 -3.79699,-2.80631 -3.96875,-5.09375 z m 13.28125,0 c -0.17176,2.28744 -1.74988,4.21527 -3.96875,5.09375 l 0,0.5 1,0 c 1.80271,-1.07423 3,-2.90222 3,-5 0,-0.19747 -0.0105,-0.40088 -0.0312,-0.59375 z m -142.25,0.4375 c -0.0117,0.16523 -0.03125,0.33181 -0.03125,0.5 0,3.86518 3.13483,7 7,7 3.86633,0 7,-3.13482 7,-7 0,-0.16819 -0.01958,-0.33477 -0.03125,-0.5 -0.256502,3.63184 -3.27066,6.5 -6.96875,6.5 -3.69698,0 -6.71216,-2.86816 -6.96875,-6.5 z m 224,0 c -0.0117,0.16523 -0.0312,0.33181 -0.0312,0.5 0,3.86516 3.13484,7 7,7 3.86516,0 7,-3.13484 7,-7 0,-0.16819 -0.0197,-0.33477 -0.0312,-0.5 -0.23218,3.28629 -2.72453,5.92969 -5.9375,6.40625 -0.2472,0.0367 -0.49509,0.0837 -0.75,0.0937 -0.0934,0.004 -0.1869,0 -0.28125,0 -0.23901,0 -0.48704,-0.004 -0.71875,-0.0312 -0.17128,-0.0174 -0.33259,-0.0642 -0.5,-0.0937 -3.12189,-0.55073 -5.52238,-3.15326 -5.75,-6.375 z m 5.5625,0.1249 c -0.0385,0.01 -0.0523,0.0335 -0.0625,0.0625 0.0946,-0.044 0.49211,0.15054 0.6875,0.21875 0.0251,-0.024 0.0663,-0.0415 0.0937,-0.0625 -0.12035,-0.0982 -0.5371,-0.26382 -0.71875,-0.21875 z M 199,233.26653 l 0,1 3,0 0,-1 z m 4,0 0,1 3,0 0,-1 z m 4,0 0,1 2,0 0,-1 z m 18,0 0,1 2,0 0,-1 z m 3,0 0,1 3,0 0,-1 z m 4,0 0,1 3,0 0,-1 z m -34.5625,0.0625 -3.4375,2.9375 0,1 4,-3.4375 z m 39.125,0 -0.5625,0.5 4,3.4375 0,-1 z m 27.4375,0 c -0.008,0.003 -0.012,0.0122 0,0.0312 0.0896,0.0203 0.0878,0.008 0.0937,0 -0.003,-0.002 0.003,-0.0298 0,-0.0312 -0.021,-0.009 -0.0441,-10e-4 -0.0625,0 2.1e-4,0.004 -0.0269,-0.004 -0.0312,0 z m -0.71875,0.78125 c -0.0104,0.0169 0.0106,0.052 0.15625,0.15625 0.36178,0.0251 -0.12511,-0.20702 -0.15625,-0.15625 z m 0.34375,0.15625 c -0.0422,0.0167 -0.0392,0.0395 0.0312,0.0937 0.0399,0.0493 0.0896,0.0317 0.125,0 0.004,-0.0295 0.0211,-0.0628 0.0312,-0.0937 -0.0712,-0.007 -0.14694,-0.016 -0.1875,0 z m 0.34375,0.65625 c -0.10804,0.2558 -0.28337,0.47349 -0.125,0.65625 0.16253,-0.007 0.37406,0.005 0.59375,0.0625 -0.14762,-0.22531 -0.31541,-0.46286 -0.46875,-0.71875 z m 0.46875,0.71875 c 0.0531,0.0811 0.10775,0.1673 0.15625,0.25 0.13697,0.0174 0.23403,0.0459 0.40625,0.0625 -0.11265,-0.16775 -0.33219,-0.2521 -0.5625,-0.3125 z m 0.15625,0.25 c -0.35747,-0.0455 -0.56127,-0.0826 -0.71875,-0.125 0.18134,0.32397 0.38486,0.60386 0.5625,0.875 0.21419,0.0562 0.41301,0.13583 0.53125,0.28125 -10e-4,-0.0109 10e-4,-0.0203 0,-0.0312 -0.06,-0.39876 -0.20182,-0.7051 -0.375,-1 z m -0.15625,0.75 c -0.72058,-0.18902 -1.52571,0.0359 0.15625,0.25 -0.0485,-0.0827 -0.10312,-0.16891 -0.15625,-0.25 z m 0.15625,0.25 c 0.17318,0.2949 0.31495,0.60124 0.375,1 0.0174,0.13576 0.0395,0.24991 0.0625,0.375 0.0832,6.6e-4 0.16831,0.004 0.25,0 -0.11731,-0.35952 -0.24191,-0.79815 -0.3125,-1.3125 -0.14943,-0.0169 -0.24832,-0.0464 -0.375,-0.0625 z m 3,-1.5 c -0.0448,0.33467 0.0313,0.75539 -0.3125,0.875 -0.59418,0.0802 -0.30854,0.82256 -0.71875,1.15625 -0.0731,0.0783 -0.14495,-0.0104 -0.21875,-0.0312 -0.0534,-0.0219 -0.1027,-0.0513 -0.125,-0.0937 0.007,0.12666 0.0413,0.2432 0.1875,0.34375 -0.0237,0.28512 -0.4357,0.12709 -0.375,0.4375 -10e-4,0.0372 0.002,0.0587 0,0.0937 0.0652,-0.0112 0.12302,-0.0492 0.1875,-0.0625 0.0225,-0.12203 0.0832,-0.12133 0.0625,0 0.17042,-0.0369 0.33537,-0.10524 0.5,-0.15625 0.0746,-0.31626 0.11553,-0.6356 0.5,-0.6875 0.47136,-0.164 0.14359,-0.87555 0.4375,-1.1875 0.32681,-0.29111 0.15382,-0.54762 -0.125,-0.6875 z m -1.375,1.90625 c 0.15775,-0.34927 -0.0227,-0.40268 0,0 z M 2,238.26653 l 0,1 14,0 0,-1 -13,0 z m 197,0 0,1 10,0 0,-1 z m 26,0 0,1 10,0 0,-1 z m -62.03125,0.3125 0,1 c 0,0.36933 0.28692,0.65625 0.65625,0.65625 l 4,0 c 0.368,0 0.6875,-0.28825 0.6875,-0.65625 l 0,-0.78125 0,-0.21875 c 0,0.368 -0.3195,0.65625 -0.6875,0.65625 l -4,0 c -0.36933,0 -0.65625,-0.28692 -0.65625,-0.65625 z m 8,0 0,0.21875 0,0.78125 c 0,0.368 0.28825,0.65625 0.65625,0.65625 l 4,0 c 0.0924,0 0.17019,0.002 0.25,-0.0312 0.23926,-0.1012 0.4375,-0.349 0.4375,-0.625 l 0,-1 c 0,0.276 -0.19824,0.5238 -0.4375,0.625 -0.0798,0.0332 -0.1576,0.0312 -0.25,0.0312 l -4,0 c -0.368,0 -0.65625,-0.28825 -0.65625,-0.65625 z M 99,239.26653 l 0,1 12,0 0,-1 z m -58.875,20.34375 -0.15625,0.4375 -3.625,8.875 0.40625,0 3.21875,-7.875 0.15625,-0.4375 1.8125,0 0.09375,0.21875 3.25,8.09375 0.40625,0 -3.65625,-9.09375 -0.09375,-0.21875 z m -30.8330666,1.40537 -1,2.6875 0.375,0 0.625,-1.6875 0.5625,1.6875 0.3437496,0 z m -1.71875,4.71875 -0.90625,2.5 -2.09375,0 c -0.13585,0.33226 -0.27307,0.67472 -0.40625,1 l 2.5,0 0.90625,-2.5 3.3437496,0 0.8125,2.5 2.625,0 c -0.13156,-0.32951 -0.27229,-0.66624 -0.40625,-1 l -2.21875,0 -0.8125,-2.5 z m 32.5205666,-0.34287 -0.28125,0.53125 c 0,0.32152 0.27225,0.59375 0.59375,0.59375 l 1.15625,0 c 0.32151,0 0.59288,-0.27223 0.59375,-0.59375 L 41.875,265.39153 c -0.0948,0.0648 -0.19193,0.125 -0.3125,0.125 l -1.15625,0 c -0.12056,0 -0.21755,-0.0602 -0.3125,-0.125 z M 34,268.92278 l 0,1 c 0,1.28606 1.0577,2.34375 2.34375,2.34375 l 9.3125,0 c 1.28606,0 2.3125,-1.05769 2.3125,-2.34375 l 0,-1 c 0,1.28606 -1.02644,2.34375 -2.3125,2.34375 l -9.3125,0 C 35.0577,271.26653 34,270.20884 34,268.92278 z m -31.03125,2.34375 0,1 13.03125,0 0,-1 z m 3.09375,19 -0.5625,0.625 0.46875,0.46875 L 7,290.26653 z m 4.9375,0 1.03125,1.09375 0.46875,-0.46875 -0.5625,-0.625 z m 23.5,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 3.5,0 c -0.554,0 -1,0.446 -1,1 l 0,1 c 0,-0.554 0.446,-1 1,-1 0.554,0 1,0.446 1,1 l 0,-1 c 0,-0.554 -0.446,-1 -1,-1 z m 22,0 c -0.554,0 -1,0.446 -1,1 l 0,1 c 0,-0.554 0.446,-1 1,-1 0.554,0 1,0.446 1,1 l 0,-1 c 0,-0.554 -0.446,-1 -1,-1 z m 3.5,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m -45,2 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 8,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 29,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 8,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m -76,0.625 -1.5,1.375 0,1 1.5,-1.375 2,2 2,0 0,-1 -2,0 z m 11,0 -2,2 -2,0 0,1 2,0 2,-2 1.5,1.375 0,-1 z m 20,1.375 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 8,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 29,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 8,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m -45,2 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 8,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 29,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 8,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m -45,2 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 29,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m -72,1.375 -2,2 0.46875,0.53125 L 7.5,300.64153 z m 3,0 0,1 1.53125,1.53125 0.46875,-0.53125 z m 25.5,0.625 c -0.554,0 -1,0.446 -1,1 0,0.1879 0.0668,0.35013 0.15625,0.5 0.17423,-0.29199 0.47765,-0.5 0.84375,-0.5 l 5,0 c 0.3661,0 0.66952,0.20801 0.84375,0.5 0.0894,-0.14987 0.15625,-0.3121 0.15625,-0.5 0,-0.554 -0.446,-1 -1,-1 z m 37,0 c -0.554,0 -1,0.446 -1,1 0,0.1879 0.06682,0.35013 0.15625,0.5 0.174233,-0.29199 0.477651,-0.5 0.84375,-0.5 l 5,0 c 0.366099,0 0.669517,0.20801 0.84375,0.5 0.08943,-0.14987 0.15625,-0.3121 0.15625,-0.5 0,-0.554 -0.446,-1 -1,-1 z m -29,1 0,1 c 0,1.0907 0.9093,2 2,2 1.0907,0 2,-0.9093 2,-2 l 0,-1 c 0,1.0907 -0.9093,2 -2,2 -1.0907,0 -2,-0.9093 -2,-2 z m 22,0 0,1 c 0,1.0907 0.9093,2 2,2 1.0907,0 2,-0.9093 2,-2 l 0,-1 c 0,1.0907 -0.9093,2 -2,2 -1.0907,0 -2,-0.9093 -2,-2 z m -31.9375,0.5 c -0.0416,0.15879 -0.0625,0.32958 -0.0625,0.5 0,1.0907 0.9093,2 2,2 l 5,0 c 1.0907,0 2,-0.9093 2,-2 0,-0.17042 -0.0209,-0.34121 -0.0625,-0.5 -0.22476,0.85745 -1.01722,1.5 -1.9375,1.5 l -5,0 c -0.92028,0 -1.71274,-0.64255 -1.9375,-1.5 z m 37,0 c -0.04162,0.15879 -0.0625,0.32958 -0.0625,0.5 0,1.0907 0.9093,2 2,2 l 5,0 c 1.0907,0 2,-0.9093 2,-2 0,-0.17042 -0.02088,-0.34121 -0.0625,-0.5 -0.224763,0.85745 -1.017222,1.5 -1.9375,1.5 l -5,0 c -0.920278,0 -1.712737,-0.64255 -1.9375,-1.5 z m -69.0625,1.5 0,1 5,0 -0.9375,-1 z m 9.9375,0 -0.9375,1 5,0 0,-1 z m -2.53125,20.28125 c -1.26501,0 -2.3125,1.04749 -2.3125,2.3125 l -2.15625,0 c -0.071,0.3201 -0.125,0.659 -0.125,1 l 2.28125,0 c 0,-1.26501 1.04749,-2.3125 2.3125,-2.3125 1.09686,0 2.02751,0.77849 2.25,1.8125 0.0343,-0.15805 0.03125,-0.33128 0.03125,-0.5 0,-1.26501 -1.01624,-2.3125 -2.28125,-2.3125 z m 4.53125,2.875 c -0.23194,1.88014 -1.607221,3.4109 -3.40625,3.875 l 0,0.125 c 0,0.6325 -0.4925,1.15625 -1.125,1.15625 -0.6325,0 -1.15625,-0.52375 -1.15625,-1.15625 l 0,0.875 0,0.125 c 0,0.41052 0.2347,0.76332 0.5625,0.96875 0.18372,-0.0736 0.3831,-0.125 0.59375,-0.125 0.21065,0 0.41003,0.0514 0.59375,0.125 0.31856,-0.20543 0.53125,-0.55823 0.53125,-0.96875 l 0,-0.125 c 1.976569,-0.5099 3.4375,-2.30281 3.4375,-4.4375 0,-0.14723 -0.01785,-0.29375 -0.03125,-0.4375 z m -6.03125,7.9375 c -0.0529,0.15899 -0.09375,0.32277 -0.09375,0.5 0,0.88308 0.71066,1.625 1.59375,1.625 0.88309,0 1.59375,-0.74192 1.59375,-1.625 0,-0.17723 -0.04095,-0.34101 -0.09375,-0.5 -0.21067,0.64123 -0.79413,1.125 -1.5,1.125 -0.70587,0 -1.28933,-0.48377 -1.5,-1.125 z"
1516 id="path5248"
1517 inkscape:connector-curvature="0"
1518 sodipodi:nodetypes="ccccccsssscssccsscsscsssssssssscccccccssssssscccsscsccccccssccsccsccsscccccccsccccccsccccccccccccccccccccccccccccccccccccccccccccccccsscscsssscscsscscsssccssscsccccccccccccccccsscscssccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccsscssccscsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsscsscssssccscscscccssscsccscssssscsccscssssscsscssssscsscssssscsccccccccsccccsscsccscssscccccccccccscccccccssscsssccscccscccsccccccsscccccccccccccsssccccccccccccccccccccccccccccccccccccccccssscsccssscccscccccsssscssccsssscssccccccccccccccccccccccccccsccssscsscccccccccsssscsscssssscccscssssscccccsssscssccsssscssccssccsccccccccccccccccccsssscssccsssscsscssssssccscsssscccscccccsccccsssscscccccscccccccccccccccccccccccccsssccscccccccccccccccccccccccccccccccccccscccccccccccscccssccccccccccccscccccccccssssscscccccscccccccccccccsccccccccscccccccccscccccscsccsscsscccscsccsscsscccccsccscccccsscccscccccccccccscccssccccccccsssssssccccccccccccssssscscssssssscccccsssccssssssssssssssscscccccsssssssssssssscccccccccccscssccccsssccsssscssssssssscssssssssssssssssssssssssssssscssssssssscssssssssssssssscccccccccccccccccccccccccccccccssscsccssscscsssssssssssssssssssssssssssscccccccccccsccccsccccsccsccsccsccccscccccsccsssssssssssssssssssssssssssssssssssscccccccccccccssscsccssscsccccccccccccccccccccccccccccccccccccccccccscsscscccsssscssssssssscssssscccccccssssccssssccsccccccsssscssssssssscsssssssssccscccccccccccccccccccccccccccccccccsssccssssssssssssssssssccssssssssssssssssssssssssssssssssssssssssssssssssssscccccccccccccccccccccccscccsccsccccscccsccsccssscsccssscscccccccccccccccsssssssssssssssssssssssssssssssssccsssccsssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssscccccccccccccccccccccccccccccccccccccccccssssscsccssssscsccssscsccssscsccssscsccssscscscscsccsccscsccsccscscsccsccsscccsccccsccsccssssssccssssccsssccscsscccsscccscccsccccsscccsccscccssccssccccsccccsscccsccccsccccsccscccccccsccccscccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccsccccccccccccccccccccccccccscscsscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccssscscccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccscccccscccccccccscccssscsccssscccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccssssccsscccssscsccsscccccccccccccccccccccccccccccccccccccccccssccssccsssscssccccccccccccccccssssssssssssssssssssssssssscscsssscscsssssssssssssssssssssssssssssssssssssssssssssssccccccccccccccccccssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssccccccccccsscsscssssscsscssscssscsccssscsccsssscssccsssscsscccccccccccsccccscssccssccscscscsccssscsc" /><path
1519 sodipodi:nodetypes="sssss"
1520 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline"
1521 d="m 41,322.20096 c -3.86517,0 -7,3.1502 -7,7.03432 0,3.88412 3.13483,7.03431 7,7.03431 3.86633,0 7,-3.15019 7,-7.03431 0,-3.88412 -3.13367,-7.03432 -7,-7.03432 z"
1522 id="path4290-7"
1523 inkscape:connector-curvature="0" /><path
1524 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline"
1525 d="m 99,2.2352457 0,13.9999983 11,0 0,-8.9999983 0,-1 -4,-4 -1,0 z m 1,1 5.5,0 3.5,3.5 0,8.4999983 -5,0 -3,0 -1,0 z"
1526 id="path4249"
1527 inkscape:connector-curvature="0"
1528 sodipodi:nodetypes="cccccccccccccccc" /><path
1529 sodipodi:nodetypes="cccccccccccccccc"
1530 inkscape:connector-curvature="0"
1531 id="path4303"
1532 d="m 142,2.2352457 0,13.9999983 -11,0 0,-8.9999983 0,-1 4,-4 1,0 z m -1,1 -5.5,0 -3.5,3.5 0,8.4999983 5,0 3,0 1,0 z"
1533 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline" /><path
1534 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline"
1535 d="m 47,2.2352457 0,13.9999983 -11,0 0,-8.9999983 0,-1 4,-4 1,0 z m -1,1 -5.5,0 -3.5,3.5 0,8.4999983 5,0 3,0 1,0 z"
1536 id="path4305"
1537 inkscape:connector-curvature="0"
1538 sodipodi:nodetypes="cccccccccccccccc" /><path
1539 sodipodi:nodetypes="cccccccccccccccc"
1540 inkscape:connector-curvature="0"
1541 id="path4307"
1542 d="m 3,2.2352457 0,13.9999983 11,0 0,-8.9999983 0,-1 -4,-4 -1,0 z m 1,1 5.5,0 3.5,3.5 0,8.4999983 -5,0 -3,0 -1,0 z"
1543 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline" /><path
1544 sodipodi:nodetypes="cccccccccccccccc"
1545 inkscape:connector-curvature="0"
1546 id="path4311"
1547 d="m 259,2.2352457 0,13.9999983 11,0 0,-8.9999983 0,-1 -4,-4 -1,0 z m 1,1 5.5,0 3.5,3.5 0,8.4999983 -5,0 -3,0 -1,0 z"
1548 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline" /><path
1549 inkscape:connector-curvature="0"
1550 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline"
1551 d="m 291,2.2664961 0,4.75 c 0.19146,-0.120143 0.37062,-0.220842 0.5625,-0.3125 l 0.4375,-0.21875 0,-3.21875 5.34375,0 3.65625,3.65625 0,8.3437479 -5,0 0,0.96875 c 0,0.01043 1.6e-4,0.02085 0,0.03125 l 6,0 0,-8.9999979 0,-1 -4,-4 -1,0 -6,0 z m 1,5.34375 c -0.36123,0.1725556 -0.68892,0.3764146 -0.96875,0.6562496 C 290.39787,8.8998727 290,9.7999957 290,10.766494 c 0,1.393522 0.8237,2.564396 2,3.125 l 0,2.34375 c 0,0.554002 0.44599,1.000002 1,1 l 1,0.03125 c 0.554,-2e-6 1,-0.477248 1,-1.03125 l 0,-2.34375 c 1.17629,-0.560603 2,-1.731478 2,-3.125 0,-1.3935203 -0.82119,-2.5931323 -2,-3.1562479 l 0,2.6562479 -1.46875,1 -1.53125,-1 0,-2.6562479 z"
1552 id="path5011-3" /><path
1553 id="path4415"
1554 d="m 334,2.2664961 0,4.75 c -0.19146,-0.120143 -0.37062,-0.220842 -0.5625,-0.3125 L 333,6.4852461 l 0,-3.21875 -5.34375,0 -3.65625,3.65625 0,8.3437479 5,0 0,0.96875 c 0,0.01043 -1.6e-4,0.02085 0,0.03125 l -6,0 0,-8.9999979 0,-1 4,-4 1,0 6,0 z m -1,5.34375 c 0.36123,0.1725556 0.68892,0.3764146 0.96875,0.6562496 0.63338,0.633377 1.03125,1.5335 1.03125,2.4999983 0,1.393522 -0.8237,2.564396 -2,3.125 l 0,2.34375 c 0,0.554002 -0.44599,1.000002 -1,1 l -1,0.03125 c -0.554,-2e-6 -1,-0.477248 -1,-1.03125 l 0,-2.34375 c -1.17629,-0.560603 -2,-1.731478 -2,-3.125 0,-1.3935203 0.82119,-2.5931323 2,-3.1562479 l 0,2.6562479 1.46875,1 1.53125,-1 0,-2.6562479 z"
1555 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline"
1556 inkscape:connector-curvature="0" /><path
1557 inkscape:connector-curvature="0"
1558 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline"
1559 d="m 163,2.2352457 0,13.9999983 8.8125,0 -1,-1 -1.3125,0 -1.5,0 -3,0 -1,0 0,-11.9999983 5.5,0 3.5,3.5 0,1.21875 c 0.61468,0.769889 1,1.728793 1,2.7812483 l 0,-3.4999983 0,-1 -4,-4 -1,0 -6,0 z m 11,8.4999983 c 0,0.483188 -0.20077,0.86276 -0.34375,1.28125 l 0.34375,0.34375 0,-1.625 z m -4.5,-3.4999983 c -1.92115,0 -3.5,1.57884 -3.5,3.4999983 0,1.92115 1.57885,3.5 3.5,3.5 0.49539,0 0.94633,-0.12374 1.375,-0.3125 l 2.34375,2.34375 1.625,-1.625 -2.28125,-2.28125 c 0.2665,-0.49285 0.4375,-1.0296 0.4375,-1.625 0,-1.9211583 -1.57885,-3.4999983 -3.5,-3.4999983 z m -0.0312,1 c 1.38071,0 2.5,1.11929 2.5,2.4999983 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.3807083 1.11929,-2.4999983 2.5,-2.4999983 z"
1560 id="path4953-8" /><path
1561 id="path4243"
1562 d="m 207,2.2352457 0,13.9999983 -8.8125,0 1,-1 1.3125,0 1.5,0 3,0 1,0 0,-11.9999983 -5.5,0 -3.5,3.5 0,1.21875 c -0.61468,0.769889 -1,1.728793 -1,2.7812483 l 0,-3.4999983 0,-1 4,-4 1,0 6,0 z m -11,8.4999983 c 0,0.483188 0.20077,0.86276 0.34375,1.28125 L 196,12.360244 l 0,-1.625 z m 4.5,-3.4999983 c 1.92115,0 3.5,1.57884 3.5,3.4999983 0,1.92115 -1.57885,3.5 -3.5,3.5 -0.49539,0 -0.94633,-0.12374 -1.375,-0.3125 l -2.34375,2.34375 -1.625,-1.625 2.28125,-2.28125 c -0.2665,-0.49285 -0.4375,-1.0296 -0.4375,-1.625 0,-1.9211583 1.57885,-3.4999983 3.5,-3.4999983 z m 0.0312,1 c -1.38071,0 -2.5,1.11929 -2.5,2.4999983 0,1.38071 1.11929,2.5 2.5,2.5 1.38071,0 2.5,-1.11929 2.5,-2.5 0,-1.3807083 -1.11929,-2.4999983 -2.5,-2.4999983 z"
1563 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline"
1564 inkscape:connector-curvature="0" /><path
1565 inkscape:connector-curvature="0"
1566 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline"
1567 d="m 34,33.235244 0,10 3,0 0,-1 -1,0 -1,0 0,-8 4.5,0 2.5,2.5 0,0.5 1,0 0,-1 -3,-3 -1,0 -5,0 z m 4,5 0,10 9,0 0,-6 0,-1 -3,-3 -1,0 -5,0 z m 1,1 4.5,0 2.5,2.5 0,5.5 -5,0 -1,0 -1,0 0,-8 z"
1568 id="path3594-7" /><path
1569 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1570 d="M 71.53125,33.235244 C 71.236645,33.235244 71,33.471889 71,33.766494 l 0,0.46875 -0.46875,0 C 70.236645,34.235244 70,34.471889 70,34.766494 l 0,0.9375 c 0,0.294605 0.236645,0.53125 0.53125,0.53125 l 1,0 2.9375,0 1,0 c 0.294605,0 0.53125,-0.236645 0.53125,-0.53125 l 0,-0.9375 c 0,-0.294605 -0.236645,-0.53125 -0.53125,-0.53125 l -0.46875,0 0,-0.46875 c 0,-0.294605 -0.236645,-0.53125 -0.53125,-0.53125 z m -2.53125,1 c -1.090704,0 -2,0.909296 -2,2 l 0,9 c 0,1.090704 0.909296,2 2,2 l 1,0 0,-1 -1,0 c -0.554001,0 -1,-0.445999 -1,-1 l 0,-9 c 0,-0.554001 0.445999,-1 1,-1 l 0,-0.46875 c 0,-0.183581 0.0316,-0.366605 0.09375,-0.53125 z m 7.90625,0 C 76.968395,34.399889 77,34.582913 77,34.766494 l 0,0.46875 c 0.554001,0 1,0.445999 1,1 l 0,2 1,0 0,-2 c 0,-1.090704 -0.909296,-2 -2,-2 z m -4.90625,12 c -0.554,0 -1,1 -1,1 l 0,0 c 0,0 0.446,1 1,1 l 7,0 c 0.554,0 1,-1 1,-1 l 0,0 c 0,0 -0.446,-1 -1,-1 z"
1571 id="rect4963-2"
1572 inkscape:connector-curvature="0"
1573 sodipodi:nodetypes="sscssssccsssscsssssssccssscscscscsccsscsssssssss" /><path
1574 inkscape:connector-curvature="0"
1575 id="path4569"
1576 d="m 103.53125,33.235244 c -0.29461,0 -0.53125,0.236645 -0.53125,0.53125 l 0,0.46875 -0.46875,0 c -0.29461,0 -0.53125,0.236645 -0.53125,0.53125 l 0,0.9375 c 0,0.294605 0.23664,0.53125 0.53125,0.53125 l 1,0 2.9375,0 1,0 c 0.29461,0 0.53125,-0.236645 0.53125,-0.53125 l 0,-0.9375 c 0,-0.294605 -0.23664,-0.53125 -0.53125,-0.53125 l -0.46875,0 0,-0.46875 c 0,-0.294605 -0.23664,-0.53125 -0.53125,-0.53125 z m -2.53125,1 c -1.090704,0 -2,0.909296 -2,2 l 0,9 c 0,1.090704 0.909296,2 2,2 l 1,0 0,-1 -1,0 c -0.554,0 -1,-0.445999 -1,-1 l 0,-9 c 0,-0.554001 0.446,-1 1,-1 l 0,-0.46875 c 0,-0.183581 0.0316,-0.366605 0.0937,-0.53125 z m 7.90625,0 c 0.0622,0.164645 0.0937,0.347669 0.0937,0.53125 l 0,0.46875 c 0.554,0 1,0.445999 1,1 l 0,2 1,0 0,-2 c 0,-1.090704 -0.9093,-2 -2,-2 l -0.0937,0 z m -4.90625,12 c -0.554,0 -1,1 -1,1 l 0,0 c 0,0 0.446,1 1,1 l 7,0 c 0.554,0 1,-1 1,-1 l 0,0 c 0,0 -0.446,-1 -1,-1 z"
1577 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1578 sodipodi:nodetypes="sscssssccsssscsssssssccssscscscscsccssccsssssssss" /><path
1579 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1580 d="m 138.46875,33.235244 c 0.29461,0 0.53125,0.236645 0.53125,0.53125 l 0,0.46875 0.46875,0 c 0.29461,0 0.53125,0.236645 0.53125,0.53125 l 0,0.9375 c 0,0.294605 -0.23664,0.53125 -0.53125,0.53125 l -1,0 -2.9375,0 -1,0 c -0.29461,0 -0.53125,-0.236645 -0.53125,-0.53125 l 0,-0.9375 c 0,-0.294605 0.23664,-0.53125 0.53125,-0.53125 l 0.46875,0 0,-0.46875 c 0,-0.294605 0.23664,-0.53125 0.53125,-0.53125 z m 2.53125,1 c 1.0907,0 2,0.909296 2,2 l 0,9 c 0,1.090704 -0.9093,2 -2,2 l -1,0 0,-1 1,0 c 0.554,0 1,-0.445999 1,-1 l 0,-9 c 0,-0.554001 -0.446,-1 -1,-1 l 0,-0.46875 c 0,-0.183581 -0.0316,-0.366605 -0.0937,-0.53125 z m -7.90625,0 C 133.0316,34.399889 133,34.582913 133,34.766494 l 0,0.46875 c -0.554,0 -1,0.445999 -1,1 l 0,2 -1,0 0,-2 c 0,-1.090704 0.9093,-2 2,-2 l 0.0937,0 z m 4.90625,12 c 0.554,0 1,1 1,1 l 0,0 c 0,0 -0.446,1 -1,1 l -7,0 c -0.554,0 -1,-1 -1,-1 l 0,0 c 0,0 0.446,-1 1,-1 z"
1581 id="path4571"
1582 inkscape:connector-curvature="0"
1583 sodipodi:nodetypes="sscssssccsssscsssssssccssscscscscsccssccsssssssss" /><path
1584 inkscape:connector-curvature="0"
1585 id="path4573"
1586 d="m 167.53125,33.235244 c -0.29461,0 -0.53125,0.236645 -0.53125,0.53125 l 0,0.46875 -0.46875,0 c -0.29461,0 -0.53125,0.236645 -0.53125,0.53125 l 0,0.9375 c 0,0.294605 0.23664,0.53125 0.53125,0.53125 l 1,0 2.9375,0 1,0 c 0.29461,0 0.53125,-0.236645 0.53125,-0.53125 l 0,-0.9375 c 0,-0.294605 -0.23664,-0.53125 -0.53125,-0.53125 l -0.46875,0 0,-0.46875 c 0,-0.294605 -0.23664,-0.53125 -0.53125,-0.53125 z m -2.53125,1 c -1.0907,0 -2,0.909296 -2,2 l 0,9 c 0,1.090704 0.9093,2 2,2 l 1,0 0,-1 -1,0 c -0.554,0 -1,-0.445999 -1,-1 l 0,-9 c 0,-0.554001 0.446,-1 1,-1 l 0,-0.46875 c 0,-0.183581 0.0316,-0.366605 0.0937,-0.53125 z m 7.90625,0 c 0.0622,0.164645 0.0937,0.347669 0.0937,0.53125 l 0,0.46875 c 0.554,0 1,0.445999 1,1 l 0,2 1,0 0,-2 c 0,-1.090704 -0.9093,-2 -2,-2 l -0.0937,0 z m -4.90625,12 c -0.554,0 -1,1 -1,1 l 0,0 c 0,0 0.446,1 1,1 l 7,0 c 0.554,0 1,-1 1,-1 l 0,0 c 0,0 -0.446,-1 -1,-1 z"
1587 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1588 sodipodi:nodetypes="sscssssccsssscsssssssccssscscscscsccssccsssssssss" /><path
1589 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1590 d="m 202.46875,33.235244 c 0.29461,0 0.53125,0.236645 0.53125,0.53125 l 0,0.46875 0.46875,0 c 0.29461,0 0.53125,0.236645 0.53125,0.53125 l 0,0.9375 c 0,0.294605 -0.23664,0.53125 -0.53125,0.53125 l -1,0 -2.9375,0 -1,0 c -0.29461,0 -0.53125,-0.236645 -0.53125,-0.53125 l 0,-0.9375 c 0,-0.294605 0.23664,-0.53125 0.53125,-0.53125 l 0.46875,0 0,-0.46875 c 0,-0.294605 0.23664,-0.53125 0.53125,-0.53125 z m 2.53125,1 c 1.0907,0 2,0.909296 2,2 l 0,9 c 0,1.090704 -0.9093,2 -2,2 l -1,0 0,-1 1,0 c 0.554,0 1,-0.445999 1,-1 l 0,-9 c 0,-0.554001 -0.446,-1 -1,-1 l 0,-0.46875 c 0,-0.183581 -0.0316,-0.366605 -0.0937,-0.53125 z m -7.90625,0 C 197.0316,34.399889 197,34.582913 197,34.766494 l 0,0.46875 c -0.554,0 -1,0.445999 -1,1 l 0,2 -1,0 0,-2 c 0,-1.090704 0.9093,-2 2,-2 l 0.0937,0 z m 4.90625,12 c 0.554,0 1,1 1,1 l 0,0 c 0,0 -0.446,1 -1,1 l -7,0 c -0.554,0 -1,-1 -1,-1 l 0,0 c 0,0 0.446,-1 1,-1 z"
1591 id="path4575"
1592 inkscape:connector-curvature="0"
1593 sodipodi:nodetypes="sscssssccsssscsssssssccssscscscscsccssccsssssssss" /><path
1594 inkscape:connector-curvature="0"
1595 style="opacity:0.98999999;fill:#ffffff;fill-opacity:0.99215686;stroke:none;display:inline"
1596 d="m 65,65.235244 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m -14,2 0,1 1,0 0,-1 -1,0 z m 14,0 0,1 1,0 0,-1 -1,0 z m -14,2 0,1 1,0 0,-1 -1,0 z m 14,0 0,1 1,0 0,-1 -1,0 z m -14,2 0,1 1,0 0,-1 -1,0 z m 14,0 0,1 1,0 0,-1 -1,0 z m -14,2 0,1 1,0 0,-1 -1,0 z m 14,0 0,1 1,0 0,-1 -1,0 z m -14,2 0,1 1,0 0,-1 -1,0 z m 14,0 0,1 1,0 0,-1 -1,0 z m -14,2 0,1 1,0 0,-1 -1,0 z m 10,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m -14,2 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z"
1597 id="rect6608-2" /><path
1598 style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline"
1599 d="m 137,226.17278 c -3.86517,0 -7,3.14713 -7,7.03125 0,3.88412 3.13483,7.03125 7,7.03125 3.86633,0 7,-3.14713 7,-7.03125 0,-3.88412 -3.13367,-7.03125 -7,-7.03125 z m 0,1.03125 c 3.31371,0 6,2.68629 6,6 0,3.31371 -2.68629,6 -6,6 -3.31371,0 -6,-2.68629 -6,-6 0,-3.31371 2.68629,-6 6,-6 z m -2.34375,3 c -0.78758,0 -1.40625,0.64605 -1.40625,1.4375 0,0.79145 0.61867,1.4375 1.40625,1.4375 0.78761,0 1.4375,-0.64605 1.4375,-1.4375 0,-0.79145 -0.64989,-1.4375 -1.4375,-1.4375 z m 4.6875,0 c -0.7876,0 -1.4375,0.64605 -1.4375,1.4375 0,0.79145 0.6499,1.4375 1.4375,1.4375 0.78759,0 1.40625,-0.64605 1.40625,-1.4375 0,-0.79145 -0.61866,-1.4375 -1.40625,-1.4375 z m -5.23219,4.77513 c -0.0366,0.1544 -0.081,0.31581 -0.081,0.4768 0,1.55998 2.42289,1.8242 2.96945,1.81057 0.54656,-0.0136 2.96945,-0.25059 2.96945,-1.81057 0,-0.16099 -0.0444,-0.3224 -0.081,-0.4768 -1.30709,1.24337 -2.63751,1.02963 -2.88845,1.05774 -0.25094,0.0281 -2.02946,-0.0474 -2.88844,-1.05774 z"
1600 id="path3733"
1601 inkscape:connector-curvature="0"
1602 sodipodi:nodetypes="sssssssssssssssssssscszsczcc" /><path
1603 sodipodi:nodetypes="ssssssssscccccccccccccccccccccccccccccc"
1604 inkscape:connector-curvature="0"
1605 id="path3755"
1606 d="m 67,226.23528 c -1.108,0 -2,0.892 -2,2 l 0,10 c 0,1.108 0.892,2 2,2 l 12,0 c 1.108,0 2,-0.892 2,-2 l 0,-10 c 0,-1.108 -0.892,-2 -2,-2 z m -1,4 4,0 0,4 -4,0 z m 5,0 4,0 0,4 -4,0 z m 5,0 4,0 0,4 -4,0 z m -10,5 4,0 0,4 -4,0 z m 5,0 4,0 0,4 -4,0 z m 5,0 4,0 0,4 -4,0 z"
1607 style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;display:inline" /><path
1608 style="font-size:15.85716724px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.98999999;fill:#ffffff;fill-opacity:0.99215686;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
1609 d="m 105.21875,131.23528 c -1.3937,1e-5 -2.47545,0.28684 -3.21875,0.90625 -0.7433,0.61943 -1.09375,1.50517 -1.09375,2.65625 0,0.91881 0.24958,1.67676 0.78125,2.21875 0.0797,0.0804 0.18796,0.14481 0.28125,0.21875 l -2.46875,0 c -0.277,0 -0.5,0.18355 -0.5,0.4375 l 0,0.0937 c 0,0.25396 0.223,0.4688 0.5,0.4688 l 5,0 0.875,0.21875 c 0.70201,0.15486 1.17396,0.30385 1.40625,0.5 0.23744,0.19615 0.37499,0.48242 0.375,0.84375 -1e-5,0.40262 -0.18542,0.7207 -0.53125,0.9375 -0.34585,0.2168 -0.84961,0.3125 -1.5,0.3125 -0.64007,0 -1.30832,-0.0851 -2,-0.28125 -0.68653,-0.20131 -1.38686,-0.51394 -2.125,-0.90625 l 0,2.53125 c 0.73814,0.27358 1.4806,0.48563 2.21875,0.625 0.73814,0.13935 1.45451,0.21875 2.1875,0.21875 1.5537,0 2.71511,-0.31808 3.46875,-0.9375 0.75878,-0.62458 1.15624,-1.56877 1.15625,-2.84375 0,-0.44811 -0.0719,-0.8653 -0.1875,-1.21875 l 1.65625,0 c 0.277,0 0.5,-0.2148 0.5,-0.46875 l 0,-0.0937 c 0,-0.25396 -0.223,-0.43755 -0.5,-0.43755 l -2.25,0 c -0.0105,-0.0105 -0.0206,-0.0209 -0.0312,-0.0312 -0.542,-0.5265 -1.46471,-0.9294 -2.75,-1.1875 l -1.28125,-0.25 c -0.60393,-0.12388 -1.01772,-0.26715 -1.25,-0.4375 -0.22713,-0.17549 -0.34376,-0.44028 -0.34375,-0.75 -1e-5,-0.41294 0.19056,-0.71009 0.53125,-0.90625 0.34068,-0.19613 0.85016,-0.28124 1.5625,-0.28125 0.53683,1e-5 1.11481,0.0742 1.71875,0.21875 0.60393,0.14454 0.99009,0.34111 1.625,0.625 l 0,-2.46875 c -0.7175,-0.19098 -1.17272,-0.31335 -1.84375,-0.40625 -0.67104,-0.0981 -1.33385,-0.12499 -1.96875,-0.125 z"
1610 id="path3568-3"
1611 inkscape:connector-curvature="0" /><path
1612 style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
1613 d="m 65,322.23528 0,14 3,0 0,-1 -2,0 0,-12 2,0 0,-1 z m 13,0 0,1 2,0 0,12 -2,0 0,1 3,0 0,-14 z"
1614 id="rect3578-3"
1615 inkscape:connector-curvature="0"
1616 sodipodi:nodetypes="cccccccccccccccccc" /><path
1617 inkscape:connector-curvature="0"
1618 style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
1619 d="m 112,322.78127 -6,0.9375 0,1 2,-0.3125 0,2.84375 -3,0 0,1 3,0 0,3 -2,0 -1,0 0,5 1,0 0,-1 5,0 1,0 0,-4 -1,0 -2,0 0,-3 3,0 0,-1 -3,0 0,-3 3,-0.46875 0,-1 z m -13.999999,0.46875 0,1 5.999999,0 0,-1 -5.999999,0 z m -1,2 0,1 7.999999,0 0,-1 -7.999999,0 z m 1,2 0,1 5.999999,0 0,-1 -5.999999,0 z m 0,2 0,1 5.999999,0 0,-1 -5.999999,0 z m 0,2 0,5 1,0 0,-1 3.999999,0 1,0 0,-4 -1,0 -3.999999,0 -1,0 z m 1,1 3.999999,0 0,2 -3.999999,0 0,-2 z m 6.999999,0 5,0 0,2 -5,0 0,-2 z"
1620 id="rect4258-3" /><path
1621 style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
1622 d="m 129,322.25002 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m -14,2 0,1 1,0 0,-1 -1,0 z m 2,0 0,5 0,1 0,3 5,0 0,-1 -4,0 0,-1 4,0 1,0 0,-1 -5,0 0,-1 6,0 4,0 0,-1 0,-4 -4,0 -7,0 z m 12,0 0,1 1,0 0,-1 -1,0 z m -11,1 9,0 0,1 -9,0 0,-1 z m -3,1 0,1 1,0 0,-1 -1,0 z m 14,0 0,1 1,0 0,-1 -1,0 z m -11,1 8.96875,0 0,1 -8.96875,0 0,-1 z m -3,1 0,1 1,0 0,-1 -1,0 z m 14,0 0,1 1,0 0,-1 -1,0 z m -3,1.75 -3.6875,3.375 3.6875,3.28125 0,-1.90625 -1.4375,-1.40625 1.4375,-1.53125 0,-1.8125 z m 1,0 0,1.875 1.375,1.46875 -1.375,1.46875 0,1.90625 3.625,-3.375 -3.625,-3.34375 z m -12,0.25 0,1 1,0 0,-1 -1,0 z m 0,2 0,1 1,0 0,-1 -1,0 z m 0,2 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z"
1623 id="rect5051-5"
1624 inkscape:connector-curvature="0" /></g><g
1625 inkscape:groupmode="layer"
1626 id="layer3"
1627 inkscape:label="Icons"
1628 style="display:inline"
1629 transform="translate(-1,-0.25001385)"
1630 sodipodi:insensitive="true"><rect
1631 y="321.25006"
1632 x="69"
1633 height="14.00004"
1634 width="8"
1635 id="rect4452"
1636 style="fill:#cccccc;fill-opacity:1;stroke:none" /><rect
1637 style="fill:#cccccc;fill-opacity:1;stroke:none"
1638 id="rect4367"
1639 width="12"
1640 height="10.000055"
1641 x="67"
1642 y="323.25006" /><g
1643 id="g4363"
1644 style="font-size:13.71140385px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#676767;fill-opacity:1;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;font-family:Sans"
1645 transform="translate(2.0000001,0.25006141)"><path
1646 sodipodi:nodetypes="csssccccccsssc"
1647 inkscape:connector-curvature="0"
1648 id="path4365"
1649 style="font-variant:normal;font-weight:bold;font-stretch:normal;fill:#676767;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;font-family:Nimbus Sans L;-inkscape-font-specification:Nimbus Sans L Bold"
1650 d="m 70.006423,329.43503 1.991763,0 c 1.837326,0 3.016509,-1.30258 3.016509,-3.33187 0,-2.00186 -1.138049,-3.09877 -3.22218,-3.09877 l -3.790777,0 0,9.99561 2.004685,0 0,-3.56497 m 0,-1.71392 0,-3.0028 1.347327,0 c 1.096911,0 1.604234,0.4799 1.604234,1.50826 0,1.01464 -0.507323,1.49454 -1.604234,1.49454 l -1.347327,0" /></g><path
1651 style="fill:url(#linearGradient4406);fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
1652 d="m 7.5,353.8438 c -0.79075,0.009 -1.60031,0.34033 -2.5,1.375 l 0,7 0,0.25 0,0.75 0,0.0312 c 0.22508,-0.25367 0.43768,-0.45147 0.65625,-0.625 0.18735,-0.14874 0.37931,-0.27793 0.5625,-0.375 0.0624,-0.0331 0.12551,-0.0662 0.1875,-0.0937 0.0832,-0.035 0.16738,-0.0679 0.25,-0.0937 0.0314,-0.0105 0.0624,-0.0221 0.0937,-0.0312 0.0824,-0.0228 0.16846,-0.047 0.25,-0.0625 0.009,10e-4 0.0222,-0.001 0.0312,0 0.17684,-0.0316 0.35709,-0.0655 0.53125,-0.0625 1.36919,0.0236 2.67349,0.99995 4.03125,1.375 0.20073,0.0554 0.38983,0.1016 0.59375,0.125 0.0652,0.007 0.12196,0.0277 0.1875,0.0312 0.0591,0.003 0.12808,3.1e-4 0.1875,0 0.028,0.004 0.0652,8.2e-4 0.0937,0 0.0532,-0.002 0.10326,-0.0244 0.15625,-0.0312 0.0415,-0.005 0.0829,0.005 0.125,0 0.0301,-0.004 0.0636,0.005 0.0937,0 0.0961,-0.0161 0.18405,-0.0665 0.28125,-0.0937 0.16842,-0.0473 0.32806,-0.10258 0.5,-0.1875 0.0298,-0.0141 0.0637,-0.0155 0.0937,-0.0312 0.015,-0.008 0.0175,-0.0197 0.0312,-0.0312 0.0138,-0.0116 0.0161,-0.0229 0.0312,-0.0312 0.16236,-0.0914 0.33405,-0.18218 0.5,-0.3125 0.0109,-0.009 0.0203,-0.0225 0.0312,-0.0312 0.16802,-0.13283 0.32813,-0.25969 0.5,-0.4375 l 0,-0.0312 0,-1 0,-6 0,-1 c -0.15402,0.16401 -0.31736,0.31409 -0.46875,0.4375 -0.0109,0.009 -0.0203,0.0224 -0.0312,0.0312 -0.13895,0.11076 -0.26887,0.19638 -0.40625,0.28125 -0.0367,0.0227 -0.0884,0.0417 -0.125,0.0625 -0.33321,0.18959 -0.64527,0.29368 -0.96875,0.34375 -1.94086,0.30044 -3.7208,-1.55267 -5.5,-1.53125 z m -4.5,0.40625 0,13 1,0 0,-13 -1,0 z"
1653 id="path3613"
1654 inkscape:connector-curvature="0"
1655 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
1656 inkscape:export-xdpi="90"
1657 inkscape:export-ydpi="90" /><rect
1658 style="fill:#ffffff;fill-opacity:0;stroke:none"
1659 id="rect4382"
1660 width="16"
1661 height="16"
1662 x="1"
1663 y="352.25006"
1664 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
1665 inkscape:export-xdpi="90"
1666 inkscape:export-ydpi="90" /><path
1667 style="fill:#b8b8b8;fill-opacity:1;stroke:none"
1668 d="m 65,64.250051 0,15 5,0 0,-1.153846 0,-1.153846 0,-1.692308 5,-0.153846 0,1.153846 5,0 0,-12 z"
1669 id="rect6534"
1670 inkscape:connector-curvature="0"
1671 sodipodi:nodetypes="ccccccccccc" /><path
1672 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3726);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1-3);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1673 d="m 71.53125,32.250051 c -0.294605,0 -0.53125,0.23664 -0.53125,0.53125 l 0,0.46875 -0.46875,0 c -0.294605,0 -0.53125,0.23664 -0.53125,0.53125 l 0,0.9375 c 0,0.2946 0.236645,0.53125 0.53125,0.53125 l 1,0 2.9375,0 1,0 c 0.294605,0 0.53125,-0.23665 0.53125,-0.53125 l 0,-0.9375 c 0,-0.29461 -0.236645,-0.53125 -0.53125,-0.53125 l -0.46875,0 0,-0.46875 c 0,-0.29461 -0.236645,-0.53125 -0.53125,-0.53125 l -2.9375,0 z m -2.53125,1 c -1.090704,0 -2,0.9093 -2,2 l 0,9 c 0,1.0907 0.909296,2 2,2 l 1,0 0,-1 -1,0 c -0.554001,0 -1,-0.446 -1,-1 l 0,-9 c 0,-0.554 0.445999,-1 1,-1 l 0,-0.46875 c 0,-0.18358 0.0316,-0.36661 0.09375,-0.53125 l -0.09375,0 z m 7.90625,0 C 76.9684,33.414701 77,33.597721 77,33.781301 l 0,0.46875 c 0.554001,0 1,0.446 1,1 l 0,2 1,0 0,-2 c 0,-1.0907 -0.909296,-2 -2,-2 l -0.09375,0 z m -4.90625,5 c -0.554,0 -1,0.446 -1,1 l 0,7 c 0,0.554 0.446,1 1,1 l 7,0 c 0.554,0 1,-0.446 1,-1 l 0,-7 c 0,-0.554 -0.446,-1 -1,-1 l -7,0 z m 0,1 7,0 0,7 -7,0 0,-7 z m 1,1 0,1 5,0 0,-1 -5,0 z m 0,2 0,1 5,0 0,-1 -5,0 z m 0,2 0,1 5,0 0,-1 -5,0 z"
1674 id="path3624"
1675 inkscape:connector-curvature="0" /><path
1676 id="path4583"
1677 d="m 163,1.2500515 0,13.9999995 8.8125,0 -1,-1 -1.3125,0 -1.5,0 -3,0 -1,0 0,-11.9999995 5.5,0 3.5,3.5 0,1.21875 c 0.61468,0.76989 1,1.72879 1,2.78125 l 0,-3.5 0,-1 -4,-4 -1,0 -6,0 z m 11,8.5 c 0,0.4831895 -0.20077,0.8627595 -0.34375,1.2812495 L 174,11.375051 174,9.7500515 z m -4.5,-3.5 c -1.92115,0 -3.5,1.57884 -3.5,3.5 0,1.9211495 1.57885,3.4999995 3.5,3.4999995 0.49539,0 0.94633,-0.12374 1.375,-0.3125 l 2.34375,2.34375 1.625,-1.625 -2.28125,-2.28125 C 172.829,10.882201 173,10.345451 173,9.7500515 c 0,-1.92116 -1.57885,-3.5 -3.5,-3.5 z m -0.0312,1 c 1.38071,0 2.5,1.11929 2.5,2.5 0,1.3807095 -1.11929,2.4999995 -2.5,2.4999995 -1.38071,0 -2.5,-1.11929 -2.5,-2.4999995 0,-1.38071 1.11929,-2.5 2.5,-2.5 z"
1678 style="fill:url(#linearGradient4838);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
1679 inkscape:connector-curvature="0" /><path
1680 style="fill:#4c4c4c;fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-2)"
1681 d="m 167.53125,32.250051 c -0.29461,0 -0.53125,0.23664 -0.53125,0.53125 l 0,0.46875 -0.46875,0 c -0.29461,0 -0.53125,0.23664 -0.53125,0.53125 l 0,0.9375 c 0,0.2946 0.23664,0.53125 0.53125,0.53125 l 1,0 2.9375,0 1,0 c 0.29461,0 0.53125,-0.23665 0.53125,-0.53125 l 0,-0.9375 c 0,-0.29461 -0.23664,-0.53125 -0.53125,-0.53125 l -0.46875,0 0,-0.46875 c 0,-0.29461 -0.23664,-0.53125 -0.53125,-0.53125 l -2.9375,0 z m -2.53125,1 c -1.0907,0 -2,0.9093 -2,2 l 0,9 c 0,1.0907 0.9093,2 2,2 l 1,0 0,-1 -1,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-9 c 0,-0.554 0.446,-1 1,-1 l 0,-0.46875 c 0,-0.18358 0.0317,-0.36661 0.0937,-0.53125 l -0.0937,0 z m 7.90625,0 c 0.0622,0.16465 0.0937,0.34767 0.0937,0.53125 l 0,0.46875 c 0.554,0 1,0.446 1,1 l 0,2 1,0 0,-2 c 0,-1.0907 -0.9093,-2 -2,-2 l -0.0937,0 z m -4.90625,5 c -0.554,0 -1,0.446 -1,1 l 0,7 c 0,0.554 0.446,1 1,1 l 7,0 c 0.554,0 1,-0.446 1,-1 l 0,-7 c 0,-0.554 -0.446,-1 -1,-1 l -7,0 z m 0,1 7,0 0,7 -7,0 0,-7 z m 1,1 0,1 0,4 1,0 1,-1 1,0 1,1 1,0 0,-4 0,-1 -1,0 0,3 -0.25,0 -0.75,0 0,-1 -1,0 0,1 -0.75,0 -0.25,0 0,-3 -1,0 z"
1682 id="path4585"
1683 inkscape:connector-curvature="0" /><path
1684 sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccc"
1685 inkscape:connector-curvature="0"
1686 id="path4589"
1687 d="m 33,64.250051 0,8 2,0 2,0 0,-1 -2,0 0,-3 2,0 0,-1 -2,0 0,-3 z m 4,4 0,3 1,0 0,-3 z m 6,-2 -3,1.9375 3,2 0,-1.3125 c 2.26799,8.8e-4 3.4435,1.45051 4,2.3125 -0.056,-2.03024 -1.74134,-3.6862 -4,-3.6875 z m 0,6 0,1 3,0 0,2 -3,0 0,1 3,0 0,3 -3,0 0,1 3,0 2,0 0,-7 -1,0 0,-1 z m 1,7 0,-3 -2,0 0,3 z m -10,-5 c 0.056,2.03024 1.74134,3.68621 4,3.6875 l 0,1.25 3,-1.9375 -3,-2 0,1.3125 c -2.26799,-8.7e-4 -3.4435,-1.45051 -4,-2.3125 z"
1688 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient4840);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" /><path
1689 id="path4591"
1690 d="m 99,66.250051 0,1 2,0 0,-1 -2,0 z m 2,1 0,3 -2,0 0,-3 -1,0 0,6 1,0 0,-2 2,0 0,2 1,0 0,-6 -1,0 z m 2,-1 0,7 1,0 2,0 0,-1 -2,0 0,-2 2,0 0,-1 -2,0 0,-2 2,0 0,-1 -2,0 -1,0 z m 3,1 0,2 1,0 0,-2 -1,0 z m 0,3 0,2 1,0 0,-2 -1,0 z m 3,-4 0,1 3,0 0,-1 -3,0 z m 0,1 -1,0 0,3 0,1.84375 0,0.15625 1,0 0,-1.15625 0,-0.84375 0,-3 z m 0,5 0,0.25 c -0.42708,0.42709 -0.85415,0.85417 -1.28125,1.28125 l -3.71875,3.75 -2.125,-2.125 -1.40625,1.40625 2.125,2.125 1.40625,1.40625 1.40625,-1.40625 5.21875,-5.25 c -0.13646,-0.14416 -0.26876,-0.29348 -0.40625,-0.4375 l 1.375,0 0.40625,0 0,-1 -1.375,0 -1.375,0 -0.25,0 z"
1691 style="fill:url(#linearGradient4842);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)"
1692 inkscape:connector-curvature="0" /><path
1693 inkscape:connector-curvature="0"
1694 id="path4593"
1695 d="m 37,99.250061 c -1.0907,0 -2,0.909289 -2,1.999999 l 0,7 c 0,1.0907 0.9093,2 2,2 l 8,0 c 1.0907,0 2,-0.9093 2,-2 l 0,-7 c 0,-1.09071 -0.9093,-1.999999 -2,-1.999999 l -8,0 z m 0,0.999999 8,0 c 0.554,0 1,0.44599 1,1 l 0,7 c 0,0.554 -0.446,1 -1,1 l -8,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-7 c 0,-0.55401 0.446,-1 1,-1 z m 6.59375,1.59375 -3.59375,3.59375 -1.40625,-1.4375 -1.4375,1.40625 1.4375,1.4375 1.40625,1.40625 5,-5 -1.40625,-1.40625 z"
1696 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient4844);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" /><path
1697 sodipodi:nodetypes="ssssssssssssssssssscccssssssccssss"
1698 inkscape:connector-curvature="0"
1699 id="path4595"
1700 d="m 99,99.250061 c -1.0907,0 -2,0.909289 -2,1.999999 l 0,7 c 0,1.0907 0.9093,2 2,2 l 12,0 c 1.0907,0 2,-0.9093 2,-2 l 0,-7 c 0,-1.09071 -0.9093,-1.999999 -2,-1.999999 z m 0,0.999999 12,0 c 0.554,0 1,0.44599 1,1 l 0,7 c 0,0.554 -0.446,1 -1,1 l -12,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-7 c 0,-0.55401 0.446,-1 1,-1 z m 1.5,1 c -0.277,0 -0.5,0.22299 -0.5,0.5 0.0807,0.57703 0.3111,0.49624 1,0.5 l 0,5 -0.5,0 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.11921,-0.5 -0.5,-0.5 l -0.5,0 0,-5 0.5,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 z"
1701 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient4846);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" /><path
1702 sodipodi:nodetypes="cccccccsssscccsssscccccccccccccccccccccccccccccccccccccccccccccccccc"
1703 inkscape:connector-curvature="0"
1704 id="path4597"
1705 d="m 334,96.250061 -1,2 -2,0 0,1 1.5,0 -4.5,8.999999 -1,0 -4,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-7 c 0,-0.554009 0.446,-0.999999 1,-0.999999 l 4,0 4,0 0,-1 -8,0 c -1.0907,0 -2,0.9093 -2,1.999999 l 0,7 c 0,1.09069 0.9093,2 2,2 l 4.5,0 -1.5,3 2,0 1.5,-3 1.5,0 0,-1 -1,0 4.5,-8.999999 0.5,0 0,-1 1,-2 z m 2,2.28125 0,0.71875 0.71875,0 c -0.17685,-0.30233 -0.41643,-0.5419 -0.71875,-0.71875 z m 0,1.718749 0,1 1,0 0,-1 z m 0,2 0,1 1,0 0,-1 z m 0,2 0,1 1,0 0,-1 z m 0,2 0,1 1,0 0,-1 z m -4,2 0,1 1,0 0,-1 z m 2,0 0,1 1,0 0,-1 z m 2,0 0,0.71875 c 0.30232,-0.17686 0.5419,-0.41643 0.71875,-0.71875 z"
1706 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3295);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" /><path
1707 inkscape:connector-curvature="0"
1708 id="path4600"
1709 d="m 3.0000001,99.250061 c -0.554,0 -1,0.446 -1,0.999999 l 0,9 c 0,0.55399 0.446,1 1,1 l 11.9999999,0 c 0.554,0 1,-0.44601 1,-1 l 0,-9 c 0,-0.553999 -0.446,-0.999999 -1,-0.999999 l -11.9999999,0 z m 0,2.999999 11.9999999,0 0,7 -11.9999999,0 0,-7 z m 1,1 0,1 3,0 0,-1 -3,0 z m 4.9999999,0 0,2 5,0 0,-2 -5,0 z m -4.9999999,3 0,1 3,0 0,-1 -3,0 z m 4.9999999,0 0,2 5,0 0,-2 -5,0 z"
1710 style="fill:url(#linearGradient4848);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)" /><path
1711 id="path4604"
1712 d="m 37,196.25005 c -1.64649,0 -3,1.3535 -3,3 l 0,1 c 0,1.64649 1.35351,3 3,3 l 3,0 0.6875,-0.6875 -0.53125,-0.5625 0.65625,-0.71875 1,-1.03125 -4.3125,0 c -0.277,0 -0.5,-0.223 -0.5,-0.5 0,-0.27701 0.223,-0.5 0.5,-0.5 l 7,0 c 0.277,0 0.5,0.22299 0.5,0.5 0,0.277 -0.223,0.5 -0.5,0.5 l -1.1875,0 1,1 0.6875,0 c 0.0353,0 0.0594,-0.0277 0.0937,-0.0312 l 0.875,-0.875 c 0.004,-0.0344 0.0312,-0.0585 0.0312,-0.0938 l 0,-1 c 0,-0.55401 -0.446,-1 -1,-1 l -3,0 0,-1 3,0 c 1.0907,0 2,0.90929 2,2 l 0,0.4375 0.53125,0.53125 0.4375,0.4375 c 0.019,-0.13548 0.0312,-0.26585 0.0312,-0.40625 l 0,-1 c 0,-1.6465 -1.35351,-3 -3,-3 l -3,0 -1,1 -1,-1 -3,0 z m 0,1 3,0 0,1 -3,0 c -0.554,0 -1,0.44599 -1,1 l 0,1 c 0,0.554 0.446,1 1,1 l 3,0 0,1 -3,0 c -1.0907,0 -2,-0.9093 -2,-2 l 0,-1 c 0,-1.09071 0.9093,-2 2,-2 z"
1713 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3287);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1714 inkscape:connector-curvature="0" /><path
1715 sodipodi:nodetypes="sssscccsssscccssccssssccsssscssssccssssccsssssss"
1716 inkscape:connector-curvature="0"
1717 id="path4606"
1718 d="m 5.0000001,196.25006 c -1.64649,0 -3,1.3535 -3,3 l 0,1 c 0,1.64649 1.35351,3 3,3 l 3,0 0.9999999,-1 1,1 3,0 c 1.64649,0 3,-1.35351 3,-3 l 0,-1 c 0,-1.6465 -1.35351,-3 -3,-3 l -3,0 -1,1 -0.9999999,-1 z m 0,1 3,0 0,1 -3,0 c -0.554,0 -1,0.44599 -1,1 l 0,1 c 0,0.554 0.446,1 1,1 l 3,0 0,1 -3,0 c -1.0907,0 -2,-0.9093 -2,-2 l 0,-1 c 0,-1.09071 0.9093,-2 2,-2 z m 4.9999999,0 3,0 c 1.0907,0 2,0.90929 2,2 l 0,1 c 0,1.0907 -0.9093,2 -2,2 l -3,0 0,-1 3,0 c 0.554,0 1,-0.446 1,-1 l 0,-1 c 0,-0.55401 -0.446,-1 -1,-1 l -3,0 z m -4.4999999,2 6.9999999,0 c 0.277,0 0.5,0.22299 0.5,0.5 0,0.277 -0.223,0.5 -0.5,0.5 l -6.9999999,0 c -0.277,0 -0.5,-0.223 -0.5,-0.5 0,-0.27701 0.223,-0.5 0.5,-0.5 z"
1719 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3289);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" /><path
1720 inkscape:connector-curvature="0"
1721 id="path4608"
1722 d="m 69,130.21881 0,6.5 c 0,0.6818 0.0818,1.2882 0.21875,1.84375 0.13694,0.55554 0.35886,1.04609 0.6875,1.4375 0.32865,0.3914 0.76476,0.6916 1.3125,0.90625 0.56144,0.20201 1.24087,0.28125 2.0625,0.28125 0.8353,0 1.53231,-0.0792 2.09375,-0.28125 0.56143,-0.21465 1.03265,-0.51485 1.375,-0.90625 0.34233,-0.39141 0.5818,-0.88196 0.71875,-1.4375 0.13697,-0.55555 0.18749,-1.16195 0.1875,-1.84375 l 0,-6.5 -2.5,0 0,6.3125 c -1.1e-4,0.49241 -0.039,0.9091 -0.0937,1.25 -0.0548,0.32828 -0.14432,0.59785 -0.28125,0.8125 -0.13695,0.20201 -0.32971,0.34911 -0.5625,0.4375 -0.23279,0.0884 -0.51896,0.15625 -0.875,0.15625 -0.35604,0 -0.67347,-0.0679 -0.90625,-0.15625 -0.2328,-0.0884 -0.39431,-0.23549 -0.53125,-0.4375 -0.12325,-0.20202 -0.22648,-0.45297 -0.28125,-0.78125 -0.0548,-0.3409 -0.0625,-0.75759 -0.0625,-1.25 l 0,-6.34375 -2.5625,0 z m -0.5,12.03125 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 10,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 l -10,0 z"
1723 style="font-size:15.23443031px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4850);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1);font-family:Sans" /><path
1724 sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
1725 inkscape:connector-curvature="0"
1726 id="path4610"
1727 d="m 292,161.25005 0,7 1,0 2,0 0,-1 -2,0 0,-5 2,0 0,-1 -2,0 z m 3,1 0,3 0,2 1,0 0,-2 0,-3 z m 2,-1 0,7 1,0 0,-7 z m 2,0 0,5 1,0 0,-5 z m 1,5 0,2 2,0 0,-2 z m 2,0 1,0 0,-5 -1,0 z m -8.03585,3.36417 -2.83816,2.83816 2.83816,2.83816 0.95788,-0.9224 -1.88029,-1.91576 1.88029,-1.88028 z m 3.6896,0 -2.41243,5.67632 1.8448,0 2.54323,-5.67222 z m 3.12198,0 -0.95788,0.95788 1.88028,1.88028 -1.88028,1.91576 0.95788,0.9224 2.83816,-2.83816 z"
1728 style="fill:url(#linearGradient4852);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)" /><path
1729 inkscape:connector-curvature="0"
1730 id="path4612"
1731 d="m 73.5,354.25005 c -1.9217,0 -3.5,1.5783 -3.5,3.5 l 0,1.5 -1,0 c -0.554,0 -1,0.44599 -1,1 l 0,6 c 0,0.554 0.446,1 1,1 l 9,0 c 0.554,0 1,-0.446 1,-1 l 0,-6 c 0,-0.55401 -0.446,-1 -1,-1 l -1,0 0,-1.5 c 0,-1.9217 -1.5783,-3.5 -3.5,-3.5 z m 0,1 c 1.385,0 2.5,1.115 2.5,2.5 l 0,1.5 -5,0 0,-1.5 c 0,-1.385 1.115,-2.5 2.5,-2.5 z m 0,7 c 0.82843,0 1.5,0.67157 1.5,1.5 0,0.82842 -0.67157,1.5 -1.5,1.5 -0.82843,0 -1.5,-0.67158 -1.5,-1.5 0,-0.82843 0.67157,-1.5 1.5,-1.5 z"
1732 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3348);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" /><path
1733 inkscape:connector-curvature="0"
1734 id="path4614"
1735 d="m 34.5,289.25006 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 3.5,0 c -1.0907,0 -2,0.9093 -2,2 l 0,10 c 0,1.0907 0.9093,2 2,2 1.0907,0 2,-0.9093 2,-2 l 0,-10 c 0,-1.0907 -0.9093,-2 -2,-2 z m 0,1 c 0.554,0 1,0.446 1,1 l 0,10 c 0,0.554 -0.446,1 -1,1 -0.554,0 -1,-0.446 -1,-1 l 0,-10 c 0,-0.554 0.446,-1 1,-1 z m -11.5,1 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 8,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m -8,2 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 8,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m -8,2 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 8,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m -8,2 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22386 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27614 -0.22386,-0.5 -0.5,-0.5 z m -6.5,2 c -1.0907,0 -2,0.9093 -2,2 0,1.0907 0.9093,2 2,2 l 5,0 c 1.0907,0 2,-0.9093 2,-2 0,-1.0907 -0.9093,-2 -2,-2 l -5,0 z m 0,1 5,0 c 0.554,0 1,0.446 1,1 0,0.554 -0.446,1 -1,1 l -5,0 c -0.554,0 -1,-0.446 -1,-1 0,-0.554 0.446,-1 1,-1 z"
1736 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient4856);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" /><path
1737 id="path4616"
1738 d="m 290,102.25006 14,0 0,5 -14,0 z"
1739 style="fill:#c4c4c4;fill-opacity:1;stroke:none"
1740 inkscape:connector-curvature="0" /><path
1741 style="fill:url(#linearGradient4858);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
1742 d="m 36.3298,257.27124 c -1.28605,0 -2.3298,1.04375 -2.3298,2.3298 l 0,9.31921 c 0,1.28606 1.04375,2.32981 2.3298,2.32981 l 9.31921,0 c 1.28606,0 2.3298,-1.04375 2.3298,-2.32981 l 0,-9.31921 c 0,-1.28605 -1.04374,-2.3298 -2.3298,-2.3298 z m 3.80414,2.33622 1.79284,0 0.11832,0.212 3.64032,9.10079 -2.3298,0 -0.87368,-2.29339 -3.02147,0 -0.87367,2.29339 -2.257,0 3.64032,-8.88237 z"
1743 id="path4618"
1744 inkscape:connector-curvature="0"
1745 sodipodi:nodetypes="sssssssssccccccccccc" /><path
1746 style="fill:#4b4b4b;fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
1747 d="m 41.57171,265.48627 -1.16491,0 c -0.3215,0 -0.58244,-0.26094 -0.58244,-0.58246 l 1.1381,-2.19467 1.19286,2.19467 c -8.7e-4,0.32152 -0.2621,0.58246 -0.58361,0.58246 z"
1748 id="path4620"
1749 inkscape:connector-curvature="0"
1750 sodipodi:nodetypes="sscccs" /><path
1751 sodipodi:nodetypes="cccccccccccc"
1752 style="fill:url(#linearGradient4860);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
1753 d="m 67,193.25006 0,14 1,0 0,-14 z m 4.74999,-0.41664 c -0.86983,0.009 -1.76033,0.34033 -2.74999,1.375 l 0,8.04164 c 3.96132,-4.05865 6.94268,2.81598 11,-1 l 0,-8.04165 c -3.03099,2.934 -5.64051,-0.40352 -8.25001,-0.37496 z"
1754 id="path4622"
1755 inkscape:connector-curvature="0" /><path
1756 sodipodi:nodetypes="cccccccccccccsssssss"
1757 inkscape:connector-curvature="0"
1758 id="path4624"
1759 d="m 202.71875,138.46881 -0.96875,0.90625 1.90625,1.96875 -1.90625,1.96875 0.96875,1 1.90625,-1.96875 1.96875,1.96875 0.96875,-1 -1.9375,-1.96875 1.9375,-1.96875 -0.96875,-0.90625 -1.96875,1.90625 z M 194.5,141.25006 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 z"
1760 style="fill:url(#linearGradient4862);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)" /><path
1761 sodipodi:nodetypes="ccccccc"
1762 style="fill:url(#linearGradient4864);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
1763 d="m 233,35.250061 -7,5 6.99998,4.99998 2e-5,-3.33332 c 3.41666,0 5.61556,1.22 7,3.33334 0,-4.98333 -3.60112,-6.66667 -7,-6.66667 2e-5,-0.85078 1e-5,-2.61388 0,-3.33333 z"
1764 id="path4626"
1765 inkscape:connector-curvature="0" /><path
1766 style="fill:url(#linearGradient4866);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
1767 d="m 418.99999,163.25006 0,2 12.00001,0 0,-2 -12.00001,0 z m 0,3 0,1.99999 12.00001,0 0,-1.99999 -12.00001,0 z m 0,3 0,2 12.00001,0 0,-2 -12.00001,0 z m 0,2.99999 0,2.00001 12.00001,0 0,-2.00001 -12.00001,0 z"
1768 id="path4628"
1769 inkscape:connector-curvature="0" /><path
1770 style="fill:url(#linearGradient4868);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
1771 d="m 392,163.25006 0,2 7,0 0,-2 -7,0 z m -4,3 0,1.99999 11,0 0,-1.99999 -11,0 z m 2,3 0,2 9,0 0,-2 -9,0 z m -3,3 0,2 12,0 0,-2 -12,0 z"
1772 id="path4630"
1773 inkscape:connector-curvature="0" /><path
1774 style="fill:url(#linearGradient4870);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
1775 d="m 356.8683,163.21055 0,2.02634 8.10536,0 0,-2.02634 -8.10536,0 z m -2.02634,3.03951 0,2.02633 12.15804,0 0,-2.02633 -12.15804,0 z m 2.02634,3.0395 0,2.02634 8.10536,0 0,-2.02634 -8.10536,0 z m -2.02634,3.03951 0,2.02634 12.15804,0 0,-2.02634 -12.15804,0 z"
1776 id="path4632"
1777 inkscape:connector-curvature="0" /><path
1778 style="fill:url(#linearGradient4872);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
1779 d="m 323,163.25006 0,2 7,0 0,-2 -7,0 z m 0,3 0,2 11,0 0,-2 -11,0 z m 0,3 0,2 9,0 0,-2 -9,0 z m 0,3 0,2 12,0 0,-2 -12,0 z"
1780 id="path4634"
1781 inkscape:connector-curvature="0" /><path
1782 style="fill:url(#linearGradient4874);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
1783 d="m 14.143585,33.304411 -4.126956,5.00918 -4.0880185,-4.93658 c 0,0 -0.8954698,0.0269 -0.8954698,1.05265 0,2.21508 1.5511147,4.31748 3.2704133,5.95293 l -1.7909395,2.17791 0.1167447,0.14519 c -0.089703,-0.009 -0.1790976,-0.0363 -0.2725383,-0.0363 -1.3754463,0 -2.4917443,1.04074 -2.4917443,2.3231 0,1.28234 1.116298,2.3231 2.4917443,2.3231 1.3754463,0 2.4917443,-1.04076 2.4917443,-2.3231 0,-0.69345 -0.3382551,-1.31604 -0.8565423,-1.74234 0.4809109,-0.30316 1.2134861,-0.78955 2.0245501,-1.41563 0.832239,0.64465 1.592846,1.16764 2.102405,1.48823 -0.478416,0.42398 -0.778669,1.00648 -0.778669,1.66974 0,1.28234 1.116298,2.3231 2.491745,2.3231 1.375446,0 2.491744,-1.04076 2.491744,-2.3231 0,-1.28236 -1.115055,-2.32427 -2.491744,-2.3231 -0.06354,0 -0.132378,0.0317 -0.194665,0.0363 l 0.03887,-0.0363 -1.907749,-2.28681 c 1.695639,-1.60874 3.231485,-3.67659 3.231485,-5.84404 0,-1.11857 -0.856533,-1.23414 -0.856533,-1.23414 z m -7.7866987,10.52654 c 0.6877138,0 1.2458722,0.52037 1.2458722,1.16154 0,0.64118 -0.5581584,1.16155 -1.2458722,1.16155 -0.6877231,0 -1.2458721,-0.52037 -1.2458721,-1.16155 0,-0.64117 0.558149,-1.16154 1.2458721,-1.16154 z m 7.4752327,0 c 0.687714,0 1.245872,0.52037 1.245872,1.16154 0,0.64118 -0.558158,1.16155 -1.245872,1.16155 -0.687723,0 -1.245872,-0.52037 -1.245872,-1.16155 0,-0.64117 0.558149,-1.16154 1.245872,-1.16154 z"
1784 id="path4636"
1785 inkscape:connector-curvature="0" /><path
1786 sodipodi:nodetypes="sssssssssssssssssssscszsczcc"
1787 inkscape:connector-curvature="0"
1788 id="path4638"
1789 d="m 137,225.2188 c -3.86517,0 -7,3.14713 -7,7.03125 0,3.88412 3.13483,7.03125 7,7.03125 3.86633,0 7,-3.14713 7,-7.03125 0,-3.88412 -3.13367,-7.03125 -7,-7.03125 z m 0,1.03125 c 3.31371,0 6,2.68629 6,6 0,3.31371 -2.68629,6 -6,6 -3.31371,0 -6,-2.68629 -6,-6 0,-3.31371 2.68629,-6 6,-6 z m -2.34375,3 c -0.78758,0 -1.40625,0.64605 -1.40625,1.4375 0,0.79145 0.61867,1.4375 1.40625,1.4375 0.78761,0 1.4375,-0.64605 1.4375,-1.4375 0,-0.79145 -0.64989,-1.4375 -1.4375,-1.4375 z m 4.6875,0 c -0.7876,0 -1.4375,0.64605 -1.4375,1.4375 0,0.79145 0.6499,1.4375 1.4375,1.4375 0.78759,0 1.40625,-0.64605 1.40625,-1.4375 0,-0.79145 -0.61866,-1.4375 -1.40625,-1.4375 z m -5.23219,4.77513 c -0.0366,0.1544 -0.081,0.31581 -0.081,0.4768 0,1.55998 2.42289,1.8242 2.96945,1.81057 0.54656,-0.0136 2.96945,-0.25059 2.96945,-1.81057 0,-0.16099 -0.0444,-0.3224 -0.081,-0.4768 -1.30709,1.24337 -2.63751,1.02963 -2.88845,1.05774 -0.25094,0.0281 -2.02946,-0.0474 -2.88844,-1.05774 z"
1790 style="fill:url(#linearGradient4876);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)" /><path
1791 transform="matrix(1.0570818,0,0,1.0570818,-13.669289,-9.0845785)"
1792 sodipodi:nodetypes="cssccscccssccscc"
1793 style="fill:url(#linearGradient4878);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
1794 d="m 259.65386,163.531 c -1.472,0 -2.66666,1.24939 -2.66666,2.53241 0,1.28301 1.19466,2.3243 2.66666,2.3243 0.0453,0 0.0811,8.7e-4 0.12493,0 -0.196,1.29812 -0.87033,2.97394 -2.79166,4.64861 1.33333,0 5.33332,-2.32431 5.33332,-6.97291 0,-1.28302 -1.19466,-2.53241 -2.66666,-2.53241 z m 7.99998,0.026 c -1.472,0 -2.66666,1.22337 -2.66666,2.50639 0,1.28302 1.19466,2.32431 2.66666,2.32431 0.048,0 0.0784,8.7e-4 0.12493,0 -0.196,1.28069 -0.86633,2.93413 -2.79166,4.61228 1.37466,0 5.33332,-2.28798 5.33332,-6.93659 0,-1.28302 -1.19466,-2.50639 -2.66666,-2.50639 z"
1795 id="path4640"
1796 inkscape:connector-curvature="0" /><path
1797 style="fill:url(#linearGradient4880);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
1798 d="m 41,225.25006 c -3.86517,0 -7,3.13483 -7,6.99999 0,3.86518 3.13483,7.00001 7,7.00001 3.86633,0 7,-3.13483 7,-7.00001 0,-3.86516 -3.13367,-6.99999 -7,-6.99999 z m 2.47916,2.29688 c 0.62773,-0.0298 1.3338,0.21291 2.1875,0.80207 -1.27516,0 -2.10904,1.30666 -2.88021,2.91667 l 1.4948,0 c 0.25783,0 0.4375,0.24325 0.4375,0.51041 l -1.16667,1.64063 -1.75,0 c -1.19233,2.56317 -2.57892,4.74454 -5.46875,2.73437 1.33233,-0.003 2.17992,-1.54671 2.98958,-3.31769 l 0.21875,-0.47398 c 1.0115,-2.26011 2.05434,-4.72275 3.9375,-4.81248 z"
1799 id="path4642"
1800 inkscape:connector-curvature="0"
1801 sodipodi:nodetypes="ssssscccsccccccc" /><path
1802 inkscape:connector-curvature="0"
1803 id="path4644"
1804 d="m 8.0000001,6.2500615 0,1.875 -1.375,1.46875 1.375,1.4687495 0,1.90625 -3.625,-3.3749995 z"
1805 style="fill:url(#linearGradient4882);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)" /><path
1806 inkscape:connector-curvature="0"
1807 id="path4646"
1808 d="m 9,6.2500615 3.6875,3.375 L 9,12.906311 9,11.000061 10.4375,9.5938115 9,8.0625615 z"
1809 style="fill:url(#linearGradient4884);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)" /><path
1810 sodipodi:nodetypes="sccsscccssscsssssss"
1811 style="fill:url(#linearGradient4886);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
1812 d="m 9.400192,321.25006 c -2.5311594,0 -4.5833578,2.05219 -4.5833578,4.58335 l 2.2916789,0 c 0,-1.26501 1.0266722,-2.29168 2.2916789,-2.29168 1.265007,0 2.29168,1.02667 2.29168,2.29168 0,1.265 -1.026673,2.29168 -2.29168,2.29168 -0.8015237,0.007 -1.2388122,0.57905 -1.1458394,1.14585 l 0,1.0026 0,0.14323 c 0,0.6325 0.5133366,1.14584 1.1458394,1.14584 0.632504,0 1.145839,-0.51334 1.145839,-1.14584 l 0,-0.14323 c 1.976573,-0.5099 3.437519,-2.30544 3.437519,-4.44013 0,-2.53116 -2.052199,-4.58335 -4.583358,-4.58335 z m 0,11.00442 c -0.8830925,0 -1.5998062,0.71671 -1.5998062,1.59981 0,0.88308 0.7167137,1.5998 1.5998062,1.5998 0.883094,0 1.599806,-0.71672 1.599806,-1.5998 0,-0.8831 -0.716712,-1.59981 -1.599806,-1.59981 z"
1813 id="path4648"
1814 inkscape:connector-curvature="0" /><path
1815 style="fill:url(#linearGradient4888);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
1816 d="m 36.34264,356.62101 c 0.51469,-0.51344 1.34901,-0.51344 1.86244,0 L 41,359.40963 l 2.79492,-2.78862 c 0.51469,-0.51344 1.34901,-0.51344 1.86244,0 0.51469,0.51344 0.51469,1.34524 0,1.85992 l -2.79492,2.78989 2.79492,2.78864 c 0.51469,0.51341 0.51469,1.34648 0,1.85992 -0.51469,0.51343 -1.34901,0.51343 -1.86244,0 L 41,363.12949 l -2.79492,2.78989 c -0.51469,0.51343 -1.34901,0.51343 -1.86244,0 -0.51469,-0.51344 -0.51469,-1.34651 0,-1.85992 l 2.79492,-2.78864 -2.79492,-2.78989 c -0.51469,-0.51468 -0.51469,-1.34774 0,-1.85992 z"
1817 id="path4651"
1818 inkscape:connector-curvature="0" /><path
1819 style="fill:url(#linearGradient4890);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
1820 d="m 137.90909,353.25005 0,7.08065 4.69598,-3.57702 z m -1.17399,2.32963 c -3.2461,0 -5.86997,2.66057 -5.86997,5.90666 0,3.24609 2.62387,5.86997 5.86997,5.86997 3.24609,0 5.86997,-2.62388 5.86997,-5.86997 l 0,-0.0366 -2.34799,0 c 0,1.9453 -1.57667,3.52198 -3.52198,3.52198 -1.94531,0 -3.52198,-1.57668 -3.52198,-3.52198 0,-1.94531 1.57667,-3.52198 3.52198,-3.52198 0.41441,0 0.80535,0.0898 1.17399,0.22013 l 0,-2.42137 c -0.37685,-0.0763 -0.77484,-0.14675 -1.17399,-0.14675 z"
1821 id="path4653"
1822 inkscape:connector-curvature="0"
1823 sodipodi:nodetypes="cccccsssccssscccc" /><path
1824 style="fill:url(#linearGradient4892);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
1825 d="m 169.63108,225.85717 c -3.68133,0 -6.66665,2.71633 -6.66665,6.04164 0,2.46666 1.64933,4.56932 3.99999,5.49999 l 0,0.5 -2.66666,0 0,-0.66667 c 0,-0.36933 -0.29733,-0.66666 -0.66667,-0.66666 -0.36933,0 -0.66666,0.29733 -0.66666,0.66666 l 0,1.33333 c 0,0.36933 0.29733,0.66667 0.66666,0.66667 l 3.99999,0 c 0.368,0 0.66667,-0.29867 0.66667,-0.66667 l 0,-0.79166 0,-0.54167 0,-0.83333 c -1.55066,-0.66266 -2.66666,-2.40533 -2.66666,-4.49999 0,-2.65998 1.79066,-4.83331 3.99999,-4.83331 2.20933,0 3.99999,2.17333 3.99999,4.83331 0,2.09466 -1.116,3.83599 -2.66666,4.49999 l 0,0.83333 0,0.54167 0,0.79166 c 0,0.368 0.29866,0.66667 0.66666,0.66667 l 3.99999,0 c 0.0924,0 0.17019,-0.008 0.25,-0.0416 0.23926,-0.1012 0.41667,-0.349 0.41667,-0.625 l 0,-1.33333 c 0,-0.36933 -0.29733,-0.66667 -0.66667,-0.66667 -0.36933,0 -0.66666,0.29734 -0.66666,0.66667 l 0,0.66666 -2.66666,0 0,-0.5 c 2.35066,-0.93066 3.99999,-3.03332 3.99999,-5.49998 0,-3.32531 -2.98399,-6.04164 -6.66665,-6.04164 z"
1826 id="path4655"
1827 inkscape:connector-curvature="0" /><path
1828 id="path4657"
1829 d="m 265,225.25005 c -3.86516,0 -7,3.13484 -7,7 0,3.86516 3.13484,7 7,7 3.86516,0 7,-3.13484 7,-7 0,-3.86516 -3.13484,-7 -7,-7 z m 0,1 c 0.57563,0 1.12928,0.0987 1.65625,0.25 -0.21686,0.024 -0.40509,0.0414 -0.21875,0.0625 0.60892,0.003 -0.1276,0.039 -0.1875,0.125 -0.11394,0.0829 -0.0834,0.026 -0.15625,0.125 -0.11101,0.005 -0.16343,0.0248 -0.1875,0.0312 0.0628,0.0123 0.21665,0.0288 0.3125,0.0312 0.26795,-0.0538 0.54333,-0.1539 0.8125,-0.25 0.0491,0.0177 0.10773,0.0123 0.15625,0.0312 -0.057,0.0184 -0.10829,0.071 -0.15625,0.0625 -0.34875,0.25862 0.70213,-0.0275 0.59375,0.46875 0.0904,0.035 0.0426,-0.16732 0.0312,-0.3125 1.98416,0.97877 3.34375,3.01293 3.34375,5.375 0,2.96499 -2.14232,5.42075 -4.96875,5.90625 0.002,-0.0351 -0.001,-0.0564 0,-0.0937 -0.0607,-0.31041 0.3513,-0.15238 0.375,-0.4375 -0.14618,-0.10055 -0.18095,-0.21709 -0.1875,-0.34375 -0.0227,-0.40268 0.15775,-0.34927 0,0 0.0223,0.0426 0.0716,0.0718 0.125,0.0937 0.0738,0.0209 0.14565,0.10949 0.21875,0.0312 0.41021,-0.33369 0.12457,-1.07604 0.71875,-1.15625 0.47136,-0.164 0.14359,-0.87555 0.4375,-1.1875 0.53462,-0.47621 -0.2551,-0.89849 -0.6875,-0.78125 -0.0559,-0.0857 -0.27353,-0.28009 -0.5,-0.0625 0.15857,-0.1649 -0.008,-0.23324 -0.25,-0.0312 0.24467,-0.17708 0.25848,-0.47377 -0.0625,-0.65625 -0.0508,9.9e-4 -0.10507,-0.004 -0.125,0.0312 -0.0638,-0.0687 -0.22894,-0.0608 -0.28125,0.0312 -0.0101,-0.0804 -0.0318,-0.15944 -0.0625,-0.1875 -0.12961,-0.14754 -0.16689,-0.11264 -0.1875,-0.0312 0.0112,-0.0474 0.002,-0.10756 0,-0.15625 -0.32535,-0.0722 -0.953,-0.49438 -1,0 0.002,-0.20286 -0.0586,-0.23675 -0.0937,-0.1875 0.0276,-0.0332 0.0683,-0.0615 0.125,-0.0937 -0.23557,0.0464 -0.5475,0.32011 -0.5625,0.5625 0.0648,0.41584 -0.42384,0.78976 -0.1875,1.0625 -0.0185,-0.003 -0.0422,0.0103 -0.0625,0 0.20991,0.41324 0.44408,0.73866 0.65625,1.0625 0.23031,0.0604 0.44985,0.14475 0.5625,0.3125 -0.17222,-0.0166 -0.26928,-0.0451 -0.40625,-0.0625 0.17318,0.2949 0.31495,0.60124 0.375,1 0.0695,0.54303 0.19023,1.00029 0.3125,1.375 -0.0919,0.004 -0.18828,0 -0.28125,0 -3.31371,0 -6,-2.6863 -6,-6 0,-1.4656 0.53344,-2.80175 1.40625,-3.84375 0.34206,-0.0211 0.7743,0.12805 0.75,0.4375 0.0307,0.0446 0.0539,0.0428 0.0625,0.0312 -0.0741,0.19641 -0.23979,0.37414 0.0937,0.5625 0.22757,0.0776 -0.005,-0.0939 -0.125,0.1875 -0.18886,-0.0161 -0.54745,0.56888 -0.53125,0.875 -0.006,0.28224 0.15163,0.47561 0.375,0.5625 -0.16645,0.0629 -0.0795,0.49173 0.0937,0.625 0.234,0.59128 0.0786,-0.21992 -0.0625,-0.40625 0.1184,-0.41868 0.28654,0.49131 0.5,0.59375 0.0459,0.40021 0.30654,0.5924 0.6875,0.71875 0.1724,0.007 0.42696,0.0904 0.5625,0 -0.0572,0.0939 -0.0543,0.2011 0.0937,0.21875 0.0497,0.0166 0.18315,0.0719 0.21875,0 0.0368,0.0175 0.10148,0.0198 0.15625,-0.0312 0.0432,-0.0198 0.0361,0.0124 0.0625,0 -0.11865,0.0885 -0.24679,0.23155 0.0312,0.28125 0.18197,0.12198 0.21951,-0.59882 -0.0312,-0.46875 -0.27053,-0.0764 -0.31824,0.10185 -0.25,0.1875 -0.38423,0.10029 0.48507,-0.80377 -0.0312,-0.71875 -0.14636,0.36457 -0.72915,0.44313 -0.71875,-0.0625 0.0733,-0.11228 0.0576,-0.29508 0,-0.4375 0.0762,0.0536 0.14828,-0.0524 0.25,-0.1875 0.0508,-0.20201 0.45865,-0.11762 0.5625,-0.125 -0.007,-0.008 -0.0149,-0.019 -0.0312,-0.0312 0.34794,-0.17518 0.70785,0.0435 0.71875,0.4375 0.0727,0.0592 0.0799,-0.14085 0.0937,-0.15625 -0.34271,-0.59064 0.60005,-0.61065 0.53125,-1.09375 0.086,0.0703 0.16097,-0.25555 0.46875,-0.34375 0.0156,-0.0612 0.5408,-0.25245 0.5625,-0.5625 l 0.0312,-0.0625 c -0.0777,0.58493 0.56903,-0.28504 0.125,-0.125 -0.48342,0.25168 -0.0186,-0.16425 0.21875,-0.15625 0.2339,0.10315 1.13432,-0.3299 0.59375,-0.375 -0.14861,0.004 0.0197,-0.83907 -0.375,-0.375 -0.18201,-0.013 -0.21657,-0.52148 -0.59375,-0.28125 -0.21308,0.35773 -0.42379,0.80911 -0.78125,0.96875 0.10551,-0.34815 -0.17558,-0.37355 -0.4375,-0.46875 -0.50037,-0.22009 0.22843,-0.53767 0.40625,-0.65625 0.42598,0.0488 0.0804,-0.2331 0.40625,-0.1875 0.25965,0.11567 0.79746,-0.45867 0.3125,-0.25 -0.34093,0.38477 -0.21848,-0.29476 -0.5,-0.15625 -0.0588,0.36258 -0.54949,0.31735 -0.9375,0.28125 -0.20901,0.22494 -0.18621,0.0524 -0.40625,0.0312 -0.22948,-0.0557 -0.62539,-0.2074 -1.03125,-0.125 -0.42791,0.0153 -0.77707,0.13054 -1.09375,0.375 0.18446,-0.14534 0.37067,-0.28434 0.3125,-0.34375 -0.13804,-0.0294 -0.26862,-0.0577 -0.40625,-0.0625 1.0158,-0.78806 2.2713,-1.2811 3.6564,-1.2811 z m -0.40625,9.625 c -0.0485,-0.0827 -0.10312,-0.16891 -0.15625,-0.25 -0.72058,-0.18902 -1.52571,0.0359 0.15625,0.25 z m 1.34375,-9.28125 c -0.10926,0.002 -0.25181,0.0495 -0.15625,0.125 l 0.125,0 c 0.22132,-0.0858 0.14056,-0.12682 0.0312,-0.125 z m -0.34375,0.34375 c -0.14885,0.0202 -0.1519,0.1631 0.15625,0.0937 0.007,0.066 0.1702,-0.0245 0.1875,0.0312 0.48589,-0.054 0.0831,-0.1527 -0.15625,-0.0937 -0.0717,-0.0408 -0.13788,-0.038 -0.1875,-0.0312 z m 0.0625,0.15625 c -0.012,-0.0131 -0.0364,0.004 -0.125,0.0625 -0.53787,0.41757 0.48274,0.0767 0.59375,0.34375 0.375,0.26203 -0.0911,0.19656 -0.28125,0.3125 -0.0495,0.0102 -0.0367,0.0257 -0.0625,0.0312 0.11906,0.007 0.28635,0.0602 0.3125,0.1875 l 0.0625,0.0312 c 0.31303,0.0938 -0.14015,-0.27069 0.25,-0.0937 -0.0154,-0.25514 0.0288,-0.26175 0.28125,-0.21875 -0.016,-0.36645 -0.58414,-0.66376 -0.96875,-0.5625 -0.23333,0.21055 -0.0265,-0.0545 -0.0625,-0.0937 z m -0.46875,0.0312 c -0.0468,0.0133 -0.0929,0.0396 -0.125,0.0937 0.0235,10e-4 0.0376,0.0331 0.0625,0 0.33051,-0.0263 0.20282,-0.13358 0.0625,-0.0937 z m -1.5625,0.0312 c -0.17974,0.004 -0.43759,0.0773 -0.4375,0.25 0.11636,0.04 0.22509,-0.1096 0.34375,-0.125 0.35814,-0.0741 0.27354,-0.12883 0.0937,-0.125 z m 1.21875,0 c -0.12212,0.0231 -0.25374,0.0844 -0.125,0.125 l 0.0312,0.0312 0.0937,-0.0312 c 0.22922,-0.13332 0.12212,-0.14807 0,-0.125 z m -0.90625,0.0625 c -0.28655,0.0128 -0.61607,0.21385 -0.1875,0.25 -0.20655,0.0632 -0.46416,0.0131 -0.0625,0.125 0.24304,-0.0302 1.03903,-0.0694 0.625,-0.21875 0.16188,-0.2552 -0.0305,-0.0918 -0.15625,-0.0937 -0.0543,-0.0446 -0.12323,-0.0668 -0.21875,-0.0625 z m 0.71875,0.25 c -0.0294,0.007 -0.0677,0.0411 -0.0937,0.0937 0.23501,0.0305 0.18187,-0.11393 0.0937,-0.0937 z m 2.96875,0 c -0.1229,0.0647 -0.30864,0.56687 0,0.625 0.19641,0.13297 0.0343,-0.35877 0.0625,-0.5 -0.008,-0.10783 -0.0215,-0.14656 -0.0625,-0.125 z m -4.65625,0.3125 c 0.0326,-0.004 0.0441,-0.007 0.0312,0.0312 -0.33578,0.11083 -0.12904,-0.0181 -0.0312,-0.0312 z m 2.3125,0.0625 c -0.1313,-0.0266 -0.39703,0.19962 0,0.125 l 0.0625,0 c 0.0111,-0.0813 -0.0187,-0.11612 -0.0625,-0.125 z m -4.0625,0.78125 c 0.006,0.0143 0.0299,0.014 0.0312,0.0312 0.008,0.0435 -0.0235,0.085 -0.0312,0.125 -0.003,-0.0643 -0.009,-0.12364 0,-0.15625 z M 261,228.81255 c -0.009,0.006 -0.007,0.021 0,0.0625 0.0968,0.0138 0.0264,-0.0815 0,-0.0625 z m 5.5625,0.28125 c -0.0981,0.006 -0.34815,0.29505 -0.21875,0.28125 0.13337,0.0266 0.64304,-0.01 0.25,-0.15625 0.021,-0.0859 9.5e-4,-0.12697 -0.0312,-0.125 z m -5.53125,0.21875 c -0.0218,-10e-4 -0.0245,0.0399 0.0312,0.125 0.30923,0.16511 0.034,-0.12127 -0.0312,-0.125 z m 4.875,0.1875 c -0.0184,-7.1e-4 -0.051,0.0101 -0.0937,0.0312 0.0994,0.0455 0.14896,-0.0291 0.0937,-0.0312 z m 0.125,0.0312 c -0.13693,0.0377 -0.38348,0.14021 -0.4375,0.25 0.10313,-1.8e-4 0.18325,-0.1022 0.28125,-0.125 0.32049,-0.15288 0.29318,-0.16268 0.15625,-0.125 z m -6.375,1 c -0.0116,-0.007 -0.0552,0.0257 -0.0937,0.0937 0.0414,0.1895 0.12849,-0.0728 0.0937,-0.0937 z m 1.5,0.53125 c 0.052,0.004 0.0833,0.0625 0.125,0.0937 -0.0524,-0.0363 -0.0856,-0.0794 -0.125,-0.0937 z m 2.4375,0.8125 c -0.0385,0.01 -0.0523,0.0335 -0.0625,0.0625 0.0946,-0.044 0.49211,0.15054 0.6875,0.21875 0.48854,0.0204 -0.35512,-0.34821 -0.625,-0.28125 z m 0.90625,0.28125 c -0.0182,-0.002 0.003,0.0237 0.0312,0.0937 -0.19576,0.095 -0.24616,0.0339 0.0312,0.0625 0.0616,0.0235 0.0953,0.025 0.0937,0 0.38314,0.0396 0.0666,-0.24469 -0.0312,-0.0625 -0.0308,-0.0484 -0.0997,-0.0915 -0.125,-0.0937 z m 0.53125,0.0938 c -0.0231,2.4e-4 -0.0377,0.0285 -0.0625,0.0625 0.0442,0.0146 0.0742,0.003 0.0937,0 -0.009,-0.0182 -0.005,-0.0628 -0.0312,-0.0625 z m -1.96875,0.0625 c 0.065,-0.0272 0.0304,0.0826 0,0.1875 -0.0131,-0.0878 -0.1107,-0.0462 -0.1875,0.0312 0.0164,-0.0269 0.0254,-0.0519 0.0312,-0.0937 0.0937,-0.0718 0.12538,-0.11212 0.15625,-0.125 z m 0.9375,0 c -0.008,0.003 -0.012,0.0121 0,0.0312 0.23882,0.0542 0.0924,-0.0358 0.0312,-0.0312 -0.0102,5e-4 -0.023,-0.003 -0.0312,0 z m 1.46875,0.75 c -0.0101,0.006 -0.0453,-0.003 -0.0625,0.0312 0.0396,0.0611 0.061,0.007 0.0625,-0.0312 z m -2.1875,0.0312 c -0.0104,0.0169 0.0106,0.052 0.15625,0.15625 0.36178,0.0251 -0.12511,-0.20702 -0.15625,-0.15625 z m 0.34375,0.1563 c -0.0422,0.0167 -0.0392,0.0395 0.0312,0.0937 0.0799,0.0985 0.14452,-0.0616 0.21875,-0.0937 -0.0966,-0.016 -0.19592,-0.0213 -0.25,0 z m 0.28125,0 c 0.0269,0.001 0.0379,0.0223 0.0625,0.0937 0.12084,-0.0286 0.0505,-0.0711 -0.0625,-0.0937 z m 0.59375,0.0625 c 0.0151,0.0164 0.0447,0.016 0.0625,0.0312 -0.0224,-0.004 -0.0368,0.002 -0.0625,0 -0.006,-0.01 0.005,-0.0214 0,-0.0312 z m 0.71875,0.0937 c 0.0918,-0.004 0.19416,0.006 0.3125,0.0312 -0.93272,0.60426 -0.955,-0.004 -0.3125,-0.0312 z m 0.875,0.1875 c 0.0209,0.0339 0.037,0.0652 0,0.125 -0.01,-0.0407 -0.0132,-0.0852 0,-0.125 z m -0.28125,0.0937 c 0.008,0.0407 0.0223,0.0692 0.0625,0.125 0.002,0.0174 0.0188,0.0345 0.0312,0.0312 0.0374,-0.01 0.0901,-0.078 0.0937,-0.0312 0.0326,-0.03 0.0758,-0.0367 0.0937,-0.0625 0.0122,0.0307 0.0395,0.0525 0.0625,0.0625 -0.0786,0.0243 -0.16205,0.0214 -0.25,0.0312 -0.55894,0.20149 0.0265,0.0442 -0.0937,-0.15625 z"
1830 style="fill:url(#linearGradient4894);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
1831 inkscape:connector-curvature="0" /><path
1832 inkscape:export-ydpi="90"
1833 inkscape:export-xdpi="90"
1834 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/skins/moono/icons/print.png"
1835 sodipodi:nodetypes="ssccssssssscsssscssssscccccssssssssssssss"
1836 inkscape:connector-curvature="0"
1837 id="path4664"
1838 d="m 229.5,2.2500615 c -0.831,0 -1.5,0.669 -1.5,1.5 l 0,0.49999 10,0 0,-0.49999 c 0,-0.831 -0.669,-1.5 -1.5,-1.5 z m -2.5,3 c -0.554,0 -1,0.44599 -1,1 l 0,5.9999995 c 0,0.554 0.446,1 1,1 l 2,0 0,-4.9999995 c 0,-0.55401 0.446,-1 1,-1 l 6,0 c 0.554,0 1,0.44599 1,1 l 0,4.9999995 2,0 c 0.554,0 1,-0.446 1,-1 l 0,-5.9999995 c 0,-0.55401 -0.446,-1 -1,-1 z m 3,3 0,6.9999995 6,0 0,-6.9999995 z m 1.5,1 3,0 c 0.277,0 0.5,0.223 0.5,0.5 0,0.2769895 -0.223,0.4999995 -0.5,0.4999995 l -3,0 c -0.277,0 -0.5,-0.22301 -0.5,-0.4999995 0,-0.277 0.223,-0.5 0.5,-0.5 z m 0,1.9999995 3,0 c 0.277,0 0.5,0.223 0.5,0.5 0,0.27699 -0.223,0.5 -0.5,0.5 l -3,0 c -0.277,0 -0.5,-0.22301 -0.5,-0.5 0,-0.277 0.223,-0.5 0.5,-0.5 z"
1839 style="fill:url(#linearGradient4898);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)" /><path
1840 inkscape:connector-curvature="0"
1841 id="path4666"
1842 d="m 73,98.250061 c -3.31371,0 -6,2.686289 -6,5.999999 0,3.3137 2.68629,6 6,6 3.31371,0 6,-2.6863 6,-6 0,-3.31371 -2.68629,-5.999999 -6,-5.999999 z m 0,1 c 2.76142,0 5,2.238569 5,4.999999 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76143 2.23858,-4.999999 5,-4.999999 z m 0,1.999999 c -1.65685,0 -3,1.34314 -3,3 0,1.65685 1.34315,3 3,3 1.65685,0 3,-1.34315 3,-3 0,-1.65686 -1.34315,-3 -3,-3 z"
1843 style="fill:url(#linearGradient4900);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)" /><path
1844 sodipodi:nodetypes="ssssssssssssscccccsss"
1845 inkscape:connector-curvature="0"
1846 id="path4670"
1847 d="m 292,100.25006 c -1.662,0 -3,1.33799 -3,3 l 0,2 c 0,1.662 1.338,3 3,3 l 10,0 c 1.662,0 3,-1.338 3,-3 l 0,-2 c 0,-1.66201 -1.338,-3 -3,-3 z m 0,1 10,0 c 1.108,0 2,0.89199 2,2 l 0,2 c 0,1.108 -0.892,2 -2,2 l -2,-3 -3,3 -3,-2 -2,2 c -1.108,0 -2,-0.892 -2,-2 l 0,-2 c 0,-1.10801 0.892,-2 2,-2 z"
1848 style="fill:url(#linearGradient4904);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)" /><path
1849 style="font-size:16.54135895px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4906);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1);font-family:Sans"
1850 d="m 140.5,130.25006 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 2.5,0 0,1 -2.5,0 c -0.277,0 -0.5,0.22299 -0.5,0.5 l 0,2 c 0,0.277 0.223,0.5 0.5,0.5 l 3,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 l -2.5,0 0,-1 2.5,0 c 0.277,0 0.5,-0.223 0.5,-0.5 l 0,-2 c 0,-0.27701 -0.223,-0.5 -0.5,-0.5 l -3,0 z m -8.375,2.9375 c -0.29577,0 -0.58586,0.11711 -0.8125,0.34375 -0.45327,0.45327 -0.45327,1.20297 0,1.65625 l 2.03125,2.03125 -2.03125,2.03125 c -0.45327,0.45327 -0.45327,1.20297 0,1.65625 0.45327,0.45327 1.17173,0.45327 1.625,0 l 2.0625,-2.03125 2.03125,2.03125 c 0.45327,0.45327 1.17173,0.45327 1.625,0 0.45327,-0.45328 0.45327,-1.20298 0,-1.65625 l -2.03125,-2.03125 2.03125,-2.03125 c 0.45327,-0.45328 0.45327,-1.20298 0,-1.65625 -0.45327,-0.45328 -1.17173,-0.45328 -1.625,0 L 135,135.56256 l -2.0625,-2.03125 c -0.22664,-0.22664 -0.51673,-0.34375 -0.8125,-0.34375 z"
1851 id="path4672"
1852 inkscape:connector-curvature="0" /><path
1853 id="path4674"
1854 d="m 172.5,138.25006 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.24281,0.60287 0.5,0.5 l 2.5,0 0,1 -2.5,0 c -0.277,0 -0.5,0.22299 -0.5,0.5 l 0,2 c 0,0.277 0.223,0.5 0.5,0.5 l 3,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 l -2.5,0 0,-1 2.5,0 c 0.277,0 0.5,-0.223 0.5,-0.5 l 0,-2 c 0,-0.27701 -0.223,-0.5 -0.5,-0.5 z m -8.375,-6.0625 c -0.29577,0 -0.58586,0.11711 -0.8125,0.34375 -0.45327,0.45327 -0.45327,1.20297 0,1.65625 l 2.03125,2.03125 -2.03125,2.03125 c -0.45327,0.45327 -0.45327,1.20297 0,1.65625 0.45327,0.45327 1.17173,0.45327 1.625,0 l 2.0625,-2.03125 2.03125,2.03125 c 0.45327,0.45327 1.17173,0.45327 1.625,0 0.45327,-0.45328 0.45327,-1.20298 0,-1.65625 l -2.03125,-2.03125 2.03125,-2.03125 c 0.45327,-0.45328 0.45327,-1.20298 0,-1.65625 -0.45327,-0.45328 -1.17173,-0.45328 -1.625,0 L 167,134.56256 l -2.0625,-2.03125 c -0.22664,-0.22664 -0.51673,-0.34375 -0.8125,-0.34375 z"
1855 style="font-size:16.54135895px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4908);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1);font-family:Sans"
1856 inkscape:connector-curvature="0"
1857 sodipodi:nodetypes="sssccsssssssccsssssssscssccssscsssccs" /><path
1858 inkscape:connector-curvature="0"
1859 id="path4676"
1860 d="m 7.5000001,65.250051 c -3.03757,0 -5.5,2.46243 -5.5,5.5 0,3.03756 2.46243,5.5 5.5,5.5 0.938705,0 1.7919409,-0.27092 2.5624999,-0.6875 l 3.75,3.75 c 0.587606,0.58761 1.537394,0.58761 2.125,0 0.587606,-0.58761 0.587606,-1.53739 0,-2.125 l -3.71875,-3.71875 C 12.691902,72.662431 13,71.754301 13,70.750051 c 0,-3.03757 -2.46243,-5.5 -5.4999999,-5.5 z m 0,2 c 1.9329999,0 3.4999999,1.567 3.4999999,3.5 0,1.06272 -0.47105,2.01435 -1.21875,2.65625 -0.006,0.005 -0.02525,-0.005 -0.03125,0 -0.60985,0.51643 -1.3882799,0.84375 -2.2499999,0.84375 -1.933,0 -3.5,-1.56701 -3.5,-3.5 0,-1.933 1.567,-3.5 3.5,-3.5 z"
1861 style="fill:url(#linearGradient4910);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)" /><path
1862 inkscape:connector-curvature="0"
1863 id="path4678"
1864 d="m 297.00004,35.250051 7,5 -6.99998,4.99999 -2e-5,-3.33332 c -3.41666,0 -5.61556,1.22 -7,3.33333 0,-4.98332 3.60112,-6.66666 7,-6.66666 -2e-5,-0.85078 -1e-5,-2.61389 0,-3.33334 z"
1865 style="fill:url(#linearGradient4912);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
1866 sodipodi:nodetypes="ccccccc" /><path
1867 inkscape:connector-curvature="0"
1868 id="path4680"
1869 d="m 69,163.25006 c -1.10457,0 -2,0.89543 -2,2 0,1.10456 0.89543,2 2,2 1.10457,0 2,-0.89544 2,-2 0,-1.10457 -0.89543,-2 -2,-2 z m 4.5,0 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 l -6,0 z m 0,2 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 l -6,0 z m -4.5,5 c -1.10457,0 -2,0.89543 -2,2 0,1.10456 0.89543,2 2,2 1.10457,0 2,-0.89544 2,-2 0,-1.10457 -0.89543,-2 -2,-2 z m 4.5,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -6,0 z m 0,2 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -6,0 z"
1870 style="fill:url(#linearGradient4914);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)" /><path
1871 sodipodi:nodetypes="sssssssssssssssssssssssssssssssssssccccsssscccsssssssssssssssssssssssssssssssssssss"
1872 inkscape:connector-curvature="0"
1873 id="path4682"
1874 d="m 136.53125,162.25006 c -0.25721,0 -0.46875,0.22299 -0.46875,0.5 l 0,12 c 0,0.277 0.21154,0.5 0.46875,0.5 0.25721,0 0.46875,-0.223 0.46875,-0.5 l 0,-12 c 0,-0.27701 -0.21154,-0.5 -0.46875,-0.5 z m -4.03125,2 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 4,0 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z m 0,2 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 3,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z m -8.5,2.46875 0,0.0625 2,1.46875 0,-1 2.5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 l -2.5,0 0,-1 z m 8.5,-0.46875 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z m 0,2 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 3,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z m -6,2 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 4,0 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z"
1875 style="fill:url(#linearGradient4916);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)" /><path
1876 style="fill:url(#linearGradient4918);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)"
1877 d="m 233.46875,162.25006 c 0.25721,0 0.46875,0.22299 0.46875,0.5 l 0,12 c 0,0.277 -0.21154,0.5 -0.46875,0.5 -0.25721,0 -0.46875,-0.223 -0.46875,-0.5 l 0,-12 c 0,-0.27701 0.21154,-0.5 0.46875,-0.5 z m 4.03125,2 c 0.27614,0 0.5,0.22385 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27615 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22385 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27615 0.22386,-0.5 0.5,-0.5 z m -4,0 c 0.277,0 0.5,0.20565 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.223,0.46875 -0.5,0.46875 l -5,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 0.223,-0.46875 0.5,-0.46875 z m 0,2 c 0.277,0 0.5,0.20565 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.223,0.46875 -0.5,0.46875 l -3,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 0.223,-0.46875 0.5,-0.46875 z m 8.49436,2.53125 0,-0.0625 -1.99549,-1.46875 0,1 -2.49436,0 c -0.27637,0 -0.49887,0.18037 -0.49887,0.46875 l 0,0.0625 c 0,0.2631 0.2225,0.46875 0.49887,0.46875 l 2.49436,0 0,1 z M 231.5,168.25006 c 0.277,0 0.5,0.20565 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.223,0.46875 -0.5,0.46875 l -5,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 0.223,-0.46875 0.5,-0.46875 z m 0,2 c 0.277,0 0.5,0.20565 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.223,0.46875 -0.5,0.46875 l -3,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 0.223,-0.46875 0.5,-0.46875 z m 6,2 c 0.27614,0 0.5,0.22385 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27615 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22385 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27615 0.22386,-0.5 0.5,-0.5 z m -4,0 c 0.277,0 0.5,0.20565 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.223,0.46875 -0.5,0.46875 l -5,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 0.223,-0.46875 0.5,-0.46875 z"
1878 id="path4684"
1879 inkscape:connector-curvature="0"
1880 sodipodi:nodetypes="sssssssssssssssssssssssssssssssssssccccsssscccsssssssssssssssssssssssssssssssssssss" /><path
1881 sodipodi:nodetypes="sscccccccccccscccc"
1882 inkscape:connector-curvature="0"
1883 id="path4686"
1884 d="m 459,163.25006 c -1.65685,0 -3,1.34314 -3,3 0,1.65685 1.34315,3 3,3 l 0,4 1,0 0,-9 1,0 0,1 0,8 1,0 0,-8 1,0 0,-2 z m -8,3 0,6 3,-3 z"
1885 style="fill:url(#linearGradient4920);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)" /><path
1886 sodipodi:nodetypes="sscccccccccccscccc"
1887 inkscape:connector-curvature="0"
1888 id="path4688"
1889 d="m 486,163.25006 c -1.65685,0 -3,1.34314 -3,3 0,1.65685 1.34315,3 3,3 l 0,4 1,0 0,-9 1,0 0,1 0,8 1,0 0,-8 1,0 0,-2 z m 9.00442,3 0,6 -3.00884,-3 z"
1890 style="fill:url(#linearGradient4922);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)"
1891 transform="matrix(0.99963181,0,0,1,0.17783468,0)" /><path
1892 sodipodi:nodetypes="ccccccccccccc"
1893 inkscape:connector-curvature="0"
1894 id="path4691"
1895 d="m 42.56445,200.91673 -1.02277,1.06211 2.08489,2.08489 -2.08489,2.12422 1.02277,1.06211 2.12422,-2.12422 2.12423,2.12422 1.02277,-1.06211 -2.08489,-2.12423 2.08489,-2.08488 -1.02277,-1.06211 -2.12423,2.12422 z"
1896 style="fill:url(#linearGradient4924);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)" /><path
1897 style="fill:url(#linearGradient4926);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)"
1898 d="m 136.53125,162.25006 c -0.25721,0 -0.46875,0.22299 -0.46875,0.5 l 0,12 c 0,0.277 0.21154,0.5 0.46875,0.5 0.25721,0 0.46875,-0.223 0.46875,-0.5 l 0,-12 c 0,-0.27701 -0.21154,-0.5 -0.46875,-0.5 z m -4.03125,2 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 4,0 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z m 0,2 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 3,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z m -8.5,2.46875 0,0.0625 2,1.46875 0,-1 2.5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 l -2.5,0 0,-1 z m 8.5,-0.46875 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z m 0,2 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 3,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z m -6,2 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 4,0 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z"
1899 id="path4693"
1900 inkscape:connector-curvature="0"
1901 sodipodi:nodetypes="sssssssssssssssssssssssssssssssssssccccsssscccsssssssssssssssssssssssssssssssssssss" /><path
1902 sodipodi:nodetypes="sssssssssssssssssssssssssssssssssssccccsssscccsssssssssssssssssssssssssssssssssssss"
1903 inkscape:connector-curvature="0"
1904 id="path4695"
1905 d="m 168.64267,162.25006 c -0.25721,0 -0.46875,0.223 -0.46875,0.5 l 0,12 c 0,0.27699 0.21154,0.5 0.46875,0.5 0.25721,0 0.46875,-0.22301 0.46875,-0.5 l 0,-12 c 0,-0.277 -0.21154,-0.5 -0.46875,-0.5 z m -4.03125,2 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 4,0 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z m 0,2 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 3,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z m -3.38858,2.46875 0,0.0625 -2.08914,1.46875 0,-1 -2.61141,0 c -0.28935,0 -0.52229,-0.0347 -0.52229,-0.46875 l 0,-0.0625 c 0,-0.2631 0.23294,-0.46875 0.52229,-0.46875 l 2.61141,0 0,-1 z m 3.38858,-0.46875 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z m 0,2 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 3,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z m -6,2 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 4,0 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z"
1906 style="fill:url(#linearGradient4928);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)" /><path
1907 sodipodi:nodetypes="sssssssssssssssssssssssssssssssssssccccsssscccsssssssssssssssssssssssssssssssssssss"
1908 inkscape:connector-curvature="0"
1909 id="path4698"
1910 d="m 201.46875,162.25006 c 0.25722,0 0.46875,0.223 0.46875,0.5 l 0,12 c 0,0.277 -0.21153,0.5 -0.46875,0.5 -0.25721,0 -0.46875,-0.223 -0.46875,-0.5 l 0,-12 c 0,-0.277 0.21154,-0.5 0.46875,-0.5 z m 4.03125,2 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -4,0 c 0.277,0 0.5,0.20566 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.223,0.46875 -0.5,0.46875 l -5,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 c 0,-0.26309 0.223,-0.46875 0.5,-0.46875 z m 0,2 c 0.277,0 0.5,0.20566 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.223,0.46875 -0.5,0.46875 l -3,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 c 0,-0.26309 0.223,-0.46875 0.5,-0.46875 z m 3.5,2.53125 0,-0.0625 2,-1.46875 0,1 2.5,0 c 0.277,0 0.5,0.20566 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.22343,0.48425 -0.5,0.46875 l -2.5,0 0,1 z m -3.5,-0.53125 c 0.277,0 0.5,0.20566 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.223,0.46875 -0.5,0.46875 l -5,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 c 0,-0.26309 0.223,-0.46875 0.5,-0.46875 z m 0,2 c 0.277,0 0.5,0.20566 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.223,0.46875 -0.5,0.46875 l -3,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 c 0,-0.26309 0.223,-0.46875 0.5,-0.46875 z m 6,2 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -4,0 c 0.277,0 0.5,0.20566 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.223,0.46875 -0.5,0.46875 l -5,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 c 0,-0.26309 0.223,-0.46875 0.5,-0.46875 z"
1911 style="fill:url(#linearGradient4930);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)" /><path
1912 inkscape:connector-curvature="0"
1913 id="path4700"
1914 d="m 2.0000001,226.25006 0,12 13.9999999,0 0,-12 -13.9999999,0 z m 1,1 11.9999999,0 0,7.59375 -2.90625,-3.59375 -3.09375,4 -2.9999999,-2 -3,4 0,-10 z m 2.5,1 c -0.82843,0 -1.5,0.67157 -1.5,1.5 0,0.82842 0.67157,1.5 1.5,1.5 0.82842,0 1.5,-0.67158 1.5,-1.5 0,-0.82843 -0.67158,-1.5 -1.5,-1.5 z"
1915 style="fill:url(#linearGradient4932);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)" /><path
1916 sodipodi:nodetypes="ccccccccccccccccccccccccccccc"
1917 inkscape:connector-curvature="0"
1918 id="path4702"
1919 d="m 199,227.25006 0,3 10,0 0,-3 z m -5,2 0,7 4,-3.4375 z m 5,3 0,1 3,0 0,-1 z m 4,0 0,1 3,0 0,-1 z m 4,0 0,1 2,0 0,-1 z m -8,3 0,3 10,0 0,-3 z"
1920 style="fill:url(#linearGradient4934);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)" /><path
1921 sodipodi:nodetypes="sscccssssscccssss"
1922 inkscape:connector-curvature="0"
1923 id="path4704"
1924 d="m 323.5,100.25006 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.24236 0.59935,0.45353 0.5625,0.5 l 0.4375,0 0,5 -0.5,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.37612,-0.74776 -0.5,-0.5 l -0.5,0 0,-5 0.5,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z"
1925 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient4936);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" /><path
1926 sodipodi:nodetypes="ssssssccssssssccsssssscccssssscccssssccccccccccc"
1927 inkscape:connector-curvature="0"
1928 id="path4706"
1929 d="m 131,98.250061 c -1.0907,0 -2,0.9093 -2,1.999999 l 0,9 c 0,1.09069 0.9093,2 2,2 l 12,0 c 1.0907,0 2,-0.90931 2,-2 l 0,-0.375 c 0.0328,-0.0893 0.0213,-0.17215 0,-0.25 l 0,-8.375 c 0,-1.090699 -0.9093,-1.999999 -2,-1.999999 z m 0,1 12,0 c 0.554,0 1,0.446 1,0.999999 l 0,4.11795 -5.88205,5.88195 -7.11795,1e-4 c -0.554,10e-6 -1,-0.446 -1,-1 l 0,-9 c 0,-0.553999 0.446,-0.999999 1,-0.999999 z m 0.5,0.999999 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.24237 0.0444,0.53446 0.5625,0.5 l 0.4375,0 0,5 -0.5,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.12178,-0.5281 -0.5,-0.5 l -0.5,0 0,-5 0.5,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 12.5,5.40625 0,0.84375 -3.71875,3.6875 -0.0312,0.0625 -0.84375,0 z m 0,2.21875 0,0.625 -1.71875,1.75 -0.625,0 z"
1930 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient4938);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" /><path
1931 sodipodi:nodetypes="sssssssssssssssssscccc"
1932 inkscape:connector-curvature="0"
1933 id="path4708"
1934 d="m 195,99.250061 c -1.0907,0 -2,0.909299 -2,1.999999 l 0,7 c 0,1.0907 0.9093,2 2,2 l 12,0 c 1.0907,0 2,-0.9093 2,-2 l 0,-7 c 0,-1.0907 -0.9093,-1.999999 -2,-1.999999 z m 0,0.999999 12,0 c 0.554,0 1,0.446 1,1 l 0,7 c 0,0.554 -0.446,1 -1,1 l -12,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-7 c 0,-0.554 0.446,-1 1,-1 z m 6,3 3,4 3,-4 z"
1935 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient4940);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" /><path
1936 inkscape:connector-curvature="0"
1937 id="path4710"
1938 d="m 105.5,354.25005 c -1.37614,0 -2.55454,0.83475 -3.125,2 l 1.125,0 c 0.45491,-0.61149 1.17592,-1 2,-1 1.385,0 2.5,1.115 2.5,2.5 l 0,1.5 -3,0 -2,0 -1,0 -1,0 c -0.554,0 -1,0.44598 -1,1 l 0,6 c 0,0.554 0.446,1 1,1 l 9,0 c 0.554,0 1,-0.446 1,-1 l 0,-6 c 0,-0.55402 -0.446,-1 -1,-1 l -1,0 0,-1.5 c 0,-1.9217 -1.5783,-3.5 -3.5,-3.5 z m 0,8 c 0.82843,0 1.5,0.67157 1.5,1.5 0,0.82841 -0.67157,1.5 -1.5,1.5 -0.82843,0 -1.5,-0.67159 -1.5,-1.5 0,-0.82843 0.67157,-1.5 1.5,-1.5 z"
1939 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3350);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" /><path
1940 inkscape:connector-curvature="0"
1941 id="path4712"
1942 d="m 4.5000001,163.25006 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 0.5,0 0,3.5 c 0,0.27699 0.223,0.5 0.5,0.5 0.277,0 0.5,-0.22301 0.5,-0.5 l 0,-4 c 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -1,0 z m 4,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 5.9999999,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -5.9999999,0 z m 0,2 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 5.9999999,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -5.9999999,0 z m -5,5 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 1.5,0 0,1 -1.5,0 c -0.277,0 -0.5,0.223 -0.5,0.5 l 0,2 c 0,0.27699 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -1.5,0 0,-1 1.5,0 c 0.0693,0 0.12764,-0.006 0.1875,-0.0312 0.12718,-0.041 0.2307,-0.14213 0.28125,-0.28125 0.0252,-0.0599 0.0312,-0.11825 0.0312,-0.1875 l 0,-2 c 0,-0.0693 -0.006,-0.12765 -0.0312,-0.1875 -0.0505,-0.13913 -0.15407,-0.24028 -0.28125,-0.28125 -0.0404,-0.0171 -0.0799,-0.0253 -0.125,-0.0312 l -0.0625,0 -2,0 z m 5,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 5.9999999,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -5.9999999,0 z m 0,2 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 5.9999999,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -5.9999999,0 z"
1943 style="fill:url(#linearGradient3293);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)" /><path
1944 sodipodi:nodetypes="cccccccccccccccccccscccscscccscccccccc"
1945 d="m 14.295877,138.53521 c -9e-6,0.70891 -0.137341,1.30388 -0.411995,1.78492 -0.274673,0.46838 -0.650527,0.84815 -1.127571,1.1393 -0.462605,0.2785 -1.019157,0.48105 -1.669674,0.60763 -0.636069,0.11394 -1.322728,0.1709 -2.059977,0.1709 l -3.72966,0.0121 0,-12.04805 3.4694455,-0.003 c 1.0119225,1e-5 1.8359135,0.095 2.4719815,0.28482 0.636059,0.17724 1.134796,0.41776 1.496201,0.72156 0.361395,0.29117 0.607142,0.6203 0.737259,0.9874 0.130097,0.36712 0.195146,0.73423 0.195156,1.10133 -10e-6,0.557 -0.159025,1.0507 -0.477054,1.4811 -0.303581,0.43041 -0.715576,0.7722 -1.235986,1.02538 0.910722,0.29116 1.525098,0.68359 1.843147,1.17728 0.332478,0.49371 0.498718,1.01272 0.498727,1.55705 m -6.3317392,-1.59503 0,3.19006 c 0.1879221,0.0253 0.3903124,0.0443 0.6071515,0.057 0.2312976,0.0127 0.4553617,0.019 0.6722097,0.019 0.303571,1e-5 0.599918,-0.019 0.88904,-0.057 0.289122,-0.0506 0.542103,-0.13292 0.758942,-0.24685 0.231297,-0.12659 0.419219,-0.29748 0.563785,-0.51269 0.144556,-0.22786 0.216839,-0.51268 0.216839,-0.85448 0,-0.56965 -0.209614,-0.97473 -0.628834,-1.21526 -0.404771,-0.25317 -0.954098,-0.37976 -1.647981,-0.37977 l -1.4311522,0 m 1.0408392,-1.93682 c 0.679425,1e-5 1.192611,-0.12658 1.539567,-0.37977 0.346937,-0.26583 0.52041,-0.62661 0.52041,-1.08234 0,-0.27849 -0.05059,-0.50002 -0.15179,-0.66459 -0.101191,-0.17722 -0.238522,-0.31014 -0.411996,-0.39876 -0.173473,-0.10126 -0.375863,-0.16456 -0.607151,-0.18989 -0.231298,-0.038 -0.46982,-0.057 -0.715576,-0.057 -0.2023808,1e-5 -0.4119955,0.006 -0.6288347,0.019 -0.2168391,0.0127 -0.4119953,0.0317 -0.5854685,0.057 l 0,2.69636 1.0408392,0"
1946 style="font-size:22.63113022px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4944);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1);font-family:Ubuntu Mono;-inkscape-font-specification:Ubuntu Mono Bold"
1947 id="path4714"
1948 inkscape:connector-curvature="0"
1949 transform="matrix(1,0,0,0.99576386,0,0.60259052)" /><g
1950 id="g4716"
1951 style="font-size:14.87401295px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4948);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1);font-family:Sans"
1952 transform="matrix(0.90955065,0,-0.23456935,0.90955065,-244.41664,85.857921)"><path
1953 sodipodi:nodetypes="ccccccccccccc"
1954 inkscape:connector-curvature="0"
1955 id="path4718"
1956 style="font-size:21.24859047px;font-variant:normal;font-weight:bold;font-stretch:normal;fill:url(#linearGradient4946);font-family:Ubuntu Mono;-inkscape-font-specification:Ubuntu Mono Bold"
1957 d="m 325.2364,61.999996 0,-2.167356 1.76912,0 -0.1287,-8.818165 -1.76912,0 0,-2.167356 6.15181,0 0,2.167356 -1.74787,0 0.1287,8.818165 1.74787,0 0,2.167356 -6.15181,0" /></g><g
1958 id="g4720"
1959 style="font-size:15.82676315px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4952);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1);font-family:Sans"
1960 transform="matrix(1.0640547,0,0,0.9425284,-84.03155,80.070151)"><path
1961 sodipodi:nodetypes="ccccccccc"
1962 inkscape:connector-curvature="0"
1963 id="path4722"
1964 style="font-size:22.60966301px;font-style:italic;font-variant:normal;font-stretch:normal;fill:url(#linearGradient4950);font-family:'8bitoperator JVE';-inkscape-font-specification:'8bitoperator JVE Italic'"
1965 d="m 263.15116,63.849438 2.25213,-9.18288 -2.8262,0 0.28703,-1.413104 8.47863,0 -0.28704,1.413104 -2.82621,0 -2.25213,9.18288 -2.82621,0" /></g><path
1966 inkscape:connector-curvature="0"
1967 id="path4726"
1968 d="m 265.00004,35.250051 7,5 -6.99998,4.99999 -2e-5,-3.33332 c -3.41666,0 -5.61556,1.22 -7,3.33333 0,-4.98332 3.60112,-6.66666 7,-6.66666 -2e-5,-0.85078 -1e-5,-2.61389 0,-3.33334 z"
1969 style="fill:url(#linearGradient4954);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
1970 sodipodi:nodetypes="ccccccc" /><path
1971 sodipodi:nodetypes="ccccccc"
1972 style="fill:url(#linearGradient4956);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
1973 d="m 329,35.250061 -7,5 6.99998,4.99998 2e-5,-3.33332 c 3.41666,0 5.61556,1.22 7,3.33334 0,-4.98333 -3.60112,-6.66667 -7,-6.66667 2e-5,-0.85078 10e-6,-2.61388 0,-3.33333 z"
1974 id="path4728"
1975 inkscape:connector-curvature="0" /><path
1976 sodipodi:nodetypes="sssssssssssssssssscccc"
1977 inkscape:connector-curvature="0"
1978 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient4958);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1979 d="m 239,99.250061 c 1.0907,0 2,0.909299 2,1.999999 l 0,7 c 0,1.0907 -0.9093,2 -2,2 l -12,0 c -1.0907,0 -2,-0.9093 -2,-2 l 0,-7 c 0,-1.0907 0.9093,-1.999999 2,-1.999999 z m 0,0.999999 -12,0 c -0.554,0 -1,0.446 -1,1 l 0,7 c 0,0.554 0.446,1 1,1 l 12,0 c 0.554,0 1,-0.446 1,-1 l 0,-7 c 0,-0.554 -0.446,-1 -1,-1 z m -6,3 -3,4 -3,-4 z"
1980 id="path4730" /><path
1981 inkscape:connector-curvature="0"
1982 id="path4732"
1983 d="m 112,193.25006 0,14 -1,0 0,-14 z m -4.74999,-0.41664 c 0.86983,0.009 1.76033,0.34033 2.74999,1.375 l 0,8.04164 c -3.96132,-4.05865 -6.94268,2.81598 -11,-1 l 0,-8.04165 c 3.03099,2.934 5.64051,-0.40352 8.25001,-0.37496 z"
1984 style="fill:url(#linearGradient4960);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
1985 sodipodi:nodetypes="cccccccccccc" /><path
1986 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient4962);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1987 d="m 79.5,289.25006 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -3.5,0 c 1.0907,0 2,0.9093 2,2 l 0,10 c 0,1.0907 -0.9093,2 -2,2 -1.0907,0 -2,-0.9093 -2,-2 l 0,-10 c 0,-1.0907 0.9093,-2 2,-2 z m 0,1 c -0.554,0 -1,0.446 -1,1 l 0,10 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-10 c 0,-0.554 -0.446,-1 -1,-1 z m 11.5,1 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -8,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 8,2 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -8,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 8,2 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -8,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 8,2 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 6.5,2 c 1.0907,0 2,0.9093 2,2 0,1.0907 -0.9093,2 -2,2 l -5,0 c -1.0907,0 -2,-0.9093 -2,-2 0,-1.0907 0.9093,-2 2,-2 l 5,0 z m 0,1 -5,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 5,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 z"
1988 id="path4734"
1989 inkscape:connector-curvature="0" /><path
1990 sodipodi:nodetypes="ssccsssssccsssscccccccccc"
1991 inkscape:connector-curvature="0"
1992 id="path4736"
1993 d="m 68,1.2500615 c -1.108,0 -2,0.892 -2,2 l 0,8.9374995 3,3.0625 9,0 c 1.108,0 2,-0.892 2,-2 l 0,-9.9999995 c 0,-1.108 -0.892,-2 -2,-2 z m 0,1 10,0 0,4 c 0,1.108 0.108,1 -1,1 l -8,0 c -1.108,0 -1,0.108 -1,-1 z m 1,7.9999995 8,0 0,4 -4,0 0,-3 -2,0 0,3 -2,0 z"
1994 style="fill:url(#linearGradient4964);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)" /><path
1995 sodipodi:nodetypes="ssscsssssssssssssssssssscssccsssssssccsccssccccccssssssssssssss"
1996 style="fill:url(#linearGradient3291);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)"
1997 d="m 45.5,163.25006 c 0,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.777,0.5 0.5,0.5 l 0.5,0 0,3.5 c 0,0.27699 0.223,0.5 0.5,0.5 0.277,0 0.5,-0.22301 0.5,-0.5 l 0,-4 c 0,-0.277 -0.5,-0.5 -0.5,-0.5 z m -10,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 0,2 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 9,5 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 1.5,0 0,1 -1.5,0 c -0.277,0 -0.5,0.223 -0.5,0.5 l 0,2 c 0,0.27699 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -1.5,0 0,-1 1.5,0 c 0.0693,0 0.12764,-0.006 0.1875,-0.0312 0.12718,-0.041 0.2307,-0.14213 0.28125,-0.28125 0.0252,-0.0599 0.0312,-0.11825 0.0312,-0.1875 l 0,-2 c 0,-0.0693 -0.006,-0.12765 -0.0312,-0.1875 -0.0505,-0.13913 -0.15407,-0.24028 -0.28125,-0.28125 -0.0404,-0.0171 -0.0799,-0.0253 -0.125,-0.0312 l -0.0625,0 -2,0 z m -9,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 0,2 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z"
1998 id="path4738"
1999 inkscape:connector-curvature="0" /><path
2000 sodipodi:nodetypes="ssssssssssssssssssssssssssssssssssssss"
2001 style="fill:url(#linearGradient4966);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)"
2002 d="m 109,163.25006 c -1.10457,0 -2,0.89543 -2,2 0,1.10456 0.89543,2 2,2 1.10457,0 2,-0.89544 2,-2 0,-1.10457 -0.89543,-2 -2,-2 z m -10.5,0 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 z m 0,2 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 z m 10.5,5 c -1.10457,0 -2,0.89543 -2,2 0,1.10456 0.89543,2 2,2 1.10457,0 2,-0.89544 2,-2 0,-1.10457 -0.89543,-2 -2,-2 z m -10.5,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 0,2 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z"
2003 id="path4740"
2004 inkscape:connector-curvature="0" /><path
2005 style="fill:url(#linearGradient4968);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)"
2006 d="m 235,227.25006 0,3 -10,0 0,-3 z m 5,2 0,7 -4,-3.4375 z m -5,3 0,1 -3,0 0,-1 z m -4,0 0,1 -3,0 0,-1 z m -4,0 0,1 -2,0 0,-1 z m 8,3 0,3 -10,0 0,-3 z"
2007 id="path4742"
2008 inkscape:connector-curvature="0"
2009 sodipodi:nodetypes="ccccccccccccccccccccccccccccc" /><path
2010 inkscape:connector-curvature="0"
2011 id="path4744"
2012 d="m 6.0000001,297.25005 0,1 -1,0 0,1 -1,0 0,0.875 -0.5,-0.5 -1.5,-1.375 0,5 5,0 -1.5,-1.625 -0.375,-0.375 0.875,0 0,-1 1,0 0,-1 1,0 0,-2 -2,0 z"
2013 style="fill:#585858;fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)" /><path
2014 inkscape:connector-curvature="0"
2015 id="path4746"
2016 d="m 41,321.21574 c -3.86517,0 -7,3.1502 -7,7.03432 0,3.88412 3.13483,7.03431 7,7.03431 3.86633,0 7,-3.15019 7,-7.03431 0,-3.88412 -3.13367,-7.03432 -7,-7.03432 z"
2017 style="fill:url(#linearGradient4970);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
2018 sodipodi:nodetypes="sssss" /><path
2019 inkscape:transform-center-y="2.9999632"
2020 inkscape:transform-center-x="-1.4999864"
2021 sodipodi:end="2.0943951"
2022 sodipodi:start="0"
2023 sodipodi:type="arc"
2024 style="fill:#999999;fill-opacity:1;stroke:none"
2025 id="path4748"
2026 sodipodi:cx="39.5"
2027 sodipodi:cy="327.5"
2028 sodipodi:rx="5.5"
2029 sodipodi:ry="5.5"
2030 d="m 45,327.5 a 5.5,5.5 0 0 1 -8.25,4.76314 L 39.5,327.5 z"
2031 transform="matrix(1.0909017,0,0,1.0909017,-2.0906205,-29.020279)" /><path
2032 transform="matrix(-0.54545087,0.94474863,-0.94474863,-0.54545087,371.95048,469.56763)"
2033 d="m 45,327.5 a 5.5,5.5 0 0 1 -8.25,4.76314 L 39.5,327.5 z"
2034 sodipodi:ry="5.5"
2035 sodipodi:rx="5.5"
2036 sodipodi:cy="327.5"
2037 sodipodi:cx="39.5"
2038 id="path4750"
2039 style="fill:#cccccc;fill-opacity:1;stroke:none"
2040 sodipodi:type="arc"
2041 sodipodi:start="0"
2042 sodipodi:end="2.0943951"
2043 inkscape:transform-center-x="3.0004864" /><path
2044 inkscape:transform-center-y="-3.0004886"
2045 inkscape:transform-center-x="-1.4999969"
2046 sodipodi:end="2.0943951"
2047 sodipodi:start="0"
2048 sodipodi:type="arc"
2049 style="fill:#666666;fill-opacity:1;stroke:none"
2050 id="path4752"
2051 sodipodi:cx="39.5"
2052 sodipodi:cy="327.5"
2053 sodipodi:rx="5.5"
2054 sodipodi:ry="5.5"
2055 d="m 45,327.5 a 5.5,5.5 0 0 1 -8.25,4.76314 L 39.5,327.5 z"
2056 transform="matrix(-0.54545087,-0.94474863,0.94474863,-0.54545087,-246.85986,544.20276)" /><rect
2057 ry="0"
2058 rx="0"
2059 y="231.25003"
2060 x="98"
2061 height="2"
2062 width="14"
2063 id="rect4754"
2064 style="fill:url(#linearGradient4972);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)" /><rect
2065 style="fill:#999999;fill-opacity:1;stroke:none"
2066 id="rect4756"
2067 width="12"
2068 height="0.99999475"
2069 x="99"
2070 y="228.25003"
2071 rx="0"
2072 ry="0" /><rect
2073 ry="0"
2074 rx="0"
2075 y="226.25003"
2076 x="99"
2077 height="0.99999475"
2078 width="12"
2079 id="rect4758"
2080 style="fill:#999999;fill-opacity:1;stroke:none" /><rect
2081 ry="0"
2082 rx="0"
2083 y="237.25003"
2084 x="99"
2085 height="0.99999475"
2086 width="12"
2087 id="rect4760"
2088 style="fill:#999999;fill-opacity:1;stroke:none" /><rect
2089 style="fill:#999999;fill-opacity:1;stroke:none"
2090 id="rect4762"
2091 width="12"
2092 height="0.99999475"
2093 x="99"
2094 y="235.25003"
2095 rx="0"
2096 ry="0" /><rect
2097 style="fill:#999999;fill-opacity:1;stroke:none"
2098 id="rect4764"
2099 width="12"
2100 height="0.99999475"
2101 x="99"
2102 y="224.25003"
2103 rx="0"
2104 ry="0" /><rect
2105 ry="0"
2106 rx="0"
2107 y="239.25003"
2108 x="99"
2109 height="0.99999475"
2110 width="12"
2111 id="rect4766"
2112 style="fill:#999999;fill-opacity:1;stroke:none" /><path
2113 transform="matrix(-1,0,0,1,337.02051,0.25006141)"
2114 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient4974);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
2115 d="m 162,98 c -1.0907,0 -2,0.9093 -2,2 l 0,9 c 0,1.09069 0.9093,2 2,2 l 12,0 c 1.0907,0 2,-0.90931 2,-2 l 0,-0.375 c 0.0328,-0.0893 0.0213,-0.17215 0,-0.25 L 176,100 c 0,-1.0907 -0.9093,-2 -2,-2 z m 0,1 12,0 c 0.554,0 1,0.446 1,1 l 0,4.11795 -5.88205,5.88195 L 162,110 c -0.554,1e-5 -1,-0.446 -1,-1 l 0,-9 c 0,-0.554 0.446,-1 1,-1 z m 0.5,1 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.24237 0.0444,0.53446 0.5625,0.5 l 0.4375,0 0,5 -0.5,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.12178,-0.5281 -0.5,-0.5 l -0.5,0 0,-5 0.5,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 12.5,5.40625 0,0.84375 -3.71875,3.6875 -0.0312,0.0625 -0.84375,0 z m 0,2.21875 0,0.625 -1.71875,1.75 -0.625,0 z"
2116 id="path4768"
2117 inkscape:connector-curvature="0"
2118 sodipodi:nodetypes="ssssssccssssssccsssssscccssssscccssssccccccccccc" /><path
2119 style="fill:url(#linearGradient6476);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)"
2120 d="m 65,225.25005 0,2 0,10 0,2 16,0 0,-2 0,-10 0,-2 z m 1,4 4,0 0,4 -4,0 z m 5,0 4,0 0,4 -4,0 z m 5,0 4,0 0,4 -4,0 z m -10,5 4,0 0,4 -4,0 z m 5,0 4,0 0,4 -4,0 z m 5,0 4,0 0,4 -4,0 z"
2121 id="path4770"
2122 inkscape:connector-curvature="0"
2123 sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccc" /><path
2124 transform="matrix(1,0,0,-1,1.0000001,585.25004)"
2125 inkscape:connector-curvature="0"
2126 style="fill:#585858;fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)"
2127 d="m 5,289.99999 0,1 -1,0 0,1 -1,0 0,0.875 -0.5,-0.5 -1.5,-1.375 0,5 5,0 -1.5,-1.625 -0.375,-0.375 0.875,0 0,-1 1,0 0,-1 1,0 0,-2 -2,0 z"
2128 id="path4788" /><path
2129 transform="matrix(-1,0,0,1,25,0.25006141)"
2130 inkscape:connector-curvature="0"
2131 style="fill:#585858;fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)"
2132 d="m 13,296.99999 0,1 -1,0 0,1 -1,0 0,0.875 -0.5,-0.5 -1.5,-1.375 0,5 5,0 -1.5,-1.625 -0.375,-0.375 0.875,0 0,-1 1,0 0,-1 1,0 0,-2 -2,0 z"
2133 id="path4790" /><path
2134 id="path4792"
2135 d="m 5,289.99999 0,1 -1,0 0,1 -1,0 0,0.875 -0.5,-0.5 -1.5,-1.375 0,5 5,0 -1.5,-1.625 -0.375,-0.375 0.875,0 0,-1 1,0 0,-1 1,0 0,-2 -2,0 z"
2136 style="fill:#585858;fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)"
2137 inkscape:connector-curvature="0"
2138 transform="matrix(-1,0,0,-1,17,585.25004)" /><path
2139 id="path4795"
2140 d="m 259,1.2500515 0,13.9999995 11,0 0,-8.9999995 0,-1 -4,-4 -1,0 -6,0 z m 1,1 5.34375,0 3.65625,3.65625 0,8.3437495 -5,0 -3,0 -1,0 0,-11.9999995 z m 2,5 0,1 5,0 0,-1 -5,0 z m 0,2 0,0.9999995 5,0 0,-0.9999995 -5,0 z m 0,1.9999995 0,1 5,0 0,-1 -5,0 z"
2141 style="fill:url(#linearGradient4980);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
2142 inkscape:connector-curvature="0" /><path
2143 style="fill:url(#linearGradient4982);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
2144 d="m 3.0000001,1.2500515 0,13.9999995 10.9999999,0 0,-8.9999995 0,-1 -4,-4 -1,0 z m 1,1 5.4999999,0 3.5,3.5 0,8.4999995 -4.9999999,0 -3,0 -1,0 z"
2145 id="path4797"
2146 inkscape:connector-curvature="0"
2147 sodipodi:nodetypes="cccccccccccccccc" /><path
2148 transform="matrix(-1,0,0,1,81,0.25006141)"
2149 style="fill:url(#linearGradient4984);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
2150 d="m 39,6 0,1.875 -1.375,1.46875 1.375,1.46875 0,1.90625 -3.625,-3.375 z"
2151 id="path4799"
2152 inkscape:connector-curvature="0" /><path
2153 transform="matrix(-1,0,0,1,81,0.25006141)"
2154 style="fill:url(#linearGradient4986);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
2155 d="M 40,6 43.6875,9.375 40,12.65625 40,10.75 41.4375,9.34375 40,7.8125 z"
2156 id="path4801"
2157 inkscape:connector-curvature="0" /><path
2158 transform="matrix(-1,0,0,1,82,0.25006141)"
2159 sodipodi:nodetypes="cccccccccccccccc"
2160 inkscape:connector-curvature="0"
2161 id="path4803"
2162 d="m 35,0.99999 0,14 11,0 0,-9 0,-1 -4,-4 -1,0 z m 1,1 5.5,0 3.5,3.5 0,8.5 -5,0 -3,0 -1,0 z"
2163 style="fill:url(#linearGradient4988);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)" /><path
2164 style="fill:url(#linearGradient4990);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
2165 d="m 99,1.2500515 0,13.9999995 11,0 0,-8.9999995 0,-1 -4,-4 -1,0 z m 1,1 5.5,0 3.5,3.5 0,8.4999995 -5,0 -3,0 -1,0 z"
2166 id="path4805"
2167 inkscape:connector-curvature="0"
2168 sodipodi:nodetypes="cccccccccccccccc" /><path
2169 transform="matrix(-1,0,0,1,273,0.25006141)"
2170 sodipodi:nodetypes="cccccccccccccccc"
2171 inkscape:connector-curvature="0"
2172 id="path4807"
2173 d="m 131,0.99999 0,14 11,0 0,-9 0,-1 -4,-4 -1,0 z m 1,1 5.5,0 3.5,3.5 0,8.5 -5,0 -3,0 -1,0 z"
2174 style="fill:url(#linearGradient4992);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)" /><path
2175 id="path4809"
2176 d="m 291,1.2500515 0,4.75 c 0.19146,-0.12014 0.37062,-0.22084 0.5625,-0.3125 l 0.4375,-0.21875 0,-3.21875 5.34375,0 3.65625,3.65625 0,8.3437495 -5,0 0,0.96875 c 0,0.0104 1.6e-4,0.0209 0,0.0312 l 6,0 0,-8.9999995 0,-1 -4,-4 -1,0 -6,0 z m 1,5.34375 c -0.36123,0.17256 -0.68892,0.37641 -0.96875,0.65625 -0.63338,0.63338 -1.03125,1.5335 -1.03125,2.5 0,1.3935195 0.8237,2.5643995 2,3.1249995 l 0,2.34375 c 0,0.554 0.44599,1 1,1 l 1,0.0312 c 0.554,0 1,-0.47725 1,-1.03125 l 0,-2.34375 c 1.17629,-0.5606 2,-1.73148 2,-3.1249995 0,-1.39352 -0.82119,-2.59313 -2,-3.15625 l 0,2.65625 -1.46875,0.9999995 L 292,9.2500015 l 0,-2.65625 z"
2177 style="fill:url(#linearGradient4994);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
2178 inkscape:connector-curvature="0" /><path
2179 id="path4817"
2180 d="m 34,32.250051 0,10 3,0 0,-1 -1,0 -1,0 0,-8 4.5,0 2.5,2.5 0,0.5 1,0 0,-1 -3,-3 -1,0 -5,0 z m 4,5 0,10 9,0 0,-6 0,-1 -3,-3 -1,0 -5,0 z m 1,1 4.5,0 2.5,2.5 0,5.5 -5,0 -1,0 -1,0 0,-8 z"
2181 style="fill:url(#linearGradient4996);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
2182 inkscape:connector-curvature="0" /><path
2183 transform="matrix(-1,0,0,1,389,0.25006141)"
2184 inkscape:connector-curvature="0"
2185 style="fill:url(#linearGradient5002);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
2186 d="m 182,0.99999 0,14 8.8125,0 -1,-1 -1.3125,0 -1.5,0 -3,0 -1,0 0,-12 5.5,0 3.5,3.5 0,1.21875 c 0.61468,0.7698887 1,1.7287934 1,2.78125 l 0,-3.5 0,-1 -4,-4 -1,0 -6,0 z m 11,8.5 c 0,0.4831876 -0.20077,0.86276 -0.34375,1.28125 L 193,11.12499 l 0,-1.625 z m -4.5,-3.5 c -1.92115,0 -3.5,1.57884 -3.5,3.5 0,1.92115 1.57885,3.5 3.5,3.5 0.49539,0 0.94633,-0.12374 1.375,-0.3125 l 2.34375,2.34375 1.625,-1.625 -2.28125,-2.28125 C 191.829,10.63214 192,10.09539 192,9.49999 c 0,-1.92116 -1.57885,-3.5 -3.5,-3.5 z m -0.0312,1 c 1.38071,0 2.5,1.11929 2.5,2.5 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 z"
2187 id="path4828" /><path
2188 transform="matrix(-1,0,0,1,657,0.25006141)"
2189 inkscape:connector-curvature="0"
2190 style="fill:url(#linearGradient5004);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
2191 d="m 323,0.99999 0,4.75 c 0.19146,-0.1201434 0.37062,-0.2208417 0.5625,-0.3125 L 324,5.21874 l 0,-3.21875 5.34375,0 3.65625,3.65625 0,8.34375 -5,0 0,0.96875 c 0,0.01043 1.6e-4,0.02085 0,0.03125 l 6,0 0,-9 0,-1 -4,-4 -1,0 -6,0 z m 1,5.34375 c -0.36123,0.1725562 -0.68892,0.3764154 -0.96875,0.65625 C 322.39787,7.6333667 322,8.5334899 322,9.49999 c 0,1.393522 0.8237,2.564396 2,3.125 l 0,2.34375 c 0,0.554002 0.44599,1.000002 1,1 l 1,0.03125 c 0.554,-2e-6 1,-0.477248 1,-1.03125 l 0,-2.34375 c 1.17629,-0.560603 2,-1.731478 2,-3.125 0,-1.3935222 -0.82119,-2.5931341 -2,-3.15625 l 0,2.65625 -1.46875,1 -1.53125,-1 0,-2.65625 z"
2192 id="path4830" /><rect
2193 style="fill:#2d2d2d;fill-opacity:1;stroke:none"
2194 id="rect6517"
2195 width="6.9999981"
2196 height="1"
2197 x="71"
2198 y="68.250053" /><rect
2199 y="70.250053"
2200 x="67"
2201 height="1"
2202 width="11"
2203 id="rect6519"
2204 style="fill:#2d2d2d;fill-opacity:1;stroke:none" /><rect
2205 y="74.250053"
2206 x="67"
2207 height="1"
2208 width="11"
2209 id="rect6523"
2210 style="fill:#2d2d2d;fill-opacity:1;stroke:none" /><rect
2211 style="fill:#2d2d2d;fill-opacity:1;stroke:none"
2212 id="rect6525"
2213 width="3"
2214 height="1"
2215 x="67"
2216 y="76.250053" /><path
2217 style="fill:#2d2d2d;fill-opacity:1;stroke:none"
2218 d="m 71,76.250051 0,1 1,0 0,2 -1,0 0,1 3,0 0,-1 -1,0 0,-2 1,0 0,-1 -1,0 -1,0 -1,0 z"
2219 id="rect6527"
2220 inkscape:connector-curvature="0" /><rect
2221 y="72.250053"
2222 x="67"
2223 height="1"
2224 width="11"
2225 id="rect6539"
2226 style="fill:#2d2d2d;fill-opacity:1;stroke:none" /><rect
2227 y="66.250053"
2228 x="71"
2229 height="1"
2230 width="7"
2231 id="rect6547"
2232 style="fill:#2d2d2d;fill-opacity:1;stroke:none" /><rect
2233 style="fill:#2d2d2d;fill-opacity:0.99215686;stroke:none"
2234 id="rect6606"
2235 width="3"
2236 height="3"
2237 x="67"
2238 y="66.250053" /><path
2239 inkscape:connector-curvature="0"
2240 style="fill:url(#linearGradient7390);fill-opacity:1;fill-rule:evenodd;display:inline;filter:url(#filter3224-1-7-1-2)"
2241 d="m 8.4240611,258.26107 c -1.28354,3.14452 -2.79862,6.87174 -4.15625,10.1875 l 2.5,0 0.90625,-2.5 3.3437499,0 0.8125,2.5 2.625,0 c -1.33823,-3.35178 -2.81774,-6.95392 -4.09375,-10.1875 l -1.9374999,0 z m 0.9687499,2.96875 0.90625,2.6875 -1.9062499,0 0.9999999,-2.6875 z"
2242 id="path4763" /><path
2243 style="fill:#999999;fill-opacity:1;fill-rule:evenodd;display:inline"
2244 d="m 2.0000001,270.26107 0,1.98898 14.9999999,0 0,-1.98898 z"
2245 id="path3812"
2246 inkscape:connector-curvature="0" /><path
2247 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3645);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1-3);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
2248 d="m 103.53125,32.250051 c -0.29461,0 -0.53125,0.23664 -0.53125,0.53125 l 0,0.46875 -0.46875,0 c -0.29461,0 -0.53125,0.23664 -0.53125,0.53125 l 0,0.9375 c 0,0.2946 0.23664,0.53125 0.53125,0.53125 l 1,0 2.9375,0 1,0 c 0.29461,0 0.53125,-0.23665 0.53125,-0.53125 l 0,-0.9375 c 0,-0.29461 -0.23664,-0.53125 -0.53125,-0.53125 l -0.46875,0 0,-0.46875 c 0,-0.29461 -0.23664,-0.53125 -0.53125,-0.53125 l -2.9375,0 z m -2.53125,1 c -1.0907,0 -2,0.9093 -2,2 l 0,9 c 0,1.0907 0.9093,2 2,2 l 1,0 0,-1 -1,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-9 c 0,-0.554 0.446,-1 1,-1 l 0,-0.46875 c 0,-0.18358 0.0316,-0.36661 0.0937,-0.53125 l -0.0937,0 z m 7.90625,0 c 0.0622,0.16465 0.0937,0.34767 0.0937,0.53125 l 0,0.46875 c 0.554,0 1,0.446 1,1 l 0,2 1,0 0,-2 c 0,-1.0907 -0.9093,-2 -2,-2 l -0.0937,0 z m -4.90625,5 c -0.554,0 -1,0.446 -1,1 l 0,7 c 0,0.554 0.446,1 1,1 l 7,0 c 0.554,0 1,-0.446 1,-1 l 0,-7 c 0,-0.554 -0.446,-1 -1,-1 l -7,0 z m 0,1 7,0 0,7 -7,0 0,-7 z m 1,1 0,1 2,0 0,4 1,0 0,-4 2,0 0,-1 -5,0 z"
2249 id="path3631"
2250 inkscape:connector-curvature="0" /><path
2251 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3667);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1-3);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
2252 d="m 135.53125,32.250051 c -0.29461,0 -0.53125,0.23664 -0.53125,0.53125 l 0,0.46875 -0.46875,0 c -0.29461,0 -0.53125,0.23664 -0.53125,0.53125 l 0,0.9375 c 0,0.2946 0.23664,0.53125 0.53125,0.53125 l 1,0 2.9375,0 1,0 c 0.29461,0 0.53125,-0.23665 0.53125,-0.53125 l 0,-0.9375 c 0,-0.29461 -0.23664,-0.53125 -0.53125,-0.53125 l -0.46875,0 0,-0.46875 c 0,-0.29461 -0.23664,-0.53125 -0.53125,-0.53125 l -2.9375,0 z m -2.53125,1 c -1.0907,0 -2,0.9093 -2,2 l 0,2 1,0 0,-2 c 0,-0.554 0.446,-1 1,-1 l 0,-0.46875 c 0,-0.18358 0.0316,-0.3666 0.0937,-0.53125 l -0.0937,0 z m 7.90625,0 c 0.0621,0.16464 0.0937,0.34767 0.0937,0.53125 l 0,0.46875 c 0.554,0 1,0.446 1,1 l 0,9 c 0,0.554 -0.446,1 -1,1 l -1,0 0,1 1,0 c 1.0907,0 2,-0.9093 2,-2 l 0,-9 c 0,-1.0907 -0.9093,-2 -2,-2 l -0.0937,0 z m -9.90625,5 c -0.554,0 -1,0.446 -1,1 l 0,7 c 0,0.554 0.446,1 1,1 l 7,0 c 0.554,0 1,-0.446 1,-1 l 0,-7 c 0,-0.554 -0.446,-1 -1,-1 l -7,0 z m 0,1 7,0 0,7 -7,0 0,-7 z m 1,1 0,1 2,0 0,4 1,0 0,-4 2,0 0,-1 -5,0 z"
2253 id="path3655"
2254 inkscape:connector-curvature="0" /><path
2255 style="fill:#4c4c4c;fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-2)"
2256 d="m 199.53125,32.250051 c -0.29461,0 -0.53125,0.23664 -0.53125,0.53125 l 0,0.46875 -0.46875,0 c -0.29461,0 -0.53125,0.23664 -0.53125,0.53125 l 0,0.9375 c 0,0.2946 0.23664,0.53125 0.53125,0.53125 l 1,0 2.9375,0 1,0 c 0.29461,0 0.53125,-0.23665 0.53125,-0.53125 l 0,-0.9375 c 0,-0.29461 -0.23664,-0.53125 -0.53125,-0.53125 l -0.46875,0 0,-0.46875 c 0,-0.29461 -0.23664,-0.53125 -0.53125,-0.53125 l -2.9375,0 z m -2.53125,1 c -1.0907,0 -2,0.9093 -2,2 l 0,2 1,0 0,-2 c 0,-0.554 0.446,-1 1,-1 l 0,-0.46875 c 0,-0.18358 0.0316,-0.3666 0.0937,-0.53125 l -0.0937,0 z m 7.90625,0 c 0.0621,0.16464 0.0937,0.34767 0.0937,0.53125 l 0,0.46875 c 0.554,0 1,0.446 1,1 l 0,9 c 0,0.554 -0.446,1 -1,1 l -1,0 0,1 1,0 c 1.0907,0 2,-0.9093 2,-2 l 0,-9 c 0,-1.0907 -0.9093,-2 -2,-2 l -0.0937,0 z m -9.90625,5 c -0.554,0 -1,0.446 -1,1 l 0,7 c 0,0.554 0.446,1 1,1 l 7,0 c 0.554,0 1,-0.446 1,-1 l 0,-7 c 0,-0.554 -0.446,-1 -1,-1 l -7,0 z m 0,1 7,0 0,7 -7,0 0,-7 z m 1,1 0,1 0,4 1,0 1,-1 1,0 1,1 1,0 0,-4 0,-1 -1,0 0,3 -0.25,0 -0.75,0 0,-1 -1,0 0,1 -0.75,0 -0.25,0 0,-3 -1,0 z"
2257 id="path3708"
2258 inkscape:connector-curvature="0" /><rect
2259 style="fill:url(#linearGradient3809);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-2)"
2260 id="rect3807"
2261 width="16"
2262 height="7.9999976"
2263 x="257"
2264 y="100.25005"
2265 rx="2"
2266 ry="2" /><path
2267 style="fill:#767676;fill-opacity:1;stroke:none"
2268 d="m 259,106.25005 0,-3.375 c 0,-0.35225 0.27275,-0.625 0.625,-0.625 l 12.375,0 0,-0.375 c 0,-0.35225 -0.27275,-0.625 -0.625,-0.625 l -12.75,0 c -0.35225,0 -0.625,0.27275 -0.625,0.625 l 0,3.75 c 0,0.35225 0.27275,0.625 0.625,0.625 l 0.375,0 z"
2269 id="rect3811"
2270 inkscape:connector-curvature="0" /><g
2271 style="font-size:15.85716724px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#585858;fill-opacity:0.99215686;stroke:none;filter:url(#filter3224-1-7-1-2);font-family:Sans"
2272 id="text3563"
2273 transform="translate(18,0.25006141)"><path
2274 d="m 91.018035,130.55223 0,2.44671 c -0.634915,-0.28389 -1.011554,-0.48077 -1.615481,-0.62531 -0.603942,-0.14452 -1.174325,-0.21679 -1.71115,-0.2168 -0.712338,10e-6 -1.238845,0.0981 -1.579522,0.29423 -0.340685,0.19616 -0.511026,0.5007 -0.511022,0.91364 -4e-6,0.30972 0.113556,0.55233 0.340681,0.72782 0.232279,0.17035 0.650387,0.31746 1.254327,0.44134 l 1.269812,0.25551 c 1.28529,0.2581 2.198934,0.6504 2.740936,1.1769 0.541983,0.52651 0.81298,1.27498 0.81299,2.2454 -10e-6,1.27498 -0.379405,2.22475 -1.138185,2.84933 -0.753637,0.61942 -1.907307,0.92913 -3.461013,0.92913 -0.732986,0 -1.468547,-0.0697 -2.206686,-0.20905 -0.738146,-0.13937 -1.476288,-0.34584 -2.214429,-0.61942 l 0,-2.5164 c 0.738141,0.39231 1.450474,0.68911 2.137002,0.89042 0.691682,0.19615 1.357558,0.29423 1.997631,0.29423 0.650386,0 1.148502,-0.1084 1.494352,-0.3252 0.345836,-0.2168 0.518757,-0.52651 0.518765,-0.92913 -8e-6,-0.36133 -0.11873,-0.64007 -0.356167,-0.83622 -0.232289,-0.19615 -0.699435,-0.37165 -1.401439,-0.52651 l -1.153671,-0.25551 c -1.156255,-0.24776 -2.002796,-0.64264 -2.539624,-1.18464 -0.531671,-0.54199 -0.797506,-1.27239 -0.797504,-2.1912 -2e-6,-1.15108 0.37165,-2.03634 1.114957,-2.65577 0.743301,-0.61941 1.811801,-0.92912 3.205501,-0.92913 0.6349,1e-5 1.287872,0.049 1.958918,0.14712 0.671031,0.0929 1.122516,0.21753 1.840021,0.40851"
2275 style="font-weight:bold;fill:#585858;-inkscape-font-specification:Sans Bold"
2276 id="path3568"
2277 inkscape:connector-curvature="0"
2278 sodipodi:nodetypes="ccccccccccccsccccsccccccssccc" /></g><path
2279 id="path3593"
2280 d="m 99.5,136.25006 12,0 c 0.277,0 0.5,0.20442 0.5,0.45833 l 0,0.0833 c 0,0.25395 -0.223,0.45837 -0.5,0.45837 l -12,0 c -0.277,0 -0.5,-0.20442 -0.5,-0.45833 l 0,-0.0833 c 0,-0.25395 0.223,-0.45837 0.5,-0.45837 z"
2281 style="fill:#2d2d2d;fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1)"
2282 inkscape:connector-curvature="0"
2283 sodipodi:nodetypes="sssssssss" /><path
2284 style="fill:url(#linearGradient3947);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
2285 d="m 3,354.25006 0,13 1,0 0,-13 z"
2286 id="path3580"
2287 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
2288 inkscape:export-xdpi="90"
2289 inkscape:export-ydpi="90"
2290 inkscape:connector-curvature="0"
2291 sodipodi:nodetypes="ccccc" /><path
2292 style="fill:#b50000;fill-opacity:1;fill-rule:evenodd"
2293 d="m 7.49999,353.83342 c -0.79075,0.009 -1.6003,0.34033 -2.49999,1.375 l 0,8.04164 c 3.6012,-4.05865 6.31153,2.81598 10,-1 l 0,-8.04165 c -2.75545,2.934 -5.12774,-0.40352 -7.50001,-0.37496 z"
2294 id="path3574"
2295 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
2296 inkscape:export-xdpi="90"
2297 inkscape:export-ydpi="90"
2298 inkscape:connector-curvature="0" /><path
2299 id="path4350"
2300 d="m 7.49999,354.83342 c -0.79075,0.009 -1.6003,0.34033 -2.49999,1.375 l 0,7.04164 c 3.6012,-4.05865 6.31153,2.81598 10,-1 l 0,-7.04165 c -2.75545,2.934 -5.12774,-0.40352 -7.50001,-0.37496 z"
2301 style="fill:url(#linearGradient3949);fill-opacity:1;fill-rule:evenodd"
2302 inkscape:connector-curvature="0"
2303 sodipodi:nodetypes="ccccccc"
2304 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
2305 inkscape:export-xdpi="90"
2306 inkscape:export-ydpi="90" /><path
2307 style="fill:#8e0000;fill-opacity:1;fill-rule:evenodd"
2308 d="m 15,354.2188 c -0.30805,0.32801 -0.61008,0.56529 -0.90909,0.75 l 0,7 c -2.37556,1.46746 -4.48386,-1.15037 -6.59091,-1.125 -0.79075,0.009 -1.60031,0.34033 -2.5,1.375 l 0,0.25 0,0.75 0,0.0312 c 0.17642,-0.19882 0.34007,-0.3831 0.51136,-0.53125 0.17129,-0.14815 0.34405,-0.27195 0.51137,-0.375 0.33463,-0.2061 0.66866,-0.31581 0.99432,-0.375 -0.0646,-0.009 -0.13201,-0.0172 -0.19887,-0.0312 0.22905,-0.0632 0.45744,-0.0912 0.68182,-0.0937 1.52669,-0.0184 3.05867,1.36143 4.6875,1.5625 0.0643,0.008 0.13429,-0.004 0.19886,0 0.086,0.005 0.16893,0.0337 0.25569,0.0312 0.0948,-0.003 0.18827,-0.0188 0.28409,-0.0312 0.13088,-0.017 0.26485,-0.0564 0.39772,-0.0937 0.18899,-0.0529 0.37588,-0.1176 0.56819,-0.21875 0.0301,-0.0155 0.055,-0.0457 0.0852,-0.0625 0.16982,-0.0943 0.33776,-0.20651 0.51137,-0.34375 0.16802,-0.13283 0.33949,-0.25969 0.51136,-0.4375 l 0,-0.0312 0,-1 0,-7 z"
2309 id="path4364"
2310 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
2311 inkscape:export-xdpi="90"
2312 inkscape:export-ydpi="90"
2313 inkscape:connector-curvature="0" /><rect
2314 inkscape:export-ydpi="90"
2315 inkscape:export-xdpi="90"
2316 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
2317 y="352.25006"
2318 x="1"
2319 height="16"
2320 width="16"
2321 id="rect3598"
2322 style="fill:#ffffff;fill-opacity:0;stroke:none" /><path
2323 sodipodi:nodetypes="ccccc"
2324 inkscape:connector-curvature="0"
2325 inkscape:export-ydpi="90"
2326 inkscape:export-xdpi="90"
2327 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
2328 id="path3600"
2329 d="m 3,354.25006 0,13 1,0 0,-13 z"
2330 style="fill:url(#linearGradient3576);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)" /><path
2331 inkscape:connector-curvature="0"
2332 inkscape:export-ydpi="90"
2333 inkscape:export-xdpi="90"
2334 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
2335 id="path3602"
2336 d="m 7.49999,353.83342 c -0.79075,0.009 -1.6003,0.34033 -2.49999,1.375 l 0,8.04164 c 3.6012,-4.05865 6.31153,2.81598 10,-1 l 0,-8.04165 c -2.75545,2.934 -5.12774,-0.40352 -7.50001,-0.37496 z"
2337 style="fill:#b50000;fill-opacity:1;fill-rule:evenodd" /><path
2338 inkscape:export-ydpi="90"
2339 inkscape:export-xdpi="90"
2340 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
2341 sodipodi:nodetypes="ccccccc"
2342 inkscape:connector-curvature="0"
2343 style="fill:url(#linearGradient4358);fill-opacity:1;fill-rule:evenodd"
2344 d="m 7.49999,354.83342 c -0.79075,0.009 -1.6003,0.34033 -2.49999,1.375 l 0,7.04164 c 3.6012,-4.05865 6.31153,2.81598 10,-1 l 0,-7.04165 c -2.75545,2.934 -5.12774,-0.40352 -7.50001,-0.37496 z"
2345 id="path3604" /><path
2346 inkscape:connector-curvature="0"
2347 inkscape:export-ydpi="90"
2348 inkscape:export-xdpi="90"
2349 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
2350 id="path3606"
2351 d="m 15,354.2188 c -0.30805,0.32801 -0.61008,0.56529 -0.90909,0.75 l 0,7 c -2.37556,1.46746 -4.48386,-1.15037 -6.59091,-1.125 -0.79075,0.009 -1.60031,0.34033 -2.5,1.375 l 0,0.25 0,0.75 0,0.0312 c 0.17642,-0.19882 0.34007,-0.3831 0.51136,-0.53125 0.17129,-0.14815 0.34405,-0.27195 0.51137,-0.375 0.33463,-0.2061 0.66866,-0.31581 0.99432,-0.375 -0.0646,-0.009 -0.13201,-0.0172 -0.19887,-0.0312 0.22905,-0.0632 0.45744,-0.0912 0.68182,-0.0937 1.52669,-0.0184 3.05867,1.36143 4.6875,1.5625 0.0643,0.008 0.13429,-0.004 0.19886,0 0.086,0.005 0.16893,0.0337 0.25569,0.0312 0.0948,-0.003 0.18827,-0.0188 0.28409,-0.0312 0.13088,-0.017 0.26485,-0.0564 0.39772,-0.0937 0.18899,-0.0529 0.37588,-0.1176 0.56819,-0.21875 0.0301,-0.0155 0.055,-0.0457 0.0852,-0.0625 0.16982,-0.0943 0.33776,-0.20651 0.51137,-0.34375 0.16802,-0.13283 0.33949,-0.25969 0.51136,-0.4375 l 0,-0.0312 0,-1 0,-7 z"
2352 style="fill:#8e0000;fill-opacity:1;fill-rule:evenodd" /><path
2353 style="fill:url(#linearGradient4386);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-2)"
2354 d="m 65,321.25005 0,14 3,0 0,-1 -2,0 0,-12 2,0 0,-1 z m 13,0 0,1 2,0 0,12 -2,0 0,1 3,0 0,-14 z"
2355 id="rect3578"
2356 inkscape:connector-curvature="0"
2357 sodipodi:nodetypes="cccccccccccccccccc" /><g
2358 style="font-size:13.71140385px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4388);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-2);font-family:Sans"
2359 id="text4354"
2360 transform="translate(2.0000001,0.25006141)"><path
2361 d="m 70.006423,329.43503 1.991763,0 c 1.837326,0 3.016509,-1.30258 3.016509,-3.33187 0,-2.00186 -1.138049,-3.09877 -3.22218,-3.09877 l -3.790777,0 0,9.99561 2.004685,0 0,-3.56497 m 0,-1.71392 0,-3.0028 1.347327,0 c 1.096911,0 1.604234,0.4799 1.604234,1.50826 0,1.01464 -0.507323,1.49454 -1.604234,1.49454 l -1.347327,0"
2362 style="font-variant:normal;font-weight:bold;font-stretch:normal;fill:url(#linearGradient3951);font-family:Nimbus Sans L;-inkscape-font-specification:Nimbus Sans L Bold"
2363 id="path4361"
2364 inkscape:connector-curvature="0"
2365 sodipodi:nodetypes="csssccccccsssc" /></g><path
2366 style="fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter3224-1-7-1-5-0-8)"
2367 d="m 111,321.53125 -6,0.9375 0,1 2,-0.3125 0,2.84375 -3,0 0,1 3,0 0,3 -2,0 -1,0 0,5 1,0 0,-1 5,0 1,0 0,-4 -1,0 -2,0 0,-3 3,0 0,-1 -3,0 0,-3 3,-0.46875 0,-1 z M 97,322 l 0,1 6,0 0,-1 -6,0 z m -1,2 0,1 8,0 0,-1 -8,0 z m 1,2 0,1 6,0 0,-1 -6,0 z m 0,2 0,1 6,0 0,-1 -6,0 z m 0,2 0,5 1,0 0,-1 4,0 1,0 0,-4 -1,0 -4,0 -1,0 z m 1,1 4,0 0,2 -4,0 0,-2 z m 7,0 5,0 0,2 -5,0 0,-2 z"
2368 transform="translate(1,0.2500015)"
2369 id="rect4258"
2370 inkscape:connector-curvature="0" /><path
2371 style="fill:#515151;fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-7)"
2372 d="m 129,321.25002 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m -14,2 0,1 1,0 0,-1 -1,0 z m 2,0 0,5 0,1 0,3 5,0 0,-1 -4,0 0,-1 4,0 1,0 0,-1 -5,0 0,-1 6,0 4,0 0,-1 0,-4 -4,0 -7,0 z m 12,0 0,1 1,0 0,-1 -1,0 z m -11,1 9,0 0,1 -9,0 0,-1 z m -3,1 0,1 1,0 0,-1 -1,0 z m 14,0 0,1 1,0 0,-1 -1,0 z m -11,1 8.96875,0 0,1 -8.96875,0 0,-1 z m -3,1 0,1 1,0 0,-1 -1,0 z m 14,0 0,1 1,0 0,-1 -1,0 z m -3,1.75 -3.6875,3.375 3.6875,3.28125 0,-1.90625 -1.4375,-1.40625 1.4375,-1.53125 0,-1.8125 z m 1,0 0,1.875 1.375,1.46875 -1.375,1.46875 0,1.90625 3.625,-3.375 -3.625,-3.34375 z m -12,0.25 0,1 1,0 0,-1 -1,0 z m 0,2 0,1 1,0 0,-1 -1,0 z m 0,2 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z"
2373 id="rect5051"
2374 inkscape:connector-curvature="0" /></g></svg> \ No newline at end of file
diff --git a/sources/skins/moono/dev/icons32.png b/sources/skins/moono/dev/icons32.png
new file mode 100644
index 0000000..a74c093
--- /dev/null
+++ b/sources/skins/moono/dev/icons32.png
Binary files differ
diff --git a/sources/skins/moono/dev/icons32.svg b/sources/skins/moono/dev/icons32.svg
new file mode 100644
index 0000000..12b8908
--- /dev/null
+++ b/sources/skins/moono/dev/icons32.svg
@@ -0,0 +1,2722 @@
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
4<svg
5 xmlns:dc="http://purl.org/dc/elements/1.1/"
6 xmlns:cc="http://creativecommons.org/ns#"
7 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8 xmlns:svg="http://www.w3.org/2000/svg"
9 xmlns="http://www.w3.org/2000/svg"
10 xmlns:xlink="http://www.w3.org/1999/xlink"
11 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13 version="1.1"
14 id="Layer_1"
15 x="0px"
16 y="0px"
17 width="992"
18 height="736"
19 viewBox="0 0 992 735.99996"
20 enable-background="new 0 0 612 792"
21 xml:space="preserve"
22 inkscape:version="0.48.3.1 r9886"
23 sodipodi:docname="icons32.svg"
24 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/skins/moono/dev/icons32.png"
25 inkscape:export-xdpi="90"
26 inkscape:export-ydpi="90"><metadata
27 id="metadata9"><rdf:RDF><cc:Work
28 rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
29 rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
30 id="defs7"><linearGradient
31 inkscape:collect="always"
32 id="linearGradient4352"><stop
33 style="stop-color:#ff4141;stop-opacity:0"
34 offset="0"
35 id="stop4354" /><stop
36 id="stop4362"
37 offset="0.24227905"
38 style="stop-color:#ff4141;stop-opacity:0.78823529;" /><stop
39 id="stop4360"
40 offset="0.73632693"
41 style="stop-color:#ff4141;stop-opacity:0" /><stop
42 style="stop-color:#ff4141;stop-opacity:1"
43 offset="1"
44 id="stop4356" /></linearGradient><linearGradient
45 id="linearGradient4392"><stop
46 style="stop-color:#666666;stop-opacity:1;"
47 offset="0"
48 id="stop4394" /><stop
49 style="stop-color:#424242;stop-opacity:1;"
50 offset="1"
51 id="stop4396" /></linearGradient><filter
52 id="filter3224-1-7-1-3"
53 inkscape:label="Inner Shadow"
54 inkscape:menu="Shadows and Glows"
55 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
56 color-interpolation-filters="sRGB"
57 width="1"
58 height="1"
59 y="0"
60 x="0"><feOffset
61 id="feOffset3228-5-5-5-70"
62 dx="0"
63 dy="0.69999999999999996"
64 result="result11" /><feComposite
65 id="feComposite3230-2-4-1-9"
66 in2="result11"
67 result="result6"
68 in="SourceGraphic"
69 operator="in" /><feFlood
70 id="feFlood3232-7-3-4-91"
71 result="result10"
72 in="result6"
73 flood-opacity="1"
74 flood-color="rgb(34,34,34)" /><feBlend
75 id="feBlend3234-6-3-5-53"
76 in2="result10"
77 mode="normal"
78 in="result6"
79 result="result12" /><feComposite
80 id="feComposite3236-1-3-5-3"
81 in2="SourceGraphic"
82 result="result2"
83 operator="in" /></filter><linearGradient
84 inkscape:collect="always"
85 xlink:href="#linearGradient4392"
86 id="linearGradient3429"
87 gradientUnits="userSpaceOnUse"
88 x1="72"
89 y1="32"
90 x2="72"
91 y2="47" /><linearGradient
92 inkscape:collect="always"
93 xlink:href="#linearGradient4392"
94 id="linearGradient3431"
95 gradientUnits="userSpaceOnUse"
96 gradientTransform="matrix(1.33333,0,0,1.33333,47.36541,-272.06703)"
97 x1="91"
98 y1="204"
99 x2="91"
100 y2="216" /><linearGradient
101 inkscape:collect="always"
102 xlink:href="#linearGradient4392"
103 id="linearGradient3437"
104 gradientUnits="userSpaceOnUse"
105 gradientTransform="translate(-96,49)"
106 x1="136"
107 y1="50"
108 x2="136"
109 y2="62" /><linearGradient
110 inkscape:collect="always"
111 xlink:href="#linearGradient4392"
112 id="linearGradient3439"
113 gradientUnits="userSpaceOnUse"
114 gradientTransform="translate(-16,49)"
115 x1="120"
116 y1="50"
117 x2="120"
118 y2="62" /><linearGradient
119 inkscape:collect="always"
120 xlink:href="#linearGradient4392"
121 id="linearGradient3441"
122 gradientUnits="userSpaceOnUse"
123 gradientTransform="translate(-80,49)"
124 x1="88"
125 y1="50"
126 x2="88"
127 y2="63" /><linearGradient
128 inkscape:collect="always"
129 xlink:href="#linearGradient4392"
130 id="linearGradient3443"
131 gradientUnits="userSpaceOnUse"
132 gradientTransform="translate(-272,80)"
133 x1="343"
134 y1="50"
135 x2="343"
136 y2="63" /><linearGradient
137 inkscape:collect="always"
138 xlink:href="#linearGradient4392"
139 id="linearGradient3447"
140 gradientUnits="userSpaceOnUse"
141 gradientTransform="translate(-16,192.99999)"
142 x1="88"
143 y1="161"
144 x2="88"
145 y2="174" /><linearGradient
146 inkscape:collect="always"
147 xlink:href="#linearGradient4392"
148 id="linearGradient3451"
149 gradientUnits="userSpaceOnUse"
150 gradientTransform="matrix(1.1649013,0,0,1.1649013,-386.36445,145.11124)"
151 x1="365"
152 y1="96.073685"
153 x2="365"
154 y2="108.07368" /><linearGradient
155 inkscape:collect="always"
156 xlink:href="#linearGradient4392"
157 id="linearGradient3453"
158 gradientUnits="userSpaceOnUse"
159 gradientTransform="matrix(1.33333,0,0,1.33333,-415.467,94.82271)"
160 x1="365"
161 y1="73.073685"
162 x2="365"
163 y2="84.073685" /><linearGradient
164 inkscape:collect="always"
165 xlink:href="#linearGradient4392"
166 id="linearGradient3455"
167 gradientUnits="userSpaceOnUse"
168 gradientTransform="matrix(1.1673123,0,0,1.1673123,-227.67995,73.95948)"
169 x1="366"
170 y1="48.073685"
171 x2="366"
172 y2="60.073685" /><linearGradient
173 inkscape:collect="always"
174 xlink:href="#linearGradient4392"
175 id="linearGradient3457"
176 gradientUnits="userSpaceOnUse"
177 gradientTransform="matrix(1.1111083,0,0,1.1111083,-187.99896,-192.84664)"
178 x1="378"
179 y1="205"
180 x2="378"
181 y2="214" /><linearGradient
182 inkscape:collect="always"
183 xlink:href="#linearGradient4392"
184 id="linearGradient3459"
185 gradientUnits="userSpaceOnUse"
186 gradientTransform="translate(177.99998,89.93748)"
187 x1="246"
188 y1="73.073685"
189 x2="246"
190 y2="84.073685" /><linearGradient
191 inkscape:collect="always"
192 xlink:href="#linearGradient4392"
193 id="linearGradient3461"
194 gradientUnits="userSpaceOnUse"
195 gradientTransform="translate(169.99998,89.93748)"
196 x1="222"
197 y1="73.073685"
198 x2="222"
199 y2="84.073685" /><linearGradient
200 inkscape:collect="always"
201 xlink:href="#linearGradient4392"
202 id="linearGradient3463"
203 gradientUnits="userSpaceOnUse"
204 gradientTransform="matrix(1.0131693,0,0,1.0131693,159.31347,88.9358)"
205 x1="197"
206 y1="73.073685"
207 x2="197"
208 y2="84.073685" /><linearGradient
209 inkscape:collect="always"
210 xlink:href="#linearGradient4392"
211 id="linearGradient3465"
212 gradientUnits="userSpaceOnUse"
213 gradientTransform="translate(153.99998,89.93748)"
214 x1="171"
215 y1="73.073685"
216 x2="171"
217 y2="84.073685" /><linearGradient
218 inkscape:collect="always"
219 xlink:href="#linearGradient4392"
220 id="linearGradient3467"
221 gradientUnits="userSpaceOnUse"
222 gradientTransform="matrix(1.2458722,0,0,1.1615489,-282.43958,-203.90163)"
223 x1="233"
224 y1="204"
225 x2="233"
226 y2="216" /><linearGradient
227 inkscape:collect="always"
228 xlink:href="#linearGradient4392"
229 id="linearGradient3469"
230 gradientUnits="userSpaceOnUse"
231 gradientTransform="matrix(1.1666672,0,0,1.1723864,-11.00007,112.34331)"
232 x1="126"
233 y1="96.073685"
234 x2="126"
235 y2="108.07368" /><linearGradient
236 inkscape:collect="always"
237 xlink:href="#linearGradient4392"
238 id="linearGradient3471"
239 gradientUnits="userSpaceOnUse"
240 gradientTransform="matrix(1.33333,0,0,1.1621519,95.65429,77.66723)"
241 x1="124"
242 y1="74.073685"
243 x2="124"
244 y2="82.073685" /><linearGradient
245 inkscape:collect="always"
246 xlink:href="#linearGradient4392"
247 id="linearGradient3473"
248 gradientUnits="userSpaceOnUse"
249 gradientTransform="matrix(1.1666666,0,0,1.1666669,-23,112.92042)"
250 x1="54"
251 y1="96.073685"
252 x2="54"
253 y2="108.07368" /><linearGradient
254 inkscape:collect="always"
255 xlink:href="#linearGradient4392"
256 id="linearGradient3475"
257 gradientUnits="userSpaceOnUse"
258 gradientTransform="matrix(1.33333,0,0,1.33333,-112.63459,-273.06703)"
259 x1="91"
260 y1="204"
261 x2="91"
262 y2="216" /><linearGradient
263 inkscape:collect="always"
264 xlink:href="#linearGradient4392"
265 id="linearGradient3477"
266 gradientUnits="userSpaceOnUse"
267 gradientTransform="matrix(1.33333,0,0,1.33333,-112.63459,-273.06703)"
268 x1="91"
269 y1="204"
270 x2="91"
271 y2="216" /><linearGradient
272 inkscape:collect="always"
273 xlink:href="#linearGradient4392"
274 id="linearGradient3479"
275 gradientUnits="userSpaceOnUse"
276 gradientTransform="matrix(1.1458395,0,0,1.1458395,-25.974994,183.42764)"
277 x1="30"
278 y1="120.07368"
279 x2="30"
280 y2="132.07368" /><linearGradient
281 inkscape:collect="always"
282 xlink:href="#linearGradient4392"
283 id="linearGradient3481"
284 gradientUnits="userSpaceOnUse"
285 gradientTransform="matrix(1.2584059,0,0,1.2584059,-27.9426,202.38775)"
286 x1="54"
287 y1="122.07368"
288 x2="54"
289 y2="130.07368" /><linearGradient
290 inkscape:collect="always"
291 xlink:href="#linearGradient4392"
292 id="linearGradient3483"
293 gradientUnits="userSpaceOnUse"
294 gradientTransform="matrix(1.1739937,0,0,1.1739937,-40.36396,212.02902)"
295 x1="150"
296 y1="120.07368"
297 x2="150"
298 y2="132.07368" /><linearGradient
299 inkscape:collect="always"
300 xlink:href="#linearGradient4392"
301 id="linearGradient3485"
302 gradientUnits="userSpaceOnUse"
303 gradientTransform="matrix(1.33333,0,0,1.33333,-31.36848,96.23245)"
304 x1="150"
305 y1="97.073685"
306 x2="150"
307 y2="107.07368" /><linearGradient
308 inkscape:collect="always"
309 xlink:href="#linearGradient4392"
310 id="linearGradient3487"
311 gradientUnits="userSpaceOnUse"
312 gradientTransform="matrix(1.1666648,0,0,1.1666669,33.00037,112.92706)"
313 x1="198"
314 y1="96.073685"
315 x2="198"
316 y2="108.07368" /><linearGradient
317 inkscape:collect="always"
318 xlink:href="#linearGradient4392"
319 id="linearGradient3489"
320 gradientUnits="userSpaceOnUse"
321 gradientTransform="translate(96,-204)"
322 x1="136"
323 y1="204"
324 x2="136"
325 y2="220" /><linearGradient
326 inkscape:collect="always"
327 xlink:href="#linearGradient4392"
328 id="linearGradient3491"
329 gradientUnits="userSpaceOnUse"
330 gradientTransform="translate(-112,48)"
331 x1="184"
332 y1="50"
333 x2="184"
334 y2="62" /><linearGradient
335 inkscape:collect="always"
336 xlink:href="#linearGradient4392"
337 id="linearGradient3493"
338 gradientUnits="userSpaceOnUse"
339 gradientTransform="translate(80,48)"
340 x1="216"
341 y1="51.999996"
342 x2="216"
343 y2="59.999996" /><linearGradient
344 inkscape:collect="always"
345 xlink:href="#linearGradient4392"
346 id="linearGradient3495"
347 gradientUnits="userSpaceOnUse"
348 gradientTransform="translate(-272,79)"
349 x1="407"
350 y1="51"
351 x2="407"
352 y2="62" /><linearGradient
353 inkscape:collect="always"
354 xlink:href="#linearGradient4392"
355 id="linearGradient3497"
356 gradientUnits="userSpaceOnUse"
357 gradientTransform="translate(-240,78)"
358 x1="407"
359 y1="51"
360 x2="407"
361 y2="62" /><linearGradient
362 inkscape:collect="always"
363 xlink:href="#linearGradient4392"
364 id="linearGradient3499"
365 gradientUnits="userSpaceOnUse"
366 gradientTransform="translate(-80,48)"
367 x1="87"
368 y1="16.999994"
369 x2="87"
370 y2="30.999994" /><linearGradient
371 inkscape:collect="always"
372 xlink:href="#linearGradient4392"
373 id="linearGradient3501"
374 gradientUnits="userSpaceOnUse"
375 gradientTransform="matrix(-1.1111083,0,0,1.1111083,715.999,-192.84664)"
376 x1="378"
377 y1="205"
378 x2="378"
379 y2="214" /><linearGradient
380 inkscape:collect="always"
381 xlink:href="#linearGradient4392"
382 id="linearGradient3503"
383 gradientUnits="userSpaceOnUse"
384 gradientTransform="translate(16,80)"
385 x1="57"
386 y1="83"
387 x2="57"
388 y2="94" /><linearGradient
389 inkscape:collect="always"
390 xlink:href="#linearGradient4392"
391 id="linearGradient3505"
392 gradientUnits="userSpaceOnUse"
393 gradientTransform="translate(48,80)"
394 x1="87"
395 y1="82"
396 x2="87"
397 y2="95" /><linearGradient
398 inkscape:collect="always"
399 xlink:href="#linearGradient4392"
400 id="linearGradient3507"
401 gradientUnits="userSpaceOnUse"
402 gradientTransform="matrix(-1,0,0,1,320,80)"
403 x1="87"
404 y1="82"
405 x2="87"
406 y2="95" /><linearGradient
407 inkscape:collect="always"
408 xlink:href="#linearGradient4392"
409 id="linearGradient3509"
410 gradientUnits="userSpaceOnUse"
411 gradientTransform="translate(112,81)"
412 x1="344"
413 y1="82"
414 x2="344"
415 y2="93" /><linearGradient
416 inkscape:collect="always"
417 xlink:href="#linearGradient4392"
418 id="linearGradient3511"
419 gradientUnits="userSpaceOnUse"
420 gradientTransform="translate(112,81)"
421 x1="375"
422 y1="82"
423 x2="375"
424 y2="93" /><linearGradient
425 inkscape:collect="always"
426 xlink:href="#linearGradient4392"
427 id="linearGradient3513"
428 gradientUnits="userSpaceOnUse"
429 gradientTransform="matrix(1.2587978,0,0,1.2587978,-391.22595,101.14297)"
430 x1="340"
431 y1="75.073685"
432 x2="340"
433 y2="84.073685" /><linearGradient
434 inkscape:collect="always"
435 xlink:href="#linearGradient4392"
436 id="linearGradient3515"
437 gradientUnits="userSpaceOnUse"
438 gradientTransform="translate(48,80)"
439 x1="87"
440 y1="82"
441 x2="87"
442 y2="95" /><linearGradient
443 inkscape:collect="always"
444 xlink:href="#linearGradient4392"
445 id="linearGradient3517"
446 gradientUnits="userSpaceOnUse"
447 gradientTransform="translate(80.11142,79.99998)"
448 x1="87"
449 y1="82"
450 x2="87"
451 y2="95" /><linearGradient
452 inkscape:collect="always"
453 xlink:href="#linearGradient4392"
454 id="linearGradient3519"
455 gradientUnits="userSpaceOnUse"
456 gradientTransform="matrix(-1,0,0,1,288,79.99999)"
457 x1="87"
458 y1="82"
459 x2="87"
460 y2="95" /><linearGradient
461 inkscape:collect="always"
462 xlink:href="#linearGradient4392"
463 id="linearGradient3521"
464 gradientUnits="userSpaceOnUse"
465 gradientTransform="translate(-16,112)"
466 x1="24"
467 y1="114"
468 x2="24"
469 y2="126" /><linearGradient
470 inkscape:collect="always"
471 xlink:href="#linearGradient4392"
472 id="linearGradient3523"
473 gradientUnits="userSpaceOnUse"
474 gradientTransform="translate(-16,112)"
475 x1="216"
476 y1="115"
477 x2="216"
478 y2="126" /><linearGradient
479 inkscape:collect="always"
480 xlink:href="#linearGradient4392"
481 id="linearGradient3525"
482 gradientUnits="userSpaceOnUse"
483 gradientTransform="translate(206,47.99999)"
484 x1="120"
485 y1="50"
486 x2="120"
487 y2="62" /><linearGradient
488 inkscape:collect="always"
489 xlink:href="#linearGradient4392"
490 id="linearGradient3527"
491 gradientUnits="userSpaceOnUse"
492 gradientTransform="translate(15,47.99999)"
493 x1="120"
494 y1="50"
495 x2="120"
496 y2="62" /><linearGradient
497 inkscape:collect="always"
498 xlink:href="#linearGradient4392"
499 id="linearGradient3529"
500 gradientUnits="userSpaceOnUse"
501 gradientTransform="translate(80.18519,49.11111)"
502 x1="120"
503 y1="50"
504 x2="120"
505 y2="62" /><linearGradient
506 inkscape:collect="always"
507 xlink:href="#linearGradient4392"
508 id="linearGradient3531"
509 gradientUnits="userSpaceOnUse"
510 gradientTransform="matrix(2,0,0,2,32,386.0001)"
511 x1="88"
512 y1="161"
513 x2="88"
514 y2="174" /><linearGradient
515 inkscape:collect="always"
516 xlink:href="#linearGradient4392"
517 id="linearGradient3533"
518 gradientUnits="userSpaceOnUse"
519 gradientTransform="matrix(0.95906074,0,0,0.83983765,-246.54178,86.44281)"
520 x1="263.14438"
521 y1="53.202732"
522 x2="263.14438"
523 y2="65.97139" /><linearGradient
524 inkscape:collect="always"
525 xlink:href="#linearGradient4392"
526 id="linearGradient3535"
527 gradientUnits="userSpaceOnUse"
528 x1="324.89481"
529 y1="49.999996"
530 x2="327.98953"
531 y2="61.999996" /><linearGradient
532 inkscape:collect="always"
533 xlink:href="#linearGradient4392"
534 id="linearGradient3537"
535 gradientUnits="userSpaceOnUse"
536 x1="324.89481"
537 y1="49.999996"
538 x2="327.98953"
539 y2="61.999996" /><linearGradient
540 inkscape:collect="always"
541 xlink:href="#linearGradient4392"
542 id="linearGradient3543"
543 gradientUnits="userSpaceOnUse"
544 gradientTransform="matrix(-1.1111083,0,0,1.1111083,683.999,-192.84664)"
545 x1="378"
546 y1="205"
547 x2="378"
548 y2="214" /><linearGradient
549 inkscape:collect="always"
550 xlink:href="#linearGradient4392"
551 id="linearGradient3545"
552 gradientUnits="userSpaceOnUse"
553 gradientTransform="matrix(1.1111083,0,0,1.1111083,-91.99896,-192.84664)"
554 x1="378"
555 y1="205"
556 x2="378"
557 y2="214" /><linearGradient
558 inkscape:collect="always"
559 xlink:href="#linearGradient4392"
560 id="linearGradient3547"
561 gradientUnits="userSpaceOnUse"
562 gradientTransform="matrix(-1,0,0,1,351.81481,49.11111)"
563 x1="120"
564 y1="50"
565 x2="120"
566 y2="62" /><linearGradient
567 inkscape:collect="always"
568 xlink:href="#linearGradient4392"
569 id="linearGradient3549"
570 gradientUnits="userSpaceOnUse"
571 gradientTransform="matrix(-1.33333,0,0,1.33333,592.467,94.82271)"
572 x1="365"
573 y1="73.073685"
574 x2="365"
575 y2="84.073685" /><linearGradient
576 inkscape:collect="always"
577 xlink:href="#linearGradient4392"
578 id="linearGradient3551"
579 gradientUnits="userSpaceOnUse"
580 gradientTransform="matrix(-1,0,0,1,480,176)"
581 x1="407.125"
582 y1="113.37494"
583 x2="407.125"
584 y2="126.38035" /><linearGradient
585 inkscape:collect="always"
586 xlink:href="#linearGradient4392"
587 id="linearGradient3553"
588 gradientUnits="userSpaceOnUse"
589 gradientTransform="translate(-208,-112.00001)"
590 x1="280"
591 y1="112"
592 x2="280"
593 y2="128" /><linearGradient
594 inkscape:collect="always"
595 xlink:href="#linearGradient4392"
596 id="linearGradient3555"
597 gradientUnits="userSpaceOnUse"
598 gradientTransform="translate(56,80)"
599 x1="57"
600 y1="83"
601 x2="57"
602 y2="94" /><linearGradient
603 inkscape:collect="always"
604 xlink:href="#linearGradient4392"
605 id="linearGradient3557"
606 gradientUnits="userSpaceOnUse"
607 gradientTransform="matrix(-1,0,0,1,448,112)"
608 x1="216"
609 y1="115"
610 x2="216"
611 y2="126" /><linearGradient
612 inkscape:collect="always"
613 xlink:href="#linearGradient4392"
614 id="linearGradient3559"
615 gradientUnits="userSpaceOnUse"
616 gradientTransform="matrix(1.1666672,0,0,1.1723864,-107.00007,208.34331)"
617 x1="126"
618 y1="96.073685"
619 x2="126"
620 y2="108.07368" /><linearGradient
621 inkscape:collect="always"
622 xlink:href="#linearGradient4392"
623 id="linearGradient3561"
624 gradientUnits="userSpaceOnUse"
625 x1="104"
626 y1="230.99998"
627 x2="104"
628 y2="232.99998" /><linearGradient
629 inkscape:collect="always"
630 xlink:href="#linearGradient4392"
631 id="linearGradient3563"
632 gradientUnits="userSpaceOnUse"
633 gradientTransform="translate(47,47.99999)"
634 x1="120"
635 y1="50"
636 x2="120"
637 y2="62" /><linearGradient
638 inkscape:collect="always"
639 xlink:href="#linearGradient4392"
640 id="linearGradient3565"
641 gradientUnits="userSpaceOnUse"
642 gradientTransform="translate(16,-3)"
643 x1="56"
644 y1="228.23837"
645 x2="56"
646 y2="242.00908" /><linearGradient
647 inkscape:collect="always"
648 xlink:href="#linearGradient4392"
649 id="linearGradient3567"
650 gradientUnits="userSpaceOnUse"
651 gradientTransform="matrix(1.33333,0,0,1.33333,143.36541,-272.06703)"
652 x1="91"
653 y1="204"
654 x2="91"
655 y2="216" /><linearGradient
656 inkscape:collect="always"
657 xlink:href="#linearGradient4392"
658 id="linearGradient3569"
659 gradientUnits="userSpaceOnUse"
660 gradientTransform="matrix(1.33333,0,0,1.33333,-112.63459,-272.06703)"
661 x1="91"
662 y1="204"
663 x2="91"
664 y2="216" /><linearGradient
665 inkscape:collect="always"
666 xlink:href="#linearGradient4392"
667 id="linearGradient3571"
668 gradientUnits="userSpaceOnUse"
669 gradientTransform="matrix(1.33333,0,0,1.33333,-80.63459,-273.06703)"
670 x1="91"
671 y1="204"
672 x2="91"
673 y2="216" /><linearGradient
674 inkscape:collect="always"
675 xlink:href="#linearGradient4392"
676 id="linearGradient3573"
677 gradientUnits="userSpaceOnUse"
678 gradientTransform="matrix(1.33333,0,0,1.33333,-80.63459,-273.06703)"
679 x1="91"
680 y1="204"
681 x2="91"
682 y2="216" /><linearGradient
683 inkscape:collect="always"
684 xlink:href="#linearGradient4392"
685 id="linearGradient3575"
686 gradientUnits="userSpaceOnUse"
687 gradientTransform="matrix(1.33333,0,0,1.33333,-79.63459,-272.06703)"
688 x1="91"
689 y1="204"
690 x2="91"
691 y2="216" /><linearGradient
692 inkscape:collect="always"
693 xlink:href="#linearGradient4392"
694 id="linearGradient3577"
695 gradientUnits="userSpaceOnUse"
696 gradientTransform="matrix(1.33333,0,0,1.33333,-16.63459,-272.06703)"
697 x1="91"
698 y1="204"
699 x2="91"
700 y2="216" /><linearGradient
701 inkscape:collect="always"
702 xlink:href="#linearGradient4392"
703 id="linearGradient3579"
704 gradientUnits="userSpaceOnUse"
705 gradientTransform="matrix(1.33333,0,0,1.33333,16.36541,-272.06703)"
706 x1="91"
707 y1="204"
708 x2="91"
709 y2="216" /><linearGradient
710 inkscape:collect="always"
711 xlink:href="#linearGradient4392"
712 id="linearGradient3581"
713 gradientUnits="userSpaceOnUse"
714 gradientTransform="matrix(1.33333,0,0,1.33333,175.36541,-272.06703)"
715 x1="91"
716 y1="204"
717 x2="91"
718 y2="216" /><linearGradient
719 inkscape:collect="always"
720 xlink:href="#linearGradient4392"
721 id="linearGradient3583"
722 gradientUnits="userSpaceOnUse"
723 gradientTransform="matrix(1.33333,0,0,1.33333,-81.63459,-245.06703)"
724 x1="91"
725 y1="208.11006"
726 x2="91"
727 y2="219.18719" /><linearGradient
728 inkscape:collect="always"
729 xlink:href="#linearGradient4392"
730 id="linearGradient3585"
731 gradientUnits="userSpaceOnUse"
732 gradientTransform="matrix(1.33333,0,0,1.33333,67.36541,-272.06703)"
733 x1="91"
734 y1="204"
735 x2="91"
736 y2="216" /><linearGradient
737 inkscape:collect="always"
738 xlink:href="#linearGradient4392"
739 id="linearGradient3587"
740 gradientUnits="userSpaceOnUse"
741 gradientTransform="matrix(1.33333,0,0,1.33333,208.36541,-272.06703)"
742 x1="91"
743 y1="204"
744 x2="91"
745 y2="216" /><linearGradient
746 inkscape:collect="always"
747 xlink:href="#linearGradient4392"
748 id="linearGradient3589"
749 gradientUnits="userSpaceOnUse"
750 gradientTransform="matrix(1.2681238,0,0,1.2681238,-425.35773,134.96337)"
751 x1="342"
752 y1="97.073685"
753 x2="342"
754 y2="108.07368" /><linearGradient
755 inkscape:collect="always"
756 xlink:href="#linearGradient4392"
757 id="linearGradient3591"
758 gradientUnits="userSpaceOnUse"
759 gradientTransform="translate(32,0)"
760 x1="72"
761 y1="32"
762 x2="72"
763 y2="47" /><linearGradient
764 inkscape:collect="always"
765 xlink:href="#linearGradient4392"
766 id="linearGradient3593"
767 gradientUnits="userSpaceOnUse"
768 gradientTransform="matrix(-1,0,0,1,208,0)"
769 x1="72"
770 y1="32"
771 x2="72"
772 y2="47" /><linearGradient
773 inkscape:collect="always"
774 xlink:href="#linearGradient4392"
775 id="linearGradient3595"
776 gradientUnits="userSpaceOnUse"
777 gradientTransform="translate(0,-14.00001)"
778 x1="264"
779 y1="114"
780 x2="264"
781 y2="121" /><linearGradient
782 inkscape:collect="always"
783 xlink:href="#linearGradient4392-45"
784 id="linearGradient3597"
785 gradientUnits="userSpaceOnUse"
786 gradientTransform="matrix(1.33333,0,0,1.33333,-479.467,254.82271)"
787 x1="365"
788 y1="73.073685"
789 x2="365"
790 y2="84.073685" /><linearGradient
791 inkscape:collect="always"
792 xlink:href="#linearGradient4392"
793 id="linearGradient3601"
794 gradientUnits="userSpaceOnUse"
795 gradientTransform="matrix(1.33333,0,0,1.33333,-479.467,254.82271)"
796 x1="365"
797 y1="73.073685"
798 x2="365"
799 y2="84.073685" /><linearGradient
800 inkscape:collect="always"
801 xlink:href="#linearGradient4392"
802 id="linearGradient3605"
803 gradientUnits="userSpaceOnUse"
804 x1="73"
805 y1="321"
806 x2="73"
807 y2="335" /><linearGradient
808 inkscape:collect="always"
809 xlink:href="#linearGradient4392"
810 id="linearGradient3607"
811 gradientUnits="userSpaceOnUse"
812 x1="69"
813 y1="323"
814 x2="69"
815 y2="333" /><linearGradient
816 inkscape:collect="always"
817 xlink:href="#linearGradient4392"
818 id="linearGradient3609"
819 gradientUnits="userSpaceOnUse"
820 x1="69"
821 y1="323"
822 x2="69"
823 y2="333" /><linearGradient
824 inkscape:collect="always"
825 xlink:href="#linearGradient4392"
826 id="linearGradient3667"
827 x1="167.75"
828 y1="32.497749"
829 x2="167.75"
830 y2="46.375"
831 gradientUnits="userSpaceOnUse" /><linearGradient
832 inkscape:collect="always"
833 xlink:href="#linearGradient4392"
834 id="linearGradient3671"
835 x1="40.166676"
836 y1="163.16667"
837 x2="40.166676"
838 y2="174.48146"
839 gradientUnits="userSpaceOnUse" /><linearGradient
840 inkscape:collect="always"
841 xlink:href="#linearGradient4392"
842 id="linearGradient3673"
843 x1="7.7296576"
844 y1="162.72966"
845 x2="7.7296576"
846 y2="174.83665"
847 gradientUnits="userSpaceOnUse" /><linearGradient
848 inkscape:collect="always"
849 xlink:href="#linearGradient4392"
850 id="linearGradient3675"
851 x1="7.7175145"
852 y1="196.31802"
853 x2="7.7175145"
854 y2="202.94867"
855 gradientUnits="userSpaceOnUse" /><linearGradient
856 inkscape:collect="always"
857 xlink:href="#linearGradient4392"
858 id="linearGradient3677"
859 x1="40.159454"
860 y1="195.87607"
861 x2="40.159454"
862 y2="203.08347"
863 gradientUnits="userSpaceOnUse" /><linearGradient
864 inkscape:collect="always"
865 xlink:href="#linearGradient4392"
866 id="linearGradient3679"
867 x1="328.75046"
868 y1="96.928932"
869 x2="328.75046"
870 y2="111.26538"
871 gradientUnits="userSpaceOnUse" /><linearGradient
872 inkscape:collect="always"
873 xlink:href="#linearGradient4392"
874 id="linearGradient3713"
875 x1="86.009781"
876 y1="129.98354"
877 x2="86.009781"
878 y2="142.15057"
879 gradientUnits="userSpaceOnUse" /><linearGradient
880 inkscape:collect="always"
881 xlink:href="#linearGradient4392"
882 id="linearGradient4491"
883 x1="266.98074"
884 y1="53.301754"
885 x2="266.98074"
886 y2="63.243984"
887 gradientUnits="userSpaceOnUse" /><linearGradient
888 inkscape:collect="always"
889 xlink:href="#linearGradient4392"
890 id="linearGradient4534"
891 x1="45"
892 y1="71.999939"
893 x2="45"
894 y2="79.999939"
895 gradientUnits="userSpaceOnUse"
896 gradientTransform="translate(0.21875,0)" /><linearGradient
897 inkscape:collect="always"
898 xlink:href="#linearGradient4392"
899 id="linearGradient4540"
900 gradientUnits="userSpaceOnUse"
901 gradientTransform="translate(10.21875,0)"
902 x1="45"
903 y1="71.999939"
904 x2="45"
905 y2="79.999939" /><linearGradient
906 id="linearGradient4392-7"><stop
907 style="stop-color:#666666;stop-opacity:1;"
908 offset="0"
909 id="stop4394-7" /><stop
910 style="stop-color:#424242;stop-opacity:1;"
911 offset="1"
912 id="stop4396-6" /></linearGradient><linearGradient
913 inkscape:collect="always"
914 xlink:href="#linearGradient4392-7"
915 id="linearGradient4540-8"
916 gradientUnits="userSpaceOnUse"
917 gradientTransform="translate(-4.1709228,8.0000007)"
918 x1="45"
919 y1="71.999939"
920 x2="45"
921 y2="79.999939" /><linearGradient
922 id="linearGradient4392-45"><stop
923 style="stop-color:#666666;stop-opacity:1;"
924 offset="0"
925 id="stop4394-8" /><stop
926 style="stop-color:#424242;stop-opacity:1;"
927 offset="1"
928 id="stop4396-68" /></linearGradient><filter
929 id="filter3224-1-7-1"
930 inkscape:label="Inner Shadow"
931 inkscape:menu="Shadows and Glows"
932 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
933 color-interpolation-filters="sRGB"
934 width="1"
935 height="1"
936 y="0"
937 x="0"><feOffset
938 id="feOffset3228-5-5-5"
939 dx="0"
940 dy="1"
941 result="result11" /><feComposite
942 id="feComposite3230-2-4-1"
943 in2="result11"
944 result="result6"
945 in="SourceGraphic"
946 operator="in" /><feFlood
947 id="feFlood3232-7-3-4"
948 result="result10"
949 in="result6"
950 flood-opacity="1"
951 flood-color="rgb(34,34,34)" /><feBlend
952 id="feBlend3234-6-3-5"
953 in2="result10"
954 mode="normal"
955 in="result6"
956 result="result12" /><feComposite
957 id="feComposite3236-1-3-5"
958 in2="SourceGraphic"
959 result="result2"
960 operator="in" /></filter><linearGradient
961 inkscape:collect="always"
962 xlink:href="#linearGradient4392-9"
963 id="linearGradient3435-5"
964 gradientUnits="userSpaceOnUse"
965 gradientTransform="matrix(2,0,0,2,93.76588,34.31226)"
966 x1="55"
967 y1="49.409008"
968 x2="55"
969 y2="63" /><linearGradient
970 id="linearGradient4392-9"><stop
971 style="stop-color:#666666;stop-opacity:1;"
972 offset="0"
973 id="stop4394-2" /><stop
974 style="stop-color:#424242;stop-opacity:1;"
975 offset="1"
976 id="stop4396-9" /></linearGradient><filter
977 id="filter3224-1-7-1-3-0"
978 inkscape:label="Inner Shadow"
979 inkscape:menu="Shadows and Glows"
980 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
981 color-interpolation-filters="sRGB"
982 width="1"
983 height="1"
984 y="0"
985 x="0"><feOffset
986 id="feOffset3228-5-5-5-70-4"
987 dx="0"
988 dy="0.69999999999999996"
989 result="result11" /><feComposite
990 id="feComposite3230-2-4-1-9-5"
991 in2="result11"
992 result="result6"
993 in="SourceGraphic"
994 operator="in" /><feFlood
995 id="feFlood3232-7-3-4-91-7"
996 result="result10"
997 in="result6"
998 flood-opacity="1"
999 flood-color="rgb(34,34,34)" /><feBlend
1000 id="feBlend3234-6-3-5-53-5"
1001 in2="result10"
1002 mode="normal"
1003 in="result6"
1004 result="result12" /><feComposite
1005 id="feComposite3236-1-3-5-3-2"
1006 in2="SourceGraphic"
1007 result="result2"
1008 operator="in" /></filter><linearGradient
1009 inkscape:collect="always"
1010 xlink:href="#linearGradient4392-0"
1011 id="linearGradient4300-5"
1012 gradientUnits="userSpaceOnUse"
1013 gradientTransform="matrix(2,0,0,2,294,181.85274)"
1014 x1="148"
1015 y1="73.073685"
1016 x2="148"
1017 y2="84.073685" /><linearGradient
1018 id="linearGradient4392-0"><stop
1019 style="stop-color:#666666;stop-opacity:1;"
1020 offset="0"
1021 id="stop4394-6" /><stop
1022 style="stop-color:#424242;stop-opacity:1;"
1023 offset="1"
1024 id="stop4396-2" /></linearGradient><filter
1025 id="filter3224-1-7-1-3-2"
1026 inkscape:label="Inner Shadow"
1027 inkscape:menu="Shadows and Glows"
1028 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1029 color-interpolation-filters="sRGB"
1030 width="1"
1031 height="1"
1032 y="0"
1033 x="0"><feOffset
1034 id="feOffset3228-5-5-5-70-5"
1035 dx="0"
1036 dy="0.69999999999999996"
1037 result="result11" /><feComposite
1038 id="feComposite3230-2-4-1-9-6"
1039 in2="result11"
1040 result="result6"
1041 in="SourceGraphic"
1042 operator="in" /><feFlood
1043 id="feFlood3232-7-3-4-91-0"
1044 result="result10"
1045 in="result6"
1046 flood-opacity="1"
1047 flood-color="rgb(34,34,34)" /><feBlend
1048 id="feBlend3234-6-3-5-53-56"
1049 in2="result10"
1050 mode="normal"
1051 in="result6"
1052 result="result12" /><feComposite
1053 id="feComposite3236-1-3-5-3-24"
1054 in2="SourceGraphic"
1055 result="result2"
1056 operator="in" /></filter><linearGradient
1057 inkscape:collect="always"
1058 xlink:href="#linearGradient4392"
1059 id="linearGradient5619"
1060 gradientUnits="userSpaceOnUse"
1061 x1="266.98074"
1062 y1="53.301754"
1063 x2="266.98074"
1064 y2="63.243984" /><linearGradient
1065 inkscape:collect="always"
1066 xlink:href="#linearGradient4392"
1067 id="linearGradient5621"
1068 gradientUnits="userSpaceOnUse"
1069 x1="86.009781"
1070 y1="129.98354"
1071 x2="86.009781"
1072 y2="142.15057" />
1073<linearGradient
1074 inkscape:collect="always"
1075 xlink:href="#linearGradient4352"
1076 id="linearGradient5632"
1077 gradientUnits="userSpaceOnUse"
1078 gradientTransform="matrix(1.8181818,0,0,2,-638.27272,-321.74989)"
1079 x1="366.95544"
1080 y1="335.06354"
1081 x2="356.00427"
1082 y2="335.08957" /><linearGradient
1083 inkscape:collect="always"
1084 xlink:href="#linearGradient4352"
1085 id="linearGradient5639"
1086 gradientUnits="userSpaceOnUse"
1087 gradientTransform="matrix(1.8181818,0,0,2,-638.27272,-321.74989)"
1088 x1="366.95544"
1089 y1="335.06354"
1090 x2="356.00427"
1091 y2="335.08957" /><linearGradient
1092 inkscape:collect="always"
1093 xlink:href="#linearGradient4392"
1094 id="linearGradient5672"
1095 gradientUnits="userSpaceOnUse"
1096 x1="17.949585"
1097 y1="577.80402"
1098 x2="17.949585"
1099 y2="604.75"
1100 gradientTransform="translate(1,-367.75001)" /><linearGradient
1101 inkscape:collect="always"
1102 xlink:href="#linearGradient4392"
1103 id="linearGradient5746"
1104 gradientUnits="userSpaceOnUse"
1105 gradientTransform="matrix(2,0,0,2,-735,-15.74989)"
1106 x1="408.47479"
1107 y1="113.77696"
1108 x2="408.47479"
1109 y2="126.90414" /><linearGradient
1110 inkscape:collect="always"
1111 xlink:href="#linearGradient4392"
1112 id="linearGradient5750"
1113 gradientUnits="userSpaceOnUse"
1114 gradientTransform="matrix(2,0,0,2,295,-185.89727)"
1115 x1="148"
1116 y1="73.073685"
1117 x2="148"
1118 y2="84.073685" /><linearGradient
1119 inkscape:collect="always"
1120 xlink:href="#linearGradient4392"
1121 id="linearGradient5760"
1122 gradientUnits="userSpaceOnUse"
1123 gradientTransform="matrix(2,0,0,2,94.76588,-333.43775)"
1124 x1="55"
1125 y1="49.409008"
1126 x2="55"
1127 y2="63" /><linearGradient
1128 inkscape:collect="always"
1129 xlink:href="#linearGradient4392-45"
1130 id="linearGradient5768"
1131 gradientUnits="userSpaceOnUse"
1132 gradientTransform="matrix(2.66666,0,0,2.66666,-957.934,141.89553)"
1133 x1="365"
1134 y1="73.073685"
1135 x2="365"
1136 y2="84.073685" /><linearGradient
1137 inkscape:collect="always"
1138 xlink:href="#linearGradient4392-3"
1139 id="linearGradient5624-9"
1140 gradientUnits="userSpaceOnUse"
1141 gradientTransform="matrix(-2,0,0,-2,1022,-175.74999)"
1142 x1="472"
1143 y1="17"
1144 x2="472"
1145 y2="31" /><linearGradient
1146 id="linearGradient4392-3"><stop
1147 style="stop-color:#666666;stop-opacity:1;"
1148 offset="0"
1149 id="stop4394-4" /><stop
1150 style="stop-color:#424242;stop-opacity:1;"
1151 offset="1"
1152 id="stop4396-1" /></linearGradient><filter
1153 id="filter3224-1-7-1-34"
1154 inkscape:label="Inner Shadow"
1155 inkscape:menu="Shadows and Glows"
1156 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1157 color-interpolation-filters="sRGB"
1158 width="1"
1159 height="1"
1160 y="0"
1161 x="0"><feOffset
1162 id="feOffset3228-5-5-5-3"
1163 dx="0"
1164 dy="1"
1165 result="result11" /><feComposite
1166 id="feComposite3230-2-4-1-1"
1167 in2="result11"
1168 result="result6"
1169 in="SourceGraphic"
1170 operator="in" /><feFlood
1171 id="feFlood3232-7-3-4-3"
1172 result="result10"
1173 in="result6"
1174 flood-opacity="1"
1175 flood-color="rgb(34,34,34)" /><feBlend
1176 id="feBlend3234-6-3-5-9"
1177 in2="result10"
1178 mode="normal"
1179 in="result6"
1180 result="result12" /><feComposite
1181 id="feComposite3236-1-3-5-1"
1182 in2="SourceGraphic"
1183 result="result2"
1184 operator="in" /></filter><linearGradient
1185 inkscape:collect="always"
1186 xlink:href="#linearGradient4392"
1187 id="linearGradient5855"
1188 gradientUnits="userSpaceOnUse"
1189 gradientTransform="matrix(-2,0,0,-2,1021,192.00002)"
1190 x1="472"
1191 y1="17"
1192 x2="472"
1193 y2="31" /><linearGradient
1194 inkscape:collect="always"
1195 xlink:href="#linearGradient4392"
1196 id="linearGradient5906"
1197 x1="593.375"
1198 y1="-45.500015"
1199 x2="593.375"
1200 y2="-31.493313"
1201 gradientUnits="userSpaceOnUse" /><linearGradient
1202 inkscape:collect="always"
1203 xlink:href="#linearGradient4392-2"
1204 id="linearGradient5906-9"
1205 x1="593.375"
1206 y1="-45.500015"
1207 x2="593.375"
1208 y2="-31.493313"
1209 gradientUnits="userSpaceOnUse" /><linearGradient
1210 id="linearGradient4392-2"><stop
1211 style="stop-color:#666666;stop-opacity:1;"
1212 offset="0"
1213 id="stop4394-1" /><stop
1214 style="stop-color:#424242;stop-opacity:1;"
1215 offset="1"
1216 id="stop4396-7" /></linearGradient><linearGradient
1217 inkscape:collect="always"
1218 xlink:href="#linearGradient4392-2"
1219 id="linearGradient5922"
1220 x1="593.375"
1221 y1="-45.500015"
1222 x2="593.375"
1223 y2="-31.493313"
1224 gradientUnits="userSpaceOnUse" /><linearGradient
1225 id="linearGradient5924"><stop
1226 style="stop-color:#666666;stop-opacity:1;"
1227 offset="0"
1228 id="stop5926" /><stop
1229 style="stop-color:#424242;stop-opacity:1;"
1230 offset="1"
1231 id="stop5928" /></linearGradient><filter
1232 id="filter3224-1-7-1-3-24"
1233 inkscape:label="Inner Shadow"
1234 inkscape:menu="Shadows and Glows"
1235 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1236 color-interpolation-filters="sRGB"
1237 width="1"
1238 height="1"
1239 y="0"
1240 x="0"><feOffset
1241 id="feOffset3228-5-5-5-70-8"
1242 dx="0"
1243 dy="0.69999999999999996"
1244 result="result11" /><feComposite
1245 id="feComposite3230-2-4-1-9-0"
1246 in2="result11"
1247 result="result6"
1248 in="SourceGraphic"
1249 operator="in" /><feFlood
1250 id="feFlood3232-7-3-4-91-5"
1251 result="result10"
1252 in="result6"
1253 flood-opacity="1"
1254 flood-color="rgb(34,34,34)" /><feBlend
1255 id="feBlend3234-6-3-5-53-2"
1256 in2="result10"
1257 mode="normal"
1258 in="result6"
1259 result="result12" /><feComposite
1260 id="feComposite3236-1-3-5-3-1"
1261 in2="SourceGraphic"
1262 result="result2"
1263 operator="in" /></filter><linearGradient
1264 inkscape:collect="always"
1265 xlink:href="#linearGradient4392-2"
1266 id="linearGradient5936"
1267 x1="593.375"
1268 y1="-45.500015"
1269 x2="593.375"
1270 y2="-31.493313"
1271 gradientUnits="userSpaceOnUse" /><linearGradient
1272 id="linearGradient5938"><stop
1273 style="stop-color:#666666;stop-opacity:1;"
1274 offset="0"
1275 id="stop5940" /><stop
1276 style="stop-color:#424242;stop-opacity:1;"
1277 offset="1"
1278 id="stop5942" /></linearGradient><filter
1279 id="filter5944"
1280 inkscape:label="Inner Shadow"
1281 inkscape:menu="Shadows and Glows"
1282 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1283 color-interpolation-filters="sRGB"
1284 width="1"
1285 height="1"
1286 y="0"
1287 x="0"><feOffset
1288 id="feOffset5946"
1289 dx="0"
1290 dy="0.69999999999999996"
1291 result="result11" /><feComposite
1292 id="feComposite5948"
1293 in2="result11"
1294 result="result6"
1295 in="SourceGraphic"
1296 operator="in" /><feFlood
1297 id="feFlood5950"
1298 result="result10"
1299 in="result6"
1300 flood-opacity="1"
1301 flood-color="rgb(34,34,34)" /><feBlend
1302 id="feBlend5952"
1303 in2="result10"
1304 mode="normal"
1305 in="result6"
1306 result="result12" /><feComposite
1307 id="feComposite5954"
1308 in2="SourceGraphic"
1309 result="result2"
1310 operator="in" /></filter><linearGradient
1311 inkscape:collect="always"
1312 xlink:href="#linearGradient4392-2"
1313 id="linearGradient5956"
1314 x1="593.375"
1315 y1="-45.500015"
1316 x2="593.375"
1317 y2="-31.493313"
1318 gradientUnits="userSpaceOnUse" /><linearGradient
1319 id="linearGradient5958"><stop
1320 style="stop-color:#666666;stop-opacity:1;"
1321 offset="0"
1322 id="stop5960" /><stop
1323 style="stop-color:#424242;stop-opacity:1;"
1324 offset="1"
1325 id="stop5962" /></linearGradient><filter
1326 id="filter5964"
1327 inkscape:label="Inner Shadow"
1328 inkscape:menu="Shadows and Glows"
1329 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1330 color-interpolation-filters="sRGB"
1331 width="1"
1332 height="1"
1333 y="0"
1334 x="0"><feOffset
1335 id="feOffset5966"
1336 dx="0"
1337 dy="0.69999999999999996"
1338 result="result11" /><feComposite
1339 id="feComposite5968"
1340 in2="result11"
1341 result="result6"
1342 in="SourceGraphic"
1343 operator="in" /><feFlood
1344 id="feFlood5970"
1345 result="result10"
1346 in="result6"
1347 flood-opacity="1"
1348 flood-color="rgb(34,34,34)" /><feBlend
1349 id="feBlend5972"
1350 in2="result10"
1351 mode="normal"
1352 in="result6"
1353 result="result12" /><feComposite
1354 id="feComposite5974"
1355 in2="SourceGraphic"
1356 result="result2"
1357 operator="in" /></filter><linearGradient
1358 inkscape:collect="always"
1359 xlink:href="#linearGradient4392-6"
1360 id="linearGradient3667-5"
1361 x1="167.75"
1362 y1="32.497749"
1363 x2="167.75"
1364 y2="46.375"
1365 gradientUnits="userSpaceOnUse" /><linearGradient
1366 id="linearGradient4392-6"><stop
1367 style="stop-color:#666666;stop-opacity:1;"
1368 offset="0"
1369 id="stop4394-64" /><stop
1370 style="stop-color:#424242;stop-opacity:1;"
1371 offset="1"
1372 id="stop4396-14" /></linearGradient><filter
1373 id="filter3224-1-7-1-3-1"
1374 inkscape:label="Inner Shadow"
1375 inkscape:menu="Shadows and Glows"
1376 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1377 color-interpolation-filters="sRGB"
1378 width="1"
1379 height="1"
1380 y="0"
1381 x="0"><feOffset
1382 id="feOffset3228-5-5-5-70-83"
1383 dx="0"
1384 dy="0.69999999999999996"
1385 result="result11" /><feComposite
1386 id="feComposite3230-2-4-1-9-4"
1387 in2="result11"
1388 result="result6"
1389 in="SourceGraphic"
1390 operator="in" /><feFlood
1391 id="feFlood3232-7-3-4-91-3"
1392 result="result10"
1393 in="result6"
1394 flood-opacity="1"
1395 flood-color="rgb(34,34,34)" /><feBlend
1396 id="feBlend3234-6-3-5-53-3"
1397 in2="result10"
1398 mode="normal"
1399 in="result6"
1400 result="result12" /><feComposite
1401 id="feComposite3236-1-3-5-3-7"
1402 in2="SourceGraphic"
1403 result="result2"
1404 operator="in" /></filter><linearGradient
1405 y2="46.375"
1406 x2="167.75"
1407 y1="32.497749"
1408 x1="167.75"
1409 gradientUnits="userSpaceOnUse"
1410 id="linearGradient6101"
1411 xlink:href="#linearGradient4392-6"
1412 inkscape:collect="always" /><linearGradient
1413 inkscape:collect="always"
1414 xlink:href="#linearGradient4392"
1415 id="linearGradient6155"
1416 gradientUnits="userSpaceOnUse"
1417 gradientTransform="matrix(2,0,0,2,93.76588,34.31226)"
1418 x1="55"
1419 y1="49.409008"
1420 x2="55"
1421 y2="63" /><linearGradient
1422 inkscape:collect="always"
1423 xlink:href="#linearGradient4392"
1424 id="linearGradient6173"
1425 gradientUnits="userSpaceOnUse"
1426 gradientTransform="matrix(2,0,0,2,-32,386.0001)"
1427 x1="88"
1428 y1="161"
1429 x2="88"
1430 y2="174" /><filter
1431 id="filter3224-1-7-1-5-0"
1432 inkscape:label="Inner Shadow"
1433 inkscape:menu="Shadows and Glows"
1434 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1435 color-interpolation-filters="sRGB"
1436 width="1"
1437 height="1"
1438 y="0"
1439 x="0"><feOffset
1440 id="feOffset3228-5-5-5-6-7"
1441 dx="0"
1442 dy="1.2"
1443 result="result11" /><feComposite
1444 id="feComposite3230-2-4-1-0-9"
1445 in2="result11"
1446 result="result6"
1447 in="SourceGraphic"
1448 operator="in" /><feFlood
1449 id="feFlood3232-7-3-4-6-7"
1450 result="result10"
1451 in="result6"
1452 flood-opacity="1"
1453 flood-color="rgb(34,34,34)" /><feBlend
1454 id="feBlend3234-6-3-5-6-4"
1455 in2="result10"
1456 mode="normal"
1457 in="result6"
1458 result="result12" /><feComposite
1459 id="feComposite3236-1-3-5-55-7"
1460 in2="SourceGraphic"
1461 result="result2"
1462 operator="in" /></filter><filter
1463 id="filter3224-1-7-1-5-0-2"
1464 inkscape:label="Inner Shadow"
1465 inkscape:menu="Shadows and Glows"
1466 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1467 color-interpolation-filters="sRGB"
1468 width="1"
1469 height="1"
1470 y="0"
1471 x="0"><feOffset
1472 id="feOffset3228-5-5-5-6-7-5"
1473 dx="0"
1474 dy="1.2"
1475 result="result11" /><feComposite
1476 id="feComposite3230-2-4-1-0-9-8"
1477 in2="result11"
1478 result="result6"
1479 in="SourceGraphic"
1480 operator="in" /><feFlood
1481 id="feFlood3232-7-3-4-6-7-0"
1482 result="result10"
1483 in="result6"
1484 flood-opacity="1"
1485 flood-color="rgb(34,34,34)" /><feBlend
1486 id="feBlend3234-6-3-5-6-4-3"
1487 in2="result10"
1488 mode="normal"
1489 in="result6"
1490 result="result12" /><feComposite
1491 id="feComposite3236-1-3-5-55-7-9"
1492 in2="SourceGraphic"
1493 result="result2"
1494 operator="in" /></filter><filter
1495 id="filter3224-1-7-1-5-0-8"
1496 inkscape:label="Inner Shadow"
1497 inkscape:menu="Shadows and Glows"
1498 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1499 color-interpolation-filters="sRGB"
1500 width="1"
1501 height="1"
1502 y="0"
1503 x="0"><feOffset
1504 id="feOffset3228-5-5-5-6-7-6"
1505 dx="0"
1506 dy="1.2"
1507 result="result11" /><feComposite
1508 id="feComposite3230-2-4-1-0-9-3"
1509 in2="result11"
1510 result="result6"
1511 in="SourceGraphic"
1512 operator="in" /><feFlood
1513 id="feFlood3232-7-3-4-6-7-1"
1514 result="result10"
1515 in="result6"
1516 flood-opacity="1"
1517 flood-color="rgb(34,34,34)" /><feBlend
1518 id="feBlend3234-6-3-5-6-4-1"
1519 in2="result10"
1520 mode="normal"
1521 in="result6"
1522 result="result12" /><feComposite
1523 id="feComposite3236-1-3-5-55-7-6"
1524 in2="SourceGraphic"
1525 result="result2"
1526 operator="in" /></filter><filter
1527 id="filter3224-1-7-1-5-0-8-5"
1528 inkscape:label="Inner Shadow"
1529 inkscape:menu="Shadows and Glows"
1530 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1531 color-interpolation-filters="sRGB"
1532 width="1"
1533 height="1"
1534 y="0"
1535 x="0"><feOffset
1536 id="feOffset3228-5-5-5-6-7-6-5"
1537 dx="0"
1538 dy="1.2"
1539 result="result11" /><feComposite
1540 id="feComposite3230-2-4-1-0-9-3-2"
1541 in2="result11"
1542 result="result6"
1543 in="SourceGraphic"
1544 operator="in" /><feFlood
1545 id="feFlood3232-7-3-4-6-7-1-1"
1546 result="result10"
1547 in="result6"
1548 flood-opacity="1"
1549 flood-color="rgb(34,34,34)" /><feBlend
1550 id="feBlend3234-6-3-5-6-4-1-6"
1551 in2="result10"
1552 mode="normal"
1553 in="result6"
1554 result="result12" /><feComposite
1555 id="feComposite3236-1-3-5-55-7-6-3"
1556 in2="SourceGraphic"
1557 result="result2"
1558 operator="in" /></filter><filter
1559 id="filter3224-1-7-1-5-0-8-7"
1560 inkscape:label="Inner Shadow"
1561 inkscape:menu="Shadows and Glows"
1562 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1563 color-interpolation-filters="sRGB"
1564 width="1"
1565 height="1"
1566 y="0"
1567 x="0"><feOffset
1568 id="feOffset3228-5-5-5-6-7-6-9"
1569 dx="0"
1570 dy="1.2"
1571 result="result11" /><feComposite
1572 id="feComposite3230-2-4-1-0-9-3-0"
1573 in2="result11"
1574 result="result6"
1575 in="SourceGraphic"
1576 operator="in" /><feFlood
1577 id="feFlood3232-7-3-4-6-7-1-3"
1578 result="result10"
1579 in="result6"
1580 flood-opacity="1"
1581 flood-color="rgb(34,34,34)" /><feBlend
1582 id="feBlend3234-6-3-5-6-4-1-1"
1583 in2="result10"
1584 mode="normal"
1585 in="result6"
1586 result="result12" /><feComposite
1587 id="feComposite3236-1-3-5-55-7-6-8"
1588 in2="SourceGraphic"
1589 result="result2"
1590 operator="in" /></filter><filter
1591 id="filter3224-1-7-1-5-0-8-7-8"
1592 inkscape:label="Inner Shadow"
1593 inkscape:menu="Shadows and Glows"
1594 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1595 color-interpolation-filters="sRGB"
1596 width="1"
1597 height="1"
1598 y="0"
1599 x="0"><feOffset
1600 id="feOffset3228-5-5-5-6-7-6-9-8"
1601 dx="0"
1602 dy="1.2"
1603 result="result11" /><feComposite
1604 id="feComposite3230-2-4-1-0-9-3-0-9"
1605 in2="result11"
1606 result="result6"
1607 in="SourceGraphic"
1608 operator="in" /><feFlood
1609 id="feFlood3232-7-3-4-6-7-1-3-0"
1610 result="result10"
1611 in="result6"
1612 flood-opacity="1"
1613 flood-color="rgb(34,34,34)" /><feBlend
1614 id="feBlend3234-6-3-5-6-4-1-1-8"
1615 in2="result10"
1616 mode="normal"
1617 in="result6"
1618 result="result12" /><feComposite
1619 id="feComposite3236-1-3-5-55-7-6-8-6"
1620 in2="SourceGraphic"
1621 result="result2"
1622 operator="in" /></filter><filter
1623 id="filter3224-1-7-1-7"
1624 inkscape:label="Inner Shadow"
1625 inkscape:menu="Shadows and Glows"
1626 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1627 color-interpolation-filters="sRGB"
1628 width="1"
1629 height="1"
1630 y="0"
1631 x="0"><feOffset
1632 id="feOffset3228-5-5-5-5"
1633 dx="0"
1634 dy="1.2"
1635 result="result11" /><feComposite
1636 id="feComposite3230-2-4-1-56"
1637 in2="result11"
1638 result="result6"
1639 in="SourceGraphic"
1640 operator="in" /><feFlood
1641 id="feFlood3232-7-3-4-7"
1642 result="result10"
1643 in="result6"
1644 flood-opacity="1"
1645 flood-color="rgb(34,34,34)" /><feBlend
1646 id="feBlend3234-6-3-5-0"
1647 in2="result10"
1648 mode="normal"
1649 in="result6"
1650 result="result12" /><feComposite
1651 id="feComposite3236-1-3-5-9"
1652 in2="SourceGraphic"
1653 result="result2"
1654 operator="in" /></filter><filter
1655 id="filter3224-1-7-1-7-9"
1656 inkscape:label="Inner Shadow"
1657 inkscape:menu="Shadows and Glows"
1658 inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
1659 color-interpolation-filters="sRGB"
1660 width="1"
1661 height="1"
1662 y="0"
1663 x="0"><feOffset
1664 id="feOffset3228-5-5-5-5-8"
1665 dx="0"
1666 dy="1.2"
1667 result="result11" /><feComposite
1668 id="feComposite3230-2-4-1-56-4"
1669 in2="result11"
1670 result="result6"
1671 in="SourceGraphic"
1672 operator="in" /><feFlood
1673 id="feFlood3232-7-3-4-7-8"
1674 result="result10"
1675 in="result6"
1676 flood-opacity="1"
1677 flood-color="rgb(34,34,34)" /><feBlend
1678 id="feBlend3234-6-3-5-0-4"
1679 in2="result10"
1680 mode="normal"
1681 in="result6"
1682 result="result12" /><feComposite
1683 id="feComposite3236-1-3-5-9-9"
1684 in2="SourceGraphic"
1685 result="result2"
1686 operator="in" /></filter></defs><sodipodi:namedview
1687 pagecolor="#d4a8a8"
1688 bordercolor="#666666"
1689 borderopacity="1"
1690 objecttolerance="10"
1691 gridtolerance="10"
1692 guidetolerance="10"
1693 inkscape:pageopacity="0"
1694 inkscape:pageshadow="2"
1695 inkscape:window-width="1466"
1696 inkscape:window-height="925"
1697 id="namedview5"
1698 showgrid="true"
1699 inkscape:showpageshadow="false"
1700 inkscape:zoom="4"
1701 inkscape:cx="212.27233"
1702 inkscape:cy="102.59658"
1703 inkscape:window-x="97"
1704 inkscape:window-y="49"
1705 inkscape:window-maximized="0"
1706 inkscape:current-layer="layer1"
1707 fit-margin-top="0"
1708 fit-margin-left="0"
1709 fit-margin-bottom="32"
1710 fit-margin-right="0"
1711 showguides="true"
1712 inkscape:guide-bbox="true"><inkscape:grid
1713 type="xygrid"
1714 id="grid2986"
1715 units="px"
1716 empspacing="16"
1717 visible="true"
1718 enabled="true"
1719 snapvisiblegridlinesonly="true"
1720 spacingx="1px"
1721 spacingy="1px"
1722 dotted="false"
1723 originx="0px"
1724 originy="0px" /></sodipodi:namedview>
1725
1726
1727<g
1728 inkscape:groupmode="layer"
1729 id="layer2"
1730 inkscape:label="Dark background"
1731 style="display:inline"
1732 transform="translate(-1,367.74999)"
1733 sodipodi:insensitive="true"><rect
1734 style="fill:#e9afaf;fill-opacity:1;stroke:none"
1735 id="rect6406"
1736 width="992"
1737 height="736"
1738 x="1"
1739 y="-367.75" /></g><g
1740 inkscape:groupmode="layer"
1741 id="layer1"
1742 inkscape:label="Shadow"
1743 style="display:inline"
1744 transform="translate(-1,367.74999)"
1745 sodipodi:insensitive="true"><path
1746 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1747 d="m 135,-363.75001 0,2 20,0 0,-2 z m 320.1875,2 c -0.107,0.30896 -0.1874,0.65374 -0.1874,1 0,1.66198 1.338,3 3,3 l 14,0 c 1.662,0 3,-1.33802 3,-3 0,-0.34626 -0.0806,-0.69104 -0.1874,-1 -0.40652,1.17402 -1.49676,2 -2.8125,2 l -14,0 c -1.31574,0 -2.40598,-0.82598 -2.8125,-2 z m 3.8125,8 c -1.108,0 -2,0.89198 -2,2 l 0,2 c 0,-1.10802 0.892,-2 2,-2 l 12,0 c 1.108,0 2,0.89198 2,2 l 0,-2 c 0,-1.10802 -0.892,-2 -2,-2 z m 3,4 c -0.554,0 -1,0.446 -1,1 0,0.55398 0.446,1 1,1 l 6,0 c 0.554,0 1,-0.44602 1,-1 0,-0.554 -0.446,-1 -1,-1 z m -325,2 0,2 4,0 4,0 8,0 0,-2 z m 325,2 c -0.554,0 -1,0.446 -1,1 0,0.55398 0.446,1 1,1 l 6,0 c 0.554,0 1,-0.44602 1,-1 0,-0.554 -0.446,-1 -1,-1 z m -331,1.875 0,2 6,6.125 18,0 c 2.216,0 4,-1.78402 4,-4 l 0,-2 c 0,2.21598 -1.784,4 -4,4 l -2,0 -8,0 -4,0 -4,0 z m 320,0.125 0,2 c 0,1.108 0.892,2 2,2 l 4,0 0,-2 -4,0 c -1.108,0 -2,-0.892 -2,-2 z m 28,0 c 0,1.108 -0.892,2 -2,2 l -4,0 0,2 4,0 c 1.108,0 2,-0.892 2,-2 z m -20,6 0,2 12,0 0,-2 z m -449.8125,39.625 c -0.0642,0.21882 -0.125,0.4551 -0.125,0.75 0,4.04252 2.61966,7.87564 5.6875,11 l 0.875,-1.125 c -3.10738,-2.95582 -5.91722,-6.6716 -6.4375,-10.625 z m 19.75,0.1875 c -0.50602,3.8783 -3.30914,7.52876 -6.375,10.4375 l 0.9375,1.0625 c 2.9932,-3.06606 5.5,-6.8215 5.5,-10.75 0,-0.27964 -0.0162,-0.53042 -0.0625,-0.75 z m 423.4375,11.1875 -1.375,1 14,10 0,-2 z m 89.25,0 -12.625,9 0,2 14,-10 z m 64,0 -12.625,9 0,2 14,-10 z m 38.75,0 -1.375,1 14,10 0,-2 z m -625.3125,2.1875 c -1.62212,1.25216 -3.10068,2.20618 -4.0625,2.8125 0.44064,0.36242 0.78162,0.82428 1.0625,1.3125 0.87208,-0.57004 1.85156,-1.23848 3,-2.125 1.21634,0.9422 2.26918,1.64192 3.1875,2.25 0.26354,-0.49164 0.57806,-0.93856 1,-1.3125 -1.01912,-0.64118 -2.52302,-1.64818 -4.1875,-2.9375 z m 445.9375,0.125 0,2 c 6.83332,0 11.23112,2.46082 14,6.6875 0,-0.74354 -0.048,-1.4538 -0.125,-2.125 -2.77424,-4.13656 -7.1214,-6.5625 -13.875,-6.5625 z m 64,0 c -6.7536,0 -11.10076,2.42596 -13.875,6.5625 -0.077,0.6712 -0.125,1.38146 -0.125,2.125 2.76888,-4.22666 7.16668,-6.6875 14,-6.6875 z m 64,0 c -6.7536,0 -11.10076,2.42596 -13.875,6.5625 -0.077,0.6712 -0.125,1.38146 -0.125,2.125 2.76888,-4.22666 7.16668,-6.6875 14,-6.6875 z m 64,0 0,2 c 6.83332,0 11.23112,2.46082 14,6.6875 0,-0.74354 -0.048,-1.4538 -0.125,-2.125 -2.77424,-4.13656 -7.1214,-6.5625 -13.875,-6.5625 z m -645.3125,3.875 c -1.37544,0 -2.4375,1.03016 -2.4375,2.3125 0,0.36992 0.0912,0.69074 0.25,1 0.39166,-0.76286 1.20882,-1.3125 2.1875,-1.3125 0.96738,0 1.77228,0.56398 2.1875,1.3125 0.1752,-0.31572 0.3125,-0.61956 0.3125,-1 0,-1.28234 -1.12458,-2.3125 -2.5,-2.3125 z m 15,0 c -1.37544,0 -2.5,1.03016 -2.5,2.3125 0,0.38044 0.1374,0.68428 0.3125,1 0.4152,-0.74852 1.2201,-1.3125 2.1875,-1.3125 0.97868,0 1.79584,0.54964 2.1875,1.3125 0.1588,-0.30926 0.25,-0.63008 0.25,-1 0,-1.28234 -1.06208,-2.3125 -2.4375,-2.3125 z m -10.125,3.3125 c -0.49264,2.08248 -2.49068,3.625 -4.875,3.625 -2.36162,0 -4.30912,-1.51004 -4.8125,-3.5625 -0.0652,0.3035 -0.125,0.61692 -0.125,0.9375 0,2.56468 2.1866,4.625 4.9375,4.625 2.7509,0 5,-2.06032 5,-4.625 0,-0.34672 -0.0478,-0.67348 -0.125,-1 z m 5.25,0.0625 c -0.0718,0.31234 -0.125,0.60588 -0.125,0.9375 0,2.56468 2.2491,4.625 5,4.625 2.7509,0 4.9375,-2.06032 4.9375,-4.625 0,-0.32058 -0.06,-0.63394 -0.125,-0.9375 -0.50338,2.05246 -2.45088,3.5625 -4.8125,3.5625 -2.36162,0 -4.35858,-1.51004 -4.875,-3.5625 z M 14,-233.75001 c -3.866,0 -7,3.134 -7,7 0,0.33546 0.0161,0.67712 0.0625,1 0.48018,-3.398 3.40696,-6 6.9375,-6 3.46616,0 6.31682,2.50512 6.875,5.8125 0.0312,-0.26896 0.125,-0.53508 0.125,-0.8125 0,-3.866 -3.134,-7 -7,-7 z m 10.9375,7.875 c -0.1766,2.1855 -0.98174,4.17042 -2.25,5.8125 l 0.75,0.75 c 0.9463,-1.61274 1.5625,-3.429 1.5625,-5.4375 0,-0.3797 -0.0251,-0.75522 -0.0625,-1.125 z m -21.875,0.25 c -0.0228,0.2897 -0.0625,0.57942 -0.0625,0.875 0,6.07512 4.92486,11 11,11 2.0945,0 4.02114,-0.60892 5.6875,-1.625 l 7.0625,7.0625 c 0.78348,0.78346 2.02902,0.78346 2.8125,0 0.6625,-0.6625 0.7079,-1.65918 0.25,-2.4375 -0.0836,0.1422 -0.129,0.31652 -0.25,0.4375 -0.78348,0.78346 -2.02902,0.78346 -2.8125,0 l -7.0625,-7.0625 c -1.66636,1.01608 -3.593,1.625 -5.6875,1.625 -5.69544,0 -10.3742,-4.3282 -10.9375,-9.875 z m 666.9375,51.875 -1,2 0,2 2,-4 z m -1,4 -1,0 -9,18 1,0 8,-16 1,0 z m -596,0 c -1.108,0 -2,0.89198 -2,2 l 0,2 c 0,-1.10802 0.892,-2 2,-2 l 16,0 c 1.108,0 2,0.89198 2,2 l 0,-2 c 0,-1.10802 -0.892,-2 -2,-2 z m 72,0 c -0.41421,0 -0.84659,0.0217 -1.25,0.0625 -0.25156,0.0318 -0.50463,0.0748 -0.75,0.125 -4.55683,0.93246 -8,4.98 -8,9.8125 0,0.34518 0.0284,0.66382 0.0625,1 0.5121,-5.04256 4.75984,-9 9.9375,-9 5.17766,0 9.4254,3.95744 9.9375,9 0.0341,-0.33618 0.0625,-0.65482 0.0625,-1 0,-4.8325 -3.44317,-8.88004 -8,-9.8125 -0.24537,-0.0502 -0.49844,-0.0932 -0.75,-0.125 -0.0805,-0.008 -0.16906,0.006 -0.25,0 -0.33617,-0.0342 -0.65482,-0.0625 -1,-0.0625 z m 116,0 c -1.108,0 -2,0.892 -2,2 l 0,2 c 0,-1.108 0.892,-2 2,-2 l 1,0 4,0 19,0 c 1.108,0 2,0.892 2,2 l 0,-2 c 0,-1.108 -0.892,-2 -2,-2 z m 64.0625,0 c -1.108,0 -2,0.892 -2,2 l 0,2 c 0,-1.108 0.892,-2 2,-2 l 19,0 4,0 1,0 c 1.108,0 2,0.892 2,2 l 0,-2 c 0,-1.108 -0.892,-2 -2,-2 z m 63.9375,2 c -1.108,0 -2,2 -2,2 l 0,2 c 0,-1.108 0.892,-2 2,-2 l 24,0 c 1.108,0 2,0.892 2,2 l 0,-2 c 0,-1.108 -0.892,-2 -2,-2 z m 64,0 c -1.108,0 -2,2 -2,2 l 0,2 c 0,-1.108 0.892,-2 2,-2 l 24,0 c 1.108,0 2,0.892 2,2 l 0,-2 c 0,-1.108 -0.892,-2 -2,-2 z m 192,-2 c -1.108,0 -2,0.89198 -2,2 l 0,2 c 0,-1.10802 0.892,-2 2,-2 l 1,0 7,0 1,0 7,0 2,0 1,-2 -3,0 -8,0 z m 26,0.5625 0,1.4375 1.4375,0 c -0.3537,-0.60466 -0.83286,-1.0838 -1.4375,-1.4375 z m -474,1.4375 c -1.108,0 -2,0.89198 -2,2 l 0,2 c 0,-1.10802 0.892,-2 2,-2 l 3,0 4,0 17,0 c 1.108,0 2,0.89198 2,2 l 0,-2 c 0,-1.10802 -0.892,-2 -2,-2 z m -192,2 0,2 2,0 6,0 4,0 10,0 2,0 0,-2 z m 257,0 c -0.554,0 -1,0.446 -1,1 0,0.48474 0.0888,1.06892 1.125,1 l 0.875,0 0,-2 -0.875,0 c -0.0514,0.004 -0.0782,-3e-4 -0.125,0 z m 3,0 0,2 1,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 z m 79.0625,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 1,0 0,-2 z m 3,0 0,2 0.875,0 c 1.0362,0.069 1.125,-0.51526 1.125,-1 0,-0.554 -0.446,-1 -1,-1 -0.0468,-3e-4 -0.0736,0.004 -0.125,0 z m 235.9375,0 c -0.37224,0 -0.70936,0.0608 -1.0625,0.125 -1.0136,0.2827 -1.85708,0.97964 -2.375,1.875 l 3.4375,0 20,0 3.4375,0 c -0.51792,-0.89536 -1.3614,-1.5923 -2.375,-1.875 -0.33786,-0.0942 -0.69156,-0.125 -1.0625,-0.125 z m 88,0 0,2 2,0 0,-2 z m -471,2 c -0.554,0 -1,0.44598 -1,1 0.1614,1.15406 0.6222,0.99248 2,1 l 0,-2 -0.875,0 c -0.0526,-8.6e-4 -0.077,0.002 -0.125,0 z m 3,0 0,2 1,0 c 0.554,0 1,-0.446 1,-1 0,-0.55402 -1.554,-1 -1,-1 z m -115,1 -9,9 -2.8125,-2.8125 -1.875,-1.875 -1,1 2.875,2.875 2.8125,2.8125 10,-10 z m -81,1 0,2 6,0 0,-2 z m 394,2 6,8 6,-8 -1.5,0 -4.5,6 -4.5,-6 z m 52,0 6,8 6,-8 -1.5,0 -4.5,6 -4.5,-6 z m 218,-2 0,2 2,0 0,-2 z m -654,2 0,2 10,0 0,-2 z m 122.125,1 c -0.0574,0.33316 -0.125,0.65048 -0.125,1 0,3.3137 2.6863,6 6,6 3.3137,0 6,-2.6863 6,-6 0,-0.34952 -0.0676,-0.66684 -0.125,-1 -0.48643,2.82528 -2.91083,5 -5.875,5 -2.96417,0 -5.38857,-2.17472 -5.875,-5 z m -6.0625,0.25 c -0.015,0.24518 -0.0625,0.50106 -0.0625,0.75 0,6.6274 5.37258,12 12,12 6.62742,0 12,-5.3726 12,-12 0,-0.24894 -0.0476,-0.50482 -0.0625,-0.75 -0.54764,5.39254 -4.65021,9.68238 -9.9375,10.5625 -0.32549,0.0666 -0.66383,0.0908 -1,0.125 -0.32478,0.0264 -0.66842,0.0624 -1,0.0624 -0.33158,0 -0.67522,-0.0364 -1,-0.0624 -0.0828,-0.008 -0.16786,0.01 -0.25,0 -0.25513,-0.026 -0.49985,-0.0834 -0.75,-0.125 -5.28729,-0.88012 -9.38986,-5.16996 -9.9375,-10.5625 z m 379.9375,0.75 0,2 c 0,3.324 2.676,6 6,6 l 20,0 c 3.324,0 6,-2.676 6,-6 l 0,-2 c 0,3.324 -2.676,6 -6,6 l -20,0 c -3.324,0 -6,-2.676 -6,-6 z m 64,0 0,2 c 0,3.324 2.676,6 6,6 l 20,0 c 3.324,0 6,-2.676 6,-6 l 0,-2 c 0,3.324 -2.676,6 -6,6 l -20,0 c -3.324,0 -6,-2.676 -6,-6 z m 94,0 0,2 2,0 0,-2 z m -384,0.8125 -9.1875,9.1875 1.6875,0 c 0.0268,-0.0356 0.0298,-0.0924 0.0624,-0.125 l 7.4375,-7.375 0,-1.6875 z m 36.0625,0 0,1.6875 7.4375,7.375 c 0.0326,0.0326 0.0358,0.0894 0.0624,0.125 l 1.6875,0 -9.1875,-9.1875 z M 7,-155.75001 l 0,2 6,0 0,-2 z m 643.3125,1.9375 c -0.1034,0.036 -0.1964,0.0624 -0.3125,0.0624 l -1,0 -2,0 -1,0 c -0.554,0 -1,0.446 -1,1 0,0.55398 0.446,1 1,1 l 3,0 1,0 c 0.554,0 1,-0.44602 1,-1 0,-0.3682 -0.32938,-0.8876 -0.625,-1.0625 -0.014,-0.008 -0.0494,0.006 -0.0624,0 z M 17,-153.75001 l 0,2 10,0 0,-2 z m 52,0 0,2 c 0,2.1814 1.8186,4 4,4 l 16,0 c 2.1814,0 4,-1.8186 4,-4 l 0,-2 c 0,2.1814 -1.8186,4 -4,4 l -16,0 c -2.1814,0 -4,-1.8186 -4,-4 z m 193,0 c -0.554,0 -1,0.446 -1,1 0,0.55398 0.446,1 1,1 l 4,0 c 0.554,0 1,-0.44602 1,-1 0,-0.554 -0.24356,-1.0562 -1,-1 l -1,0 -2,0 z m 81.625,0 c -0.38762,0.1434 -0.5625,0.5845 -0.5625,1 0,0.554 0.446,1 1,1 l 4,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -1,0 -2,0 -1,0 c -0.189,-0.014 -0.3083,-0.0478 -0.4375,0 z m 41.375,2 0,2 c 0,2.1814 1.8186,4 4,4 l 24,0 c 2.1814,0 4,-1.8186 4,-4 l 0,-2 c 0,2.1814 -1.8186,4 -4,4 l -24,0 c -2.1814,0 -4,-1.8186 -4,-4 z m 64,0 0,2 c 0,2.1814 1.8186,4 4,4 l 24,0 c 2.1814,0 4,-1.8186 4,-4 l 0,-2 c 0,2.1814 -1.8186,4 -4,4 l -24,0 c -2.1814,0 -4,-1.8186 -4,-4 z m 192,-2 0,2 c 0,2.18138 1.8186,4 4,4 l 8,0 1,-2 -9,0 c -2.1814,0 -4,-1.81862 -4,-4 z m 30,0 0,2 1.4375,0 0.5625,0 0,-2 z m -384,1.25 -4.6875,4.75 1.25,0 3.4375,-3.5 z m 36.0625,0 0,1.25 3.4375,3.5 1.25,0 z m -320.0625,0.75 0,2 c 0,1.10798 0.892,2 2,2 l 24,0 c 1.108,0 2,-0.89202 2,-2 l 0,-2 c 0,1.10798 -0.892,2 -2,2 l -24,0 c -1.108,0 -2,-0.89202 -2,-2 z m 190,0 0,2 c 0,2.1814 1.8186,4 4,4 l 24,0 c 2.1814,0 4,-1.8186 4,-4 l 0,-2 c 0,2.1814 -1.8186,4 -4,4 l -24,0 c -2.1814,0 -4,-1.8186 -4,-4 z m 7,0 c -0.554,0 -1,0.44598 -1,1 0,0.554 0.446,1 1,1 l 4,0 c 0.554,0 1,-0.446 1,-1 0,-0.55402 -0.23842,-1 -1,-1 l -1,0 -2,0 z m 57,2 0,2 c 0,2.18138 1.8186,4 4,4 l 24,0 c 2.1814,0 4,-1.81862 4,-4 l 0,-0.75 c 0.0656,-0.1786 0.0426,-0.3443 0,-0.5 l 0,-0.75 c 0,2.18138 -1.8186,4 -4,4 l -1.4375,0 -1.25,0 -2.8125,0 -1.6875,0 -6.75,0 -10.0625,0 c -2.1814,0 -4,-1.81862 -4,-4 z m 64.0625,0 0,0.75 c -0.0426,0.1558 -0.0656,0.3214 0,0.5 l 0,0.75 c 0,2.1814 1.8186,4 4,4 l 24,0 c 2.1814,0 4,-1.8186 4,-4 l 0,-2 c 0,2.1814 -1.8186,4 -4,4 l -14.0625,0 -2.75,0 -1.6875,0 -2.8125,0 -1.25,0 -1.4375,0 c -2.1814,0 -4,-1.8186 -4,-4 z m 336.9375,0 -3,6 -3,0 -1,2 4,0 3,-6 3,0 0,-2 -2,0 z m 5,0 0,2 2,0 0,-2 z m 4,0 0,2 2,0 0,-2 z m 4,0 0,1.4375 c 0.60464,-0.35372 1.0838,-0.83286 1.4375,-1.4375 z m -391,44 c -0.554,0 -1,0.44598 -1,1 0,0.554 0.446,1 1,1 l 5,0 0,-2 z m 127.9375,0 -0.1874,0.6875 -6,0 -4.8125,17.3125 -5.4375,0 -0.5625,2 6,0 4.8125,-17.3125 6,0 0.625,-2.6875 -0.4375,0 z m -318.375,0.0624 -0.5,1.9375 -3.1875,0 -4.125,16.0625 0.5,0 3.625,-14.0625 3.1875,0 1,-3.9375 z m 300.625,0.625 -0.4375,2 5.4375,0 0.5625,-2 z m -374.0625,1.3126 c -0.43368,0.0254 -0.84056,0.0744 -1.1875,0.125 l 0,2 c 0.34694,-0.0506 0.75382,-0.0996 1.1875,-0.125 0.43368,-0.0252 0.84524,2e-5 1.25,0 0.49152,2e-5 0.9749,0.049 1.4375,0.125 0.46258,0.0506 0.84056,0.1724 1.1875,0.375 0.34694,0.1772 0.61012,0.39556 0.8125,0.75 0.0506,0.0822 0.0862,0.21168 0.125,0.3125 0.1106,-0.29132 0.1875,-0.58052 0.1875,-0.9375 0,-0.55698 -0.10998,-1.04584 -0.3125,-1.375 -0.20238,-0.35444 -0.46556,-0.5728 -0.8125,-0.75 -0.34694,-0.2026 -0.72492,-0.3244 -1.1875,-0.375 -0.4626,-0.076 -0.94598,-0.125 -1.4375,-0.125 -0.40476,2e-5 -0.81632,-0.0252 -1.25,0 z m 62.25,0 -0.5,2 2.6875,0 0.5,-2 z m 208.625,1 c 0,0.554 -0.446,1 -1,1 l -1,0 -4,0 0,2 5,0 c 0.554,0 1,-0.446 1,-1 z m -260.75,2.0625 c -0.126,0.73254 -0.4229,1.38816 -0.875,2 -0.60716,0.86082 -1.39668,1.55616 -2.4375,2.0625 0.67696,0.21642 1.24742,0.47408 1.75,0.75 0.24546,-0.2493 0.48512,-0.52556 0.6875,-0.8125 0.63606,-0.8608 0.93748,-1.8235 0.9375,-2.9375 0,-0.3671 -0.001,-0.69918 -0.0625,-1.0625 z m 298.9375,0.1874 c -0.38458,0.86222 -0.2642,1.92328 0.4375,2.625 l 3.0625,3.0625 1,-1 -4.0625,-4.0625 c -0.1918,-0.1918 -0.32686,-0.3914 -0.4375,-0.625 z m 15.5625,0 c -0.1106,0.2336 -0.24574,0.43322 -0.4375,0.625 l -4.0625,4.0626 1,1 3.0625,-3.0625 c 0.7017,-0.70172 0.82208,-1.76278 0.4375,-2.625 z m -61.75,1.75 0,2 c 0,0.554 0.446,1 1,1 l 6,0 c 0.554,0 1,-0.446 1,-1 0,-0.55402 -0.446,-1 -1,-1 l -5,0 -1,0 c -0.554,0 -1,-0.446 -1,-1 z m -17.8125,0.25 c -0.38458,0.86222 -0.2642,1.92328 0.4375,2.625 l 3.0625,3.0625 1,-1 -4.0625,-4.0625 c -0.1918,-0.1918 -0.32686,-0.3914 -0.4375,-0.625 z m 15.5625,0 c -0.1106,0.2336 -0.24574,0.43322 -0.4375,0.625 l -4.0625,4.0626 1,1 3.0625,-3.0625 c 0.7017,-0.70172 0.82208,-1.76278 0.4375,-2.625 z m -139.75,3.6876 0,2 c 0,0 0.1636,2.5764 0.4375,3.6875 0.27388,1.11108 0.71772,2.09218 1.375,2.875 0.6573,0.7828 1.52952,1.3832 2.625,1.8125 1.12288,0.40402 2.48174,0.5625 4.125,0.5625 1.6706,0 3.06462,-0.1584 4.1875,-0.5625 1.12286,-0.4293 2.0653,-1.0297 2.75,-1.8125 0.68466,-0.78282 1.1636,-1.76392 1.4375,-2.875 0.27394,-1.1111 0.37498,-2.3239 0.375,-3.6875 l 0,-2 c -2e-5,1.3636 -0.10106,2.5764 -0.375,3.6875 -0.2739,1.11108 -0.75284,2.09218 -1.4375,2.875 -0.6847,0.7828 -1.62714,1.3832 -2.75,1.8125 -1.12288,0.4041 -2.5169,0.5625 -4.1875,0.5625 -1.64326,0 -3.00212,-0.1584 -4.125,-0.5625 -1.09548,-0.4293 -1.9677,-1.0297 -2.625,-1.8125 -0.65728,-0.78282 -1.10112,-1.76392 -1.375,-2.875 -0.2739,-1.1111 -0.4375,-2.3239 -0.4375,-3.6875 z m -122.0625,0.4375 0,2 2.875,0 c 1.38776,2e-5 2.44046,0.30616 3.25,0.8125 0.58546,0.3359 0.9506,0.84108 1.125,1.5 0.0826,-0.31614 0.125,-0.66204 0.125,-1.0625 0,-1.1393 -0.41156,-1.95646 -1.25,-2.4375 -0.80954,-0.50634 -1.86224,-0.81248 -3.25,-0.8125 z m 318.0625,1.875 -4.125,4.0625 c -0.90654,0.90654 -2.34346,0.90654 -3.25,0 -0.20484,-0.20484 -0.32524,-0.4358 -0.4375,-0.6875 -0.41236,0.8707 -0.27728,1.97272 0.4375,2.6875 0.90654,0.90654 2.34346,0.90654 3.25,0 l 4.125,-4.0625 4.0625,4.0625 c 0.90654,0.90654 2.34346,0.90654 3.25,0 0.71478,-0.71478 0.84986,-1.8168 0.4375,-2.6875 -0.1122,0.2517 -0.23266,0.48266 -0.4375,0.6875 -0.90654,0.90654 -2.34346,0.90654 -3.25,0 z m -64,2 -4.125,4.0625 c -0.90654,0.90654 -2.34346,0.90654 -3.25,0 -0.20484,-0.20484 -0.32524,-0.4358 -0.4375,-0.6875 -0.41236,0.8707 -0.27728,1.97272 0.4375,2.6875 0.90654,0.90654 2.34346,0.90654 3.25,0 l 4.125,-4.0625 4.0625,4.0625 c 0.90654,0.90654 2.34346,0.90654 3.25,0 0.71478,-0.71478 0.84986,-1.8168 0.4375,-2.6875 -0.1122,0.2517 -0.23266,0.48266 -0.4375,0.6875 -0.90654,0.90654 -2.34346,0.90654 -3.25,0 z m -241.5,0.5625 c -0.1118,0.896 -0.365,1.7007 -0.75,2.375 -0.54934,0.93676 -1.29592,1.66768 -2.25,2.25 -0.9252,0.557 -2.01146,0.99682 -3.3125,1.25 -1.27214,0.2279 -2.6505,0.3125 -4.125,0.3125 l -7.5,0 0,2 7.5,0 c 1.4745,0 2.85286,-0.0846 4.125,-0.3125 1.30104,-0.25318 2.3873,-0.693 3.3125,-1.25 0.95408,-0.58232 1.70066,-1.31324 2.25,-2.25 0.5493,-0.96208 0.81248,-2.1447 0.8125,-3.5625 0,-0.27216 -0.0207,-0.54564 -0.0625,-0.8125 z m 316.5,0.1874 c -0.554,0 -1,0.44598 -1,1 0,0.554 0.48562,1.20574 1,1 l 5,0 0,-2 z m 59.5,1.3125 -1,0.9375 2.875,2.9375 0.9375,-1 z m 9.625,0 -2.875,2.875 1,1 2.875,-2.9375 z M 351,-86.75001 c 0,0.554 -0.446,1 -1,1 l -1,0 -4,0 0,2 5,0 c 0.554,0 1,-0.446 1,-1 z m -266.5625,1.0625 -0.5,1.9375 -10.6875,0 -0.5625,2 11.25,0 1,-3.9375 z M 388,-83.75001 c -0.554,0 -1,0.44598 -1,1 0,0.554 0.446,1 1,1 l 12,0 c 0.554,0 1,-0.446 1,-1 0,-0.55402 -0.446,-1 -1,-1 z m 20.25,0.1874 -3.8125,3.9375 -1,-1 -0.9375,1 1.9375,2 3.8125,-3.9375 3.9375,3.9375 1.9375,-2 -1,-1 -0.9375,1 z m -65.25,0.8125 0,2 c 0,0.554 0.446,1 1,1 l 6,0 c 0.554,0 1,-0.446 1,-1 0,-0.55402 -0.446,-1 -1,-1 l -5,0 -1,0 c -0.554,0 -1,-0.446 -1,-1 z m -207,1 c -0.554,0 -1,0.44598 -1,1 0,0.554 0.446,1 1,1 l 20,0 c 0.554,0 1,-0.446 1,-1 0,-0.55402 -0.446,-1 -1,-1 z m -128,42 c -0.554,0 -1,0.446 -1,1 0,0.55398 0.446,1 1,1 l 1,0 0,-2 z m 8,0 c -0.554,0 -1,0.446 -1,1 0,0.55398 0.446,1 1,1 l 12,0 c 0.554,0 1,-0.44602 1,-1 0,-0.554 -0.446,-1 -1,-1 z m 54,0 c -0.554,0 -1,0.446 -1,1 0,0.55398 0.446,1 1,1 l 12,0 c 0.554,0 1,-0.44602 1,-1 0,-0.554 -0.446,-1 -1,-1 z m 20,0 c 0,0 -1,0.446 -1,1 0,0.48474 1.19869,0.90706 1.125,1 l 0.875,0 0,-2 -0.875,0 z m 56,0 c -0.554,0 -1,0.44598 -1,1 0,0.554 0.446,1 1,1 l 12,0 c 0.554,0 1,-0.446 1,-1 0,-0.55402 -0.446,-1 -1,-1 z m 50,0 c -0.554,0 -1,0.44598 -1,1 0,0.554 0.446,1 1,1 l 12,0 c 0.554,0 1,-0.446 1,-1 0,-0.55402 -0.446,-1 -1,-1 z m 723,0 0,2 2,0 0,-2 z m 54,0 0,2 2,0 0,-2 z m -709,2 c -0.55228,0 -1,0.4477 -1,1 0,0.41422 0.26608,0.7857 0.625,0.9375 0.1196,0.0506 0.23694,0.0624 0.375,0.0624 0.55228,0 1,-0.44772 1,-1 0,-0.5523 -0.44772,-1 -1,-1 z m 4,0 c -0.138,0 -0.25536,0.012 -0.375,0.0624 -0.35892,0.1518 -0.625,0.52328 -0.625,0.9375 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.5523 -0.44772,-1 -1,-1 z m 8,0 c -0.554,0 -1,0.4113 -1,0.9375 l 0,0.125 c 0,0.52618 0.446,0.9375 1,0.9375 l 6,0 4,0 c 0.554,0 1,-0.41132 1,-0.9375 l 0,-0.125 c 0,-0.5262 -0.446,-0.9375 -1,-0.9375 z m 74,0 c 0.554,0 1,0.4113 1,0.9375 l 0,0.125 c 0,0.52618 -0.446,0.9375 -1,0.9375 l -4,0 -6,0 c -0.554,0 -1,-0.41132 -1,-0.9375 l 0,-0.125 c 0,-0.5262 0.446,-0.9375 1,-0.9375 z m -18,0 c 0.55228,0 1,0.4477 1,1 0,0.55228 -0.44772,1 -1,1 -0.55228,0 -1,-0.44772 -1,-1 0,-0.5523 0.44772,-1 1,-1 z m -4,0 c 0.55228,0 1,0.4477 1,1 0,0.55228 -0.44772,1 -1,1 -0.55228,0 -1,-0.44772 -1,-1 0,-0.5523 0.44772,-1 1,-1 z m 82,0 c 0.55228,0 1,0.4477 1,1 0,0.55228 -0.44772,1 -1,1 -0.55228,0 -1,-0.44772 -1,-1 0,-0.5523 0.44772,-1 1,-1 z m -4,0 c 0.55228,0 1,0.4477 1,1 0,0.55228 -0.44772,1 -1,1 -0.55228,0 -1,-0.44772 -1,-1 0,-0.5523 0.44772,-1 1,-1 z m -8,0 c 0.554,0 1,0.4113 1,0.9375 l 0,0.125 c 0,0.52618 -1.554,0.9375 -1,0.9375 l -6,0 -4,0 c -0.554,0 -1,-0.41132 -1,-0.9375 l 0,-0.125 c 0,-0.5262 0.446,-0.9375 1,-0.9375 z m 54,0 c -0.554,0 -1,0.41132 -1,0.9375 l 0,0.125 c 0,0.52618 0.446,0.9375 1,0.9375 l 4,0 6,0 c 0.554,0 1,-0.41132 1,-0.9375 l 0,-0.125 c 0,-0.52618 -0.446,-0.9375 -1,-0.9375 z m 18,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 171,0 0,2 14,0 0,-2 z m 67.75,0 0,2 16.1875,0 0,-2 z m 70.25,0 0,2 14,0 0,-2 z m 54,0 0,2 24,0 0,-2 z m 86,0 0,2 2,0 0,-2 z m 54,0 0,2 2,0 0,-2 z m -843.875,1 c -0.0822,0.31952 -0.125,0.65482 -0.125,1 0,2.20912 1.79086,4 4,4 2.20914,0 4,-1.79088 4,-4 0,-0.34518 -0.0428,-0.68048 -0.125,-1 -0.44393,1.7254 -2.01104,3 -3.875,3 -1.86396,0 -3.43107,-1.2746 -3.875,-3 z m 80,0 c -0.0822,0.31952 -0.125,0.65482 -0.125,1 0,2.20912 1.79086,4 4,4 2.20914,0 4,-1.79088 4,-4 0,-0.34518 -0.0428,-0.68048 -0.125,-1 -0.44392,1.7254 -2.01104,3 -3.875,3 -1.86396,0 -3.43108,-1.2746 -3.875,-3 z m -197.125,1 c -0.554,0 -1,0.446 -1,1 0,0.55398 0.446,1 1,1 l 12,0 c 0.554,0 1,-0.44602 1,-1 0,-0.554 -0.446,-1 -1,-1 z m 54,0 c -0.554,0 -1,0.446 -1,1 0,0.55398 0.446,1 1,1 l 12,0 c 0.554,0 1,-0.44602 1,-1 0,-0.554 -0.446,-1 -1,-1 z m 76,0 c -0.554,0 -1,0.44598 -1,1 0,0.554 0.446,1 1,1 l 12,0 c 0.554,0 1,-0.446 1,-1 0,-0.55402 -0.446,-1 -1,-1 z m 50,0 c -0.554,0 -1,0.44598 -1,1 0,0.554 0.446,1 1,1 l 12,0 c 0.554,0 1,-0.446 1,-1 0,-0.55402 -0.446,-1 -1,-1 z m 715.125,1 c -0.0574,0.33316 -0.125,0.65048 -0.125,1 0,3.3137 2.6863,6 6,6 l 0,-2 c -2.96418,0 -5.38856,-2.17472 -5.875,-5 z m 54,0 c -0.0574,0.33316 -0.125,0.65048 -0.125,1 0,3.3137 2.6863,6 6,6 l 0,-2 c -2.96418,0 -5.38856,-2.17472 -5.875,-5 z m -448.25,0.125 c -0.079,0.33192 -0.125,0.66 -0.125,1 0,2.4908 2.23904,4.50914 5.0625,4.625 0.22818,-0.7101 0.4048,-1.36952 0.5,-2 -0.0876,0.002 -0.1594,0 -0.25,0 -2.55268,0 -4.66902,-1.5407 -5.1875,-3.625 z m 16,0 c -0.079,0.33 -0.125,0.66 -0.125,1 0,2.49082 2.23904,4.50914 5.0625,4.625 0.22758,-0.70226 0.4048,-1.37798 0.5,-2 -0.093,0.002 -0.154,0 -0.25,0 -2.55268,0 -4.66902,-1.5407 -5.1875,-3.625 z m -5.5625,0.6875 c -0.65798,6.08074 -4.77536,9.8842 -7.875,11.4375 -0.71906,0.92964 -1.60386,1.86798 -2.6875,2.8125 2.66666,0 10.625,-4.6403 10.625,-13.9375 0,-0.1078 -0.0544,-0.20508 -0.0624,-0.3125 z m 16,0 c -0.65144,6.07564 -4.76304,9.8376 -7.875,11.375 -0.71932,0.92592 -1.60162,1.86602 -2.6875,2.8125 2.74932,0 10.625,-4.57778 10.625,-13.875 0,-0.1078 -0.0544,-0.20528 -0.0624,-0.3125 z M 276,-33.75001 c -0.554,0 -1,0.4113 -1,0.9375 l 0,0.125 c 0,0.52618 0.446,0.9375 1,0.9375 l 6,0 c 0.554,0 1,-0.41132 1,-0.9375 l 0,-0.125 c 0,-0.5262 -0.446,-0.9375 -1,-0.9375 z m 70,0 c 0.554,0 1,0.4113 1,0.9375 l 0,0.125 c 0,0.52618 -0.446,0.9375 -1,0.9375 l -6,0 c -0.554,0 -1,-0.41132 -1,-0.9375 l 0,-0.125 c 0,-0.5262 0.446,-0.9375 1,-0.9375 z m 52,0 c 0.554,0 1,0.4113 1,0.9375 l 0,0.125 c 0,0.52618 -0.446,0.9375 -1,0.9375 l -6,0 c -0.554,0 -1,-0.41132 -1,-0.9375 l 0,-0.125 c 0,-0.5262 0.446,-0.9375 1,-0.9375 z m 58,0 c -0.554,0 -1,0.41132 -1,0.9375 l 0,0.125 c 0,0.52618 0.446,0.9375 1,0.9375 l 6,0 c 0.554,0 1,-0.41132 1,-0.9375 l 0,-0.125 c 0,-0.52618 -0.446,-0.9375 -1,-0.9375 z m -447,1 0,2 c 0,0.55398 0.446,1 1,1 0.554,0 1,-0.44602 1,-1 l 0,-2 c 0,0.55398 -0.446,1 -1,1 -0.554,0 -1,-0.44602 -1,-1 z m 82,0 0,2 c 0,0.55398 0.446,1 1,1 0.554,0 1,-0.44602 1,-1 l 0,-2 c 0,0.55398 -0.446,1 -1,1 -0.554,0 -1,-0.44602 -1,-1 z m 554,1 0,2 18,0 4,0 0,-2 z m 130,0 0,2 4,0 18,0 0,-2 z m 62,0 0,2 24,0 0,-2 z m -128.3125,0.0624 0,2 4.0625,0 16.1875,0 4.0625,0 0,-2 z m -448.4375,1.9376 -1.25,0.9375 0,0.125 4,2.9375 0,-2 z m 2.75,2 5,0 c 0.1386,0 0.25528,-0.016 0.375,-0.0624 0.35916,-0.1404 0.625,-0.48036 0.625,-0.875 l 0,-0.125 c 0,-0.1316 -0.012,-0.26244 -0.0624,-0.375 -0.1514,-0.33766 -0.522,-0.5625 -0.9375,-0.5625 l -5,0 0,2 z m 13,-2 c -0.554,0 -1,0.4113 -1,0.9375 l 0,0.125 c 0,0.52618 0.446,0.9375 1,0.9375 l 6,0 4,0 c 0.554,0 1,-0.41132 1,-0.9375 l 0,-0.125 c 0,-0.5262 -0.446,-0.9375 -1,-0.9375 z m 74,0 c 0.554,0 1,0.4113 1,0.9375 l 0,0.125 c 0,0.52618 -0.446,0.9375 -1,0.9375 l -4,0 -6,0 c -0.554,0 -1,-0.41132 -1,-0.9375 l 0,-0.125 c 0,-0.5262 0.446,-0.9375 1,-0.9375 z m -18.25,0 1.25,0.9375 0,0.125 -4,2.9375 0,-2 z m -2.75,2 -5,0 c -0.55274,0 -1,-0.36074 -1,-0.9375 l 0,-0.125 c 0,-0.5262 0.44726,-0.9375 1,-0.9375 l 5,0 z m 85.1875,-2 c 0.5787,0 1.0625,0.4113 1.0625,0.9375 l 0,0.125 c 0,0.8681 -0.4838,0.9375 -1.0625,0.9375 l -5.1875,0 0,-2 z m -5.1875,2 0,2 -4.1875,-2.9375 0,-0.125 1.3125,-0.9375 z m -11,-2 c 0.554,0 1,0.4113 1,0.9375 l 0,0.125 c 0,0.52618 -1.554,0.9375 -1,0.9375 l -6,0 -4,0 c -0.554,0 -1,-0.41132 -1,-0.9375 l 0,-0.125 c 0,-0.5262 0.446,-0.9375 1,-0.9375 z m 54,0 c -0.554,0 -1,0.41132 -1,0.9375 l 0,0.125 c 0,0.52618 0.446,0.9375 1,0.9375 l 4,0 6,0 c 0.554,0 1,-0.41132 1,-0.9375 l 0,-0.125 c 0,-0.52618 -0.446,-0.9375 -1,-0.9375 z m 18,0 c -0.554,0 -1,0.41132 -1,0.9375 l 0,0.125 c 0,0.52618 0.446,0.9375 1,0.9375 l 5,0 0,-2 z m 5,2 0,2 4,-2.9375 0,-0.125 -1.25,-0.9375 z m 431,-1 -5,5 0,2 6,-6 z m 78,0 -1,1 6,6 0,-2 z m -978,3 c -0.554,0 -1,0.446 -1,1 0,0.55398 0.446,1 1,1 l 3,0 0,-2 z m 10,0 c -0.554,0 -1,0.446 -1,1 0,0.55398 0.446,1 1,1 l 12,0 c 0.554,0 1,-0.44602 1,-1 0,-0.554 -0.446,-1 -1,-1 z m 54,0 c -0.554,0 -1,0.446 -1,1 0,0.55398 0.446,1 1,1 l 12,0 c 0.554,0 1,-0.44602 1,-1 0,-0.554 -0.446,-1 -1,-1 z m 18,0 c -0.554,0 -1,0.446 -1,1 0,0.55398 0.446,1 1,1 l 3,0 0,-2 z m 58,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 12,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 z m 50,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 12,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 z m 80,0 c -0.554,0 -1,0.4113 -1,0.9375 l 0,0.125 c 0,0.52618 0.446,0.9375 1,0.9375 l 6,0 c 0.554,0 1,-0.41132 1,-0.9375 l 0,-0.125 c 0,-0.5262 -0.446,-0.9375 -1,-0.9375 z m 70,0 c 0.554,0 1,0.4113 1,0.9375 l 0,0.125 c 0,0.52618 -0.446,0.9375 -1,0.9375 l -6,0 c -0.554,0 -1,-0.41132 -1,-0.9375 l 0,-0.125 c 0,-0.5262 0.446,-0.9375 1,-0.9375 z m 52,0 c 0.554,0 1,0.4113 1,0.9375 l 0,0.125 c 0,0.52618 -0.446,0.9375 -1,0.9375 l -6,0 c -0.554,0 -1,-0.41132 -1,-0.9375 l 0,-0.125 c 0,-0.5262 0.446,-0.9375 1,-0.9375 z m 58,0 c -0.554,0 -1,0.41132 -1,0.9375 l 0,0.125 c 0,0.52618 0.446,0.9375 1,0.9375 l 6,0 c 0.554,0 1,-0.41132 1,-0.9375 l 0,-0.125 c 0,-0.52618 -0.446,-0.9375 -1,-0.9375 z m 189,0 0,2 18,0 0,-2 z m 134,0 0,2 18,0 0,-2 z m 58,0 0,2 24,0 0,-2 z m -124.25,0.125 0,2 16.1875,0 0,-2 z M 11,-22.75001 c 0,0.1386 -0.0121,0.2551 -0.0625,0.375 -0.101,0.27824 -0.30814,0.4805 -0.5625,0.5625 -0.1198,0.0504 -0.2364,0.0624 -0.375,0.0624 l -1,0 -2,0 0,2 3,0 c 0.1386,0 0.25528,-0.012 0.375,-0.0624 0.25436,-0.082 0.4614,-0.28426 0.5625,-0.5625 0.0504,-0.1198 0.0625,-0.2365 0.0625,-0.375 z m 82,0 c 0,0.1386 -0.0122,0.2551 -0.0625,0.375 -0.1011,0.27824 -0.30814,0.4805 -0.5625,0.5625 -0.11972,0.0504 -0.2364,0.0624 -0.375,0.0624 l -1,0 -2,0 0,2 3,0 c 0.1386,0 0.25528,-0.012 0.375,-0.0624 0.25436,-0.082 0.4614,-0.28426 0.5625,-0.5625 0.0504,-0.1198 0.0625,-0.2365 0.0625,-0.375 z m 40.125,0 c -0.0822,0.31952 -0.125,0.65482 -0.125,1 0,2.20912 1.79086,4 4,4 2.20914,0 4,-1.79088 4,-4 0,-0.34518 -0.0428,-0.68048 -0.125,-1 -0.44393,1.7254 -2.01104,3 -3.875,3 -1.86396,0 -3.43107,-1.2746 -3.875,-3 z m 80,0 c -0.0822,0.31952 -0.125,0.65482 -0.125,1 0,2.20912 1.79086,4 4,4 2.20914,0 4,-1.79088 4,-4 0,-0.34518 -0.0428,-0.68048 -0.125,-1 -0.44392,1.7254 -2.01104,3 -3.875,3 -1.86396,0 -3.43108,-1.2746 -3.875,-3 z m -197.125,1 c -0.554,0 -1,0.446 -1,1 0,0.55398 0.446,1 1,1 l 12,0 c 0.554,0 1,-0.44602 1,-1 0,-0.554 -0.446,-1 -1,-1 z m 54,0 c -0.554,0 -1,0.446 -1,1 0,0.55398 0.446,1 1,1 l 12,0 c 0.554,0 1,-0.44602 1,-1 0,-0.554 -0.446,-1 -1,-1 z m 76,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 12,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 z m 50,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 12,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 z m 68,0 c -0.55228,0 -1,0.4477 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.5523 -0.44772,-1 -1,-1 z m 4,0 c -0.138,0 -0.25536,0.012 -0.375,0.0624 -0.35892,0.1518 -0.625,0.52328 -0.625,0.9375 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.5523 -0.44772,-1 -1,-1 z m 8,0 c -0.554,0 -1,0.4113 -1,0.9375 l 0,0.125 c 0,0.52618 0.446,0.9375 1,0.9375 l 10,0 c 0.554,0 1,-0.41132 1,-0.9375 l 0,-0.125 c 0,-0.5262 -0.446,-0.9375 -1,-0.9375 z m 74,0 c 0.554,0 1,0.4113 1,0.9375 l 0,0.125 c 0,0.52618 -0.446,0.9375 -1,0.9375 l -10,0 c -0.554,0 -1,-0.41132 -1,-0.9375 l 0,-0.125 c 0,-0.5262 0.446,-0.9375 1,-0.9375 z m -18,0 c 0.55228,0 1,0.4477 1,1 0,0.55228 -0.44772,1 -1,1 -0.55228,0 -1,-0.44772 -1,-1 0,-0.5523 0.44772,-1 1,-1 z m -4,0 c 0.55228,0 1,0.4477 1,1 0,0.55228 -0.44772,1 -1,1 -0.55228,0 -1,-0.44772 -1,-1 0,-0.5523 0.44772,-1 1,-1 z m 82,0 c 0.55228,0 1,0.4477 1,1 0,0.55228 -0.44772,1 -1,1 -0.55228,0 -1,-0.44772 -1,-1 0,-0.5523 0.44772,-1 1,-1 z m -4,0 c 0.55228,0 1,0.4477 1,1 0,0.55228 -0.44772,1 -1,1 -0.55228,0 -1,-0.44772 -1,-1 0,-0.5523 0.44772,-1 1,-1 z m -8,0 c 0.554,0 1,0.4113 1,0.9375 l 0,0.125 c 0,0.52618 -0.446,0.9375 -1,0.9375 l -10,0 c -0.554,0 -1,-0.41132 -1,-0.9375 l 0,-0.125 c 0,-0.5262 0.446,-0.9375 1,-0.9375 z m 54,0 c -0.554,0 -1,0.41132 -1,0.9375 l 0,0.125 c 0,0.52618 0.446,0.9375 1,0.9375 l 10,0 c 0.554,0 1,-0.41132 1,-0.9375 l 0,-0.125 c 0,-0.52618 -0.446,-0.9375 -1,-0.9375 z m 18,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 443,0 0,2 2,0 0,-2 z m 4,0 0,2 2,0 0,-2 z m 50,0 0,2 2,0 0,-2 z m 4,0 0,2 2,0 0,-2 z m -330,2 0,2 24,0 0,-2 z m 128,0 0,2 24,0 0,-2 z m 64,0 0,2 24,0 0,-2 z m -128.3125,0.1874 0,2 24.3125,0 0,-2 z M 5,-18.75001 l 0,2 c 0,0.55398 0.446,1 1,1 l 4,0 c 0.554,0 1,-0.44602 1,-1 0,-0.554 -0.446,-1 -1,-1 l -3,0 -1,0 c -0.554,0 -1,-0.44602 -1,-1 z m 82,0 0,2 c 0,0.55398 0.446,1 1,1 l 4,0 c 0.554,0 1,-0.44602 1,-1 0,-0.554 -0.446,-1 -1,-1 l -3,0 -1,0 c -0.554,0 -1,-0.44602 -1,-1 z m 184.125,0 0,2 c 0,0.554 0.42308,1 0.9375,1 0.51442,0 0.9375,-0.446 0.9375,-1 l 0,-2 c 0,0.554 -0.42308,1 -0.9375,1 -0.51442,0 -0.9375,-0.446 -0.9375,-1 z m 65.875,0 0,2 c 0,0.554 -0.42308,1 -0.9375,1 -0.51442,0 -0.9375,-0.446 -0.9375,-1 l 0,-2 c 0,0.554 0.42308,1 0.9375,1 0.51442,0 0.9375,-0.446 0.9375,-1 z m 65.875,0 0,2 c 0,0.55398 -0.42308,1 -0.9375,1 -0.51442,0 -0.9375,-0.44602 -0.9375,-1 l 0,-2 c 0,0.55398 0.42308,1 0.9375,1 0.51442,0 0.9375,-0.44602 0.9375,-1 z m 62.125,0 0,2 c 0,0.554 0.42308,1 0.9375,1 0.51444,0 0.9375,-0.446 0.9375,-1 l 0,-2 c 0,0.554 -0.42306,1 -0.9375,1 -0.51442,0 -0.9375,-0.446 -0.9375,-1 z m -456,45 c -0.3204,0 -0.63738,0.0512 -0.9375,0.125 C 6.3192,26.80395 5,28.38897 5,30.24999 l 0,2 c 0,-2.18142 1.8186,-4 4,-4 l 6,0 0,-2 z m 10,0 0,2 6,0 c 2.1814,0 4,1.81858 4,4 l 0,-2 c 0,-1.86102 -1.3192,-3.44604 -3.0625,-3.875 -0.0432,-0.008 -0.0814,-0.0566 -0.125,-0.0624 -0.2585,-0.054 -0.53982,-0.0624 -0.8125,-0.0624 l -6,0 z m 54,0 c -0.3204,0 -0.63738,0.0512 -0.9375,0.125 C 70.3192,26.80395 69,28.38897 69,30.24999 l 0,2 c 0,-2.18142 1.8186,-4 4,-4 l 6,0 0,-2 z m 10,0 0,2 6,0 c 2.1814,0 4,1.81858 4,4 l 0,0.875 1.0625,1.0625 0.875,0.875 C 94.9756,34.79153 95,34.53079 95,34.24999 l 0,-2 c 0,0.2808 -0.0244,0.54154 -0.0625,0.8125 l -0.875,-0.875 -1.0625,-1.0625 0,-0.875 c 0,-1.86102 -1.31921,-3.44604 -3.0625,-3.875 -0.0432,-0.008 -0.0815,-0.0566 -0.125,-0.0624 -0.25849,-0.054 -0.53983,-0.0624 -0.8125,-0.0624 l -6,0 z m -73,4 c -0.554,0 -1,0.44598 -1,1 0,0.554 0.446,1 1,1 l 14,0 c 0.554,0 1,-0.446 1,-1 0,-0.55402 -0.446,-1 -1,-1 l -5,0 -4,0 z m 64,0 c -0.554,0 -1,0.44598 -1,1 0,0.554 0.446,1 1,1 l 8.625,0 3,0 2.375,0 c 0.554,0 1,-0.446 1,-1 0,-0.55402 -0.446,-1 -1,-1 l -5,0 -4,0 z m -71,2 0,2 c 0,3.29298 2.70702,6 6,6 l 6,0 2,-2 2,2 6,0 c 3.29298,0 6,-2.70702 6,-6 l 0,-2 c 0,2.96706 -2.21866,5.41092 -5.0625,5.875 -0.0446,0.01 -0.0798,0.053 -0.125,0.0624 -0.27096,0.038 -0.5317,0.0624 -0.8125,0.0624 l -6,0 -2,-2 -2,2 -6,0 c -0.2808,0 -0.54154,-0.0244 -0.8125,-0.0624 -0.0452,-0.01 -0.0804,-0.0516 -0.125,-0.0624 C 5.21866,37.66091 3,35.21705 3,32.24999 z m 4,0 0,2 c 0,1.108 0.892,2 2,2 l 6,0 0,-2 -5,0 -1,0 c -1.108,0 -2,-0.892 -2,-2 z m 20,0 c 0,1.108 -0.892,2 -2,2 l -1,0 -5,0 0,2 6,0 c 1.108,0 2,-0.892 2,-2 z m 40,0 0,2 c 0,3.29298 2.70702,6 6,6 l 6,0 1.375,-1.375 -1,-1 -0.375,0.375 -6,0 c -0.2808,0 -0.54154,-0.0244 -0.8125,-0.0624 -0.0452,-0.01 -0.0802,-0.0516 -0.125,-0.0624 C 69.21866,37.66071 67,35.21705 67,32.24999 z m 4,0 0,2 c 0,1.108 0.892,2 2,2 l 6,0 0,-2 -5,0 -1,0 c -1.108,0 -2,-0.892 -2,-2 z m 20,0 c 0,0.0706 -0.0554,0.1188 -0.0625,0.1874 l -1.75,1.75 c -0.0687,0.008 -0.1169,0.0624 -0.1875,0.0624 l -1,0 -0.375,0 -2,0 2,2 1.375,0 c 0.0706,0 0.11882,-0.0554 0.1875,-0.0624 l 1.75,-1.75 C 90.9445,34.36889 91,34.32059 91,34.24999 z m 51.625,1.3125 c -1.79992,-0.0282 -3.64434,0.65818 -5.625,2.6875 l 0,2 c 7.92264,-8.1173 13.88536,5.63196 22,-2 l 0,-2 c -6.08598,5.72396 -10.97525,-0.60276 -16.375,-0.6875 z m 70.75,0 c -5.39976,0.0848 -10.28902,6.41148 -16.375,0.6875 l 0,2 c 8.11464,7.63198 14.07736,-6.1173 22,2 l 0,-2 c -1.98066,-2.02932 -3.82508,-2.71576 -5.625,-2.6875 z m -132.6875,0.6875 -0.0625,0.0624 -1.3125,1.4375 0.9375,1 0.375,-0.4375 2,-2.0625 -1.9375,0 z m 2.375,2.4375 -1,1 3.1875,3.1875 1,-1 z m 10.625,0 -3.1875,3.1875 1,1 3.1875,-3.1875 z m -5.3125,5.3125 -4.25,4.25 -1.0625,-1.125 -1,1 2.0625,2.125 4.25,-4.25 4.25,4.25 2.0625,-2.125 -1,-1 -1.0625,1.125 z m 44.625,4.25 0,2 2,0 0,-2 z m 88,0 0,2 2,0 0,-2 z m 308,38 c -0.69256,0 -1.3433,0.0704 -2,0.1874 -1.97012,0.35122 -3.78902,1.19268 -5.3125,2.375 0.27526,0.01 0.53642,0.0662 0.8125,0.125 0.1164,0.1188 -0.25608,0.39682 -0.625,0.6875 0.63336,-0.48892 1.33168,-0.7194 2.1875,-0.75 0.40586,-0.0824 0.83072,-0.0692 1.1875,0 0.3373,-0.1156 0.71222,-0.165 1.0625,-0.25 -0.44024,-0.1258 0.061,-0.4151 0.5625,-0.4375 0.191,-0.008 0.3289,0.0358 0.4375,0.125 0.22006,0.004 0.5148,-0.21686 0.375,0.0624 0.25094,-0.0294 0.49406,-0.0496 0.75,-0.0624 -0.25748,-0.0812 0.006,-0.2038 0.25,-0.25 0.2137,-0.0404 0.32538,0.004 0.0624,0.1874 0.0854,-0.002 0.1642,0 0.25,0 0.27722,0 0.54052,0.041 0.8125,0.0624 0.0466,-0.0624 0.1156,-0.1456 0.25,-0.25 0.1772,-0.117 0.226,-0.1512 0.25,-0.125 0.054,0.0586 -0.1464,0.39984 -0.0624,0.375 0.028,-0.008 0.071,-0.0822 0.1874,-0.1874 0.55138,-0.1452 1.30082,0.1312 1.6875,0.5625 0.018,0.02 0.0462,0.0418 0.0624,0.0624 0.032,0.0406 0.0372,0.082 0.0624,0.125 0.01,0.018 -0.01,0.0442 0,0.0624 0.0448,0.0876 0.1132,0.1556 0.125,0.25 0.22788,-0.076 0.46198,-0.1072 0.6875,-0.1874 0.0982,0.0354 0.21546,0.0246 0.3125,0.0624 -0.114,0.0368 -0.21658,0.142 -0.3125,0.125 -0.4862,0.36054 0.3743,0.23672 0.875,0.4375 -0.0958,-0.34306 0.1384,-0.84584 0.3125,-0.9375 0.082,-0.0432 0.109,0.0344 0.125,0.25 -0.0256,0.1286 0.034,0.38998 0.0624,0.625 3.60122,1.82902 6.13098,5.40748 6.5,9.625 0.024,-0.31088 0.0624,-0.62034 0.0624,-0.9375 0,-4.72414 -2.71918,-8.79246 -6.6875,-10.75 0.0228,0.29036 0.1182,0.695 -0.0624,0.625 0.21676,-0.9925 -1.885,-0.42026 -1.1875,-0.9375 0.096,0.018 0.1984,-0.0882 0.3125,-0.125 -0.097,-0.0378 -0.2143,-0.0274 -0.3125,-0.0624 -0.53834,0.1922 -1.0891,0.3924 -1.625,0.5 -0.1916,-0.004 -0.4994,-0.038 -0.625,-0.0624 0.0482,-0.012 0.153,-0.0528 0.375,-0.0624 0.1458,-0.198 0.0846,-0.0842 0.3125,-0.25 0.1198,-0.172 1.59284,-0.244 0.375,-0.25 -0.0558,-0.006 -0.038,-0.0564 -0.0624,-0.0624 0.1018,-0.02 0.28324,-0.0384 0.5,-0.0624 -0.52698,-0.1512 -1.07252,-0.28782 -1.625,-0.375 -0.55248,-0.0872 -1.11186,-0.125 -1.6875,-0.125 z m 1.875,0.6875 c 0.21882,-0.004 0.38004,0.0784 -0.0624,0.25 l -0.25,0 c -0.1912,-0.151 0.094,-0.246 0.3125,-0.25 z m -0.6875,0.6875 c 0.0992,-0.014 0.2316,-0.02 0.375,0.0624 0.4787,-0.1182 1.28428,0.0798 0.3125,0.1874 -0.0346,-0.1114 -0.361,0.0696 -0.375,-0.0624 -0.6163,0.1388 -0.6102,-0.1472 -0.3125,-0.1874 z m -192.75,0.25 c -4.03432,0.49932 -7.1875,4.70004 -7.1875,9.6875 0,0.3763 0.027,0.7611 0.0624,1.125 0.37244,-4.90892 3.76768,-8.8125 7.9375,-8.8125 4.16982,0 7.56506,3.90358 7.9375,8.8125 0.0348,-0.36386 0.0624,-0.7487 0.0624,-1.125 0,-5.31996 -3.58134,-9.6875 -8,-9.6875 -0.27616,0 -0.54354,-0.0332 -0.8125,0 z m 191.9375,0.125 c 0.28064,-0.0798 0.53602,0.1352 -0.125,0.1874 -0.0498,0.0662 -0.078,0.002 -0.125,0 0.0642,-0.1082 0.1564,-0.161 0.25,-0.1874 z m -3.125,0.0624 c 0.35978,-0.008 0.52868,0.1018 -0.1874,0.25 -0.23732,0.0308 -0.45478,0.33 -0.6875,0.25 -1.8e-4,-0.3454 0.51552,-0.492 0.875,-0.5 z M 5,86.24999 l 0,2 5,0 19,0 0,-2 z m 80.9375,0.625 c -3.76632,0.1794 -5.852,5.04228 -7.875,9.5625 l -0.4375,1 c -1.61934,3.54196 -3.27284,6.619 -5.9375,6.625 0.7764,0.54006 1.51326,0.9325 2.1875,1.1875 1.48694,-1.13738 2.6243,-3.35024 3.75,-5.8125 l 0.4375,-1 c 2.023,-4.52022 4.10868,-9.38304 7.875,-9.5625 0.66332,-0.0314 1.35376,0.0914 2.125,0.375 0.67344,-0.50032 1.41094,-0.8125 2.25,-0.8125 -1.70742,-1.17832 -3.11956,-1.6221 -4.375,-1.5625 z m 444.9375,0.0624 c -0.21852,0.004 -0.50362,0.099 -0.3125,0.25 l 0.25,0 c 0.44264,-0.1716 0.28132,-0.25364 0.0624,-0.25 z m 1,0.3125 c -0.0406,0.0282 -0.0508,0.0534 -0.0624,0.125 0.1448,-0.0388 0.29196,-0.0782 0.4375,-0.125 -0.152,-0.0206 -0.31398,-0.0422 -0.375,0 z m -1.6875,0.375 c -0.24742,0.0336 -0.28268,0.262 0.0624,0.25 0.0702,-0.002 0.1458,-0.0392 0.25,-0.0624 0.014,0.132 0.3404,-0.049 0.375,0.0624 0.175,-0.02 0.24048,-0.0396 0.3125,-0.0624 -0.014,-0.0636 -0.0826,-0.079 -0.125,-0.125 -0.1594,-0.021 -0.32592,-0.043 -0.5,0 -0.1434,-0.0816 -0.27576,-0.076 -0.375,-0.0624 z m 4.0625,0.3125 c 0.008,0.058 0.016,0.113 0,0.1874 0.0768,0.0298 0.1212,-0.0286 0.125,-0.125 -0.0288,0.002 -0.076,-0.0292 -0.125,-0.0624 z m -4.875,0.0624 c -0.0936,0.0266 -0.1858,0.0792 -0.25,0.1874 0.047,0.002 0.0752,0.0662 0.125,0 0.66102,-0.0526 0.40564,-0.26736 0.125,-0.1874 z m -0.6875,0.0624 c -0.24424,0.0462 -0.50748,0.1688 -0.25,0.25 l 0.0624,0.0624 0.1874,-0.0624 c 0.45844,-0.26664 0.24424,-0.29614 0,-0.25 z m 2.125,0.0624 c 0.13,0.1836 0.2144,0.42602 0.375,0.4375 0.1974,-0.23204 0.3534,-0.27744 0.4375,-0.25 -0.2566,-0.1334 -0.53572,-0.1804 -0.8125,-0.1874 z m -3.125,0.0629 c -0.0566,0.012 -0.1614,0.0378 -0.25,0.0624 -0.21282,0.1826 -0.29066,0.38262 -0.125,0.5625 0.46282,-0.0644 0.7947,-0.1386 0.3125,-0.3125 0.1618,-0.2552 0.1498,-0.3299 0.0624,-0.3125 z M 529,88.43739 c -0.0486,-0.01 -0.1174,0.0278 -0.1874,0.0624 -0.0774,0.47708 -0.54184,0.55402 -1.0625,0.5625 0.37506,0.1206 0.69232,0.2438 0.6875,0.625 0.69802,0.0428 0.1254,-0.4624 0.75,-0.375 0.0748,-0.0954 0.119,-0.20842 0.1874,-0.3125 -0.1478,-0.115 -0.1596,-0.52188 -0.375,-0.5625 z m 2.75,0 c 0.0686,0.23898 0.018,0.70016 0.125,0.8125 0.0814,-0.0564 0.24754,-0.043 0.5,0 -0.014,-0.33412 -0.28984,-0.59918 -0.625,-0.8125 z m -11.9375,0.125 c -1.74562,2.084 -2.8125,4.7563 -2.8125,7.6875 0,0.41422 0.0218,0.8466 0.0624,1.25 0.1,-1.55766 0.48326,-3.03742 1.125,-4.375 -0.0268,-0.004 -0.042,-0.0302 -0.0624,-0.125 0.0768,-0.1358 0.1644,-0.2016 0.1874,-0.1874 0.41412,-0.80346 0.9243,-1.5627 1.5,-2.25 0.5131,-0.0316 1.1203,0.157 1.375,0.5 0.0594,-0.0338 0.1376,-0.0668 0.1874,-0.0624 0.084,-0.197 0.16,-0.33974 0.25,-0.375 -0.66688,-0.37672 -0.3358,-0.73218 -0.1874,-1.125 -0.018,0.0232 -0.0636,0.0264 -0.125,-0.0624 0.0486,-0.6189 -0.81588,-0.9172 -1.5,-0.875 z m 8.5,0.125 c -0.0588,0.014 -0.1354,0.0824 -0.1874,0.1874 0.47002,0.061 0.36394,-0.22806 0.1874,-0.1874 z m 5.9375,0 c -0.2458,0.1294 -0.61728,1.13374 0,1.25 0.39282,0.26594 0.0686,-0.71754 0.125,-1 -0.016,-0.21566 -0.043,-0.29312 -0.125,-0.25 z m -12.8125,0.3125 c -0.018,0.0652 -0.006,0.1838 0,0.3125 0.016,-0.08 0.0784,-0.163 0.0624,-0.25 -0.002,-0.0344 -0.0508,-0.0342 -0.0624,-0.0624 z M 521,89.37499 c 0.0528,-0.038 0.1936,0.1526 0,0.125 -0.014,-0.083 -0.018,-0.113 0,-0.125 z m 9.75,0.6875 c -0.4747,-0.016 -1.40434,0.81586 -0.4375,0.3125 0.88806,-0.32008 -0.4054,1.41986 -0.25,0.25 l -0.0624,0.125 c -0.0434,0.6201 -1.0938,1.0026 -1.125,1.125 -0.61556,0.1764 -0.7655,0.8281 -0.9375,0.6875 0.1376,0.9662 -1.74792,1.00622 -1.0625,2.1875 -0.0276,0.0308 -0.0422,0.4309 -0.1874,0.3125 -0.0218,-0.788 -0.74162,-1.22536 -1.4375,-0.875 0.0326,0.0244 0.0484,0.0464 0.0624,0.0624 -0.2077,0.014 -1.0234,-0.154 -1.125,0.25 -0.20344,0.2702 -0.3476,0.4822 -0.5,0.375 0.1152,0.28484 0.1466,0.65044 0,0.875 -0.01,0.47402 0.26298,0.6655 0.5625,0.6875 0.008,-0.014 0.0516,0.012 0.0624,0 0.1232,-0.1296 0.27078,-0.193 0.5,-0.1874 0.1208,-0.0974 0.25052,-0.2206 0.3125,-0.375 0.28392,-0.0468 0.33792,0.0804 0.3125,0.25 0.62754,-0.1842 1.23028,0.22482 1.25,0.9375 0.1454,0.1184 0.1598,-0.2817 0.1874,-0.3125 -0.24332,-0.41936 -0.1364,-0.6508 0.0624,-0.875 -0.008,-0.004 0.008,-0.0594 0,-0.0624 -0.36076,-0.147 -0.75074,-0.2454 -0.875,-0.1874 0.0204,-0.058 0.048,-0.105 0.125,-0.125 0.20426,-0.0506 0.54864,0.0782 0.875,0.1874 0.38522,-0.32534 0.9524,-0.58152 0.875,-1.125 0.172,0.1406 0.32194,-0.5111 0.9375,-0.6875 0.0312,-0.1224 1.0816,-0.5049 1.125,-1.125 l 0.0624,-0.125 c -0.1554,1.16986 1.13806,-0.57008 0.25,-0.25 -0.96684,0.50336 -0.0372,-0.3285 0.4375,-0.3125 0.4678,0.2063 2.26864,-0.6598 1.1875,-0.75 -0.1634,0.004 -0.1146,-0.50876 -0.1874,-0.8125 -0.004,-0.014 -0.0588,0.012 -0.0624,0 -0.0896,0.01 -0.0482,-0.038 0,-0.125 -0.0792,-0.1028 -0.24344,-0.1142 -0.5,0.1874 -0.182,-0.014 -0.28042,-0.30256 -0.4375,-0.5 z m -9.6875,0.3125 c 0.1304,0.008 0.68106,0.58022 0.0624,0.25 -0.1114,-0.1702 -0.106,-0.252 -0.0624,-0.25 z m 9.75,0.375 c 0.1106,0.004 0.012,0.1536 -0.1874,0.0624 0.0854,-0.0422 0.1508,-0.064 0.1874,-0.0624 z m 0.4375,0 c -0.0322,0.0338 -0.1794,0.1596 -0.5,0.3125 -0.196,0.0456 -0.35624,0.24964 -0.5625,0.25 0.108,-0.21958 0.60114,-0.4246 0.875,-0.5 0.137,-0.0376 0.21974,-0.0962 0.1874,-0.0624 z m 0.875,1.1875 c -0.1962,0.012 -0.6963,0.5901 -0.4375,0.5625 0.26674,0.0532 1.28608,-0.02 0.5,-0.3125 0.042,-0.1718 0.002,-0.25394 -0.0624,-0.25 z M 7.1875,92.24999 C 7.0803,92.55863 7,92.90481 7,93.24999 c 0,1.65684 1.34314,3 3,3 1.65686,0 3,-1.34316 3,-3 0,-0.34518 -0.0803,-0.69136 -0.1875,-1 -0.40768,1.17282 -1.50082,2 -2.8125,2 -1.31168,0 -2.40482,-0.82718 -2.8125,-2 z m 187.8125,6 0,2 28,0 0,-2 z m 202,-6 0,2 20,0 0,-2 z m 52,0 0,2 20,0 0,-2 z m 81.8125,0.5 c -0.0368,-10e-4 -0.102,0.0204 -0.1874,0.0624 0.1988,0.091 0.29812,-0.0584 0.1874,-0.0624 z m 0.4375,0 c 0.0322,-0.0338 -0.0506,0.0248 -0.1874,0.0624 -0.27386,0.0754 -0.76696,0.28042 -0.875,0.5 0.20626,-3.6e-4 0.3665,-0.2044 0.5625,-0.25 0.3205,-0.1528 0.46776,-0.2788 0.5,-0.3125 z m -10.5625,0.875 c -0.22246,0.365 -0.3912,0.81888 -0.375,1.125 -0.012,0.56448 0.30326,0.95122 0.75,1.125 -0.3329,0.1258 -0.159,0.98346 0.1874,1.25 0.468,1.18256 0.1572,-0.43984 -0.125,-0.8125 0.2368,-0.83736 0.57308,0.98262 1,1.1875 0.0918,0.80042 0.61308,1.1848 1.375,1.4375 0.3448,0.014 0.85392,0.1808 1.125,0 -0.1144,0.1878 -0.1086,0.4022 0.1874,0.4375 0.0994,0.0332 0.3663,0.1438 0.4375,0 0.0736,0.035 0.20296,0.0394 0.3125,-0.0624 0.0864,-0.0396 0.0722,0.0248 0.125,0 -0.2373,0.177 -0.49338,0.4631 0.0624,0.5625 0.36394,0.24396 0.43882,-1.19764 -0.0624,-0.9375 -0.54106,-0.1528 -0.63648,0.2037 -0.5,0.375 -0.31492,0.0822 -0.22638,-0.24442 -0.0624,-0.5625 -0.0262,-0.1756 -0.2214,-0.0922 -0.375,0.0624 0.0328,-0.0538 0.0508,-0.1042 0.0624,-0.1874 0.1874,-0.1436 0.25076,-0.22424 0.3125,-0.25 0.13,-0.0544 0.0608,0.1652 0,0.375 0.23602,-0.45812 0.60936,-0.97536 0,-0.875 -0.29272,0.72914 -1.4583,0.88626 -1.4375,-0.125 0.137,-0.20974 0.0968,-0.53742 0,-0.8125 -0.0638,-0.008 -0.1308,0.002 -0.1874,0 -0.76192,-0.2527 -1.2832,-0.63708 -1.375,-1.4375 -0.42692,-0.20488 -0.7632,-2.02486 -1,-1.1875 0.2822,0.37266 0.593,1.99506 0.125,0.8125 -0.3464,-0.26654 -0.5205,-1.1242 -0.1874,-1.25 -0.1396,-0.0544 -0.26704,-0.1552 -0.375,-0.25 z M 85.625,94.31249 c -0.3632,0.63758 -0.71926,1.28342 -1.0625,2 l 3,0 c 0.0418,0 0.0854,-0.006 0.125,0 l 0.75,-1 c 0,-0.53432 -0.35934,-1 -0.875,-1 z m 432.6875,0.5 c -0.0232,-0.014 -0.1106,0.0516 -0.1874,0.1874 0.0828,0.379 0.25718,-0.1458 0.1874,-0.1874 z M 325,96.37499 c -0.041,0.38574 -0.0624,0.79256 -0.0624,1.1875 0,4.19556 2.39458,7.85152 6,10 l 2,0 0,-1 c -4.43774,-1.75698 -7.59398,-5.61262 -7.9375,-10.1875 z m 26.5625,0 c -0.34352,4.57488 -3.49976,8.43054 -7.9375,10.1875 l 0,1 2,0 c 3.60542,-2.14846 6,-5.80444 6,-10 0,-0.39494 -0.021,-0.80176 -0.0624,-1.1875 z m -284.5,0.875 c -0.0234,0.33046 -0.0625,0.66362 -0.0625,1 0,7.73036 6.26966,14 14,14 7.73266,0 14,-6.26964 14,-14 0,-0.33638 -0.0392,-0.66954 -0.0625,-1 -0.513,7.26368 -6.54132,13 -13.9375,13 -7.39396,0 -13.42432,-5.73632 -13.9375,-13 z m 448,0 c -0.0234,0.33046 -0.0624,0.66362 -0.0624,1 0,7.73032 6.26968,14 14,14 7.73032,0 14,-6.26968 14,-14 0,-0.33638 -0.0394,-0.66954 -0.0624,-1 -0.46436,6.57258 -5.44906,11.85938 -11.875,12.8125 -0.4944,0.0734 -0.99018,0.1674 -1.5,0.1874 -0.1868,0.008 -0.3738,0 -0.5625,0 -0.47802,0 -0.97408,-0.008 -1.4375,-0.0624 -0.34256,-0.0348 -0.66518,-0.1284 -1,-0.1874 -6.24378,-1.10146 -11.04476,-6.30652 -11.5,-12.75 z m 11.125,0.2498 c -0.077,0.02 -0.1046,0.067 -0.125,0.125 0.1892,-0.088 0.98422,0.30108 1.375,0.4375 0.0502,-0.048 0.1326,-0.083 0.1874,-0.125 -0.2407,-0.1964 -1.0742,-0.52764 -1.4375,-0.4375 z M 397,98.24999 l 0,2 6,0 0,-2 z m 8,0 0,2 6,0 0,-2 z m 8,0 0,2 4,0 0,-2 z m 36,0 0,2 4,0 0,-2 z m 6,0 0,2 6,0 0,-2 z m 8,0 0,2 6,0 0,-2 z m -69.125,0.125 -6.875,5.875 0,2 8,-6.875 z m 78.25,0 -1.125,1 8,6.875 0,-2 z m 54.875,0 c -0.016,0.006 -0.024,0.0244 0,0.0624 0.1792,0.0406 0.1756,0.016 0.1874,0 -0.006,-0.004 0.006,-0.0596 0,-0.0624 -0.042,-0.018 -0.0882,-0.002 -0.125,0 4.2e-4,0.008 -0.0538,-0.008 -0.0624,0 z m -1.4375,1.5625 c -0.0208,0.0338 0.0212,0.104 0.3125,0.3125 0.72356,0.0502 -0.25022,-0.41404 -0.3125,-0.3125 z m 0.6875,0.3125 c -0.0844,0.0334 -0.0784,0.079 0.0624,0.1874 0.0798,0.0986 0.1792,0.0634 0.25,0 0.008,-0.059 0.0422,-0.1256 0.0624,-0.1874 -0.1424,-0.014 -0.29388,-0.032 -0.375,0 z m 0.6875,1.3125 c -0.21608,0.5116 -0.56674,0.94698 -0.25,1.3125 0.32506,-0.014 0.74812,0.01 1.1875,0.125 -0.29524,-0.45062 -0.63082,-0.92572 -0.9375,-1.4375 z m 0.9375,1.4375 c 0.1062,0.1622 0.2155,0.3346 0.3125,0.5 0.27394,0.0348 0.46806,0.0918 0.8125,0.125 -0.2253,-0.3355 -0.66438,-0.5042 -1.125,-0.625 z m 0.3125,0.5 c -0.71494,-0.091 -1.12254,-0.1652 -1.4375,-0.25 0.36268,0.64794 0.76972,1.20772 1.125,1.75 0.42838,0.1124 0.82602,0.27166 1.0625,0.5625 -0.002,-0.0218 0.002,-0.0406 0,-0.0624 -0.12,-0.79752 -0.40364,-1.4102 -0.75,-2 z m -0.3125,1.5 c -1.44116,-0.37804 -3.05142,0.0718 0.3125,0.5 -0.097,-0.1654 -0.20624,-0.33782 -0.3125,-0.5 z m 0.3125,0.5 c 0.34636,0.5898 0.6299,1.20248 0.75,2 0.0348,0.27152 0.079,0.49982 0.125,0.75 0.1664,0.001 0.33662,0.008 0.5,0 -0.23462,-0.71904 -0.48382,-1.5963 -0.625,-2.625 -0.29886,-0.0338 -0.49664,-0.0928 -0.75,-0.125 z m 6,-3 c -0.0896,0.66934 0.0626,1.51078 -0.625,1.75 -1.18836,0.1604 -0.61708,1.64512 -1.4375,2.3125 -0.1462,0.1566 -0.2899,-0.0208 -0.4375,-0.0624 -0.1068,-0.0438 -0.2054,-0.1026 -0.25,-0.1874 0.014,0.25332 0.0826,0.4864 0.375,0.6875 -0.0474,0.57024 -0.8714,0.25418 -0.75,0.875 -0.002,0.0744 0.004,0.1174 0,0.1874 0.1304,-0.0224 0.24604,-0.0984 0.375,-0.125 0.045,-0.24406 0.1664,-0.24266 0.125,0 0.34084,-0.0738 0.67074,-0.21048 1,-0.3125 0.1492,-0.63252 0.23106,-1.2712 1,-1.375 0.94272,-0.328 0.28718,-1.7511 0.875,-2.375 0.65362,-0.58222 0.30764,-1.09524 -0.25,-1.375 z m -2.75,3.8125 c 0.3155,-0.69854 -0.0454,-0.80536 0,0 z M 3,108.24999 l 0,2 28,0 0,-2 -26,0 z m 394,0 0,2 20,0 0,-2 z m 52,0 0,2 20,0 0,-2 z m -124.0625,0.625 0,2 c 0,0.73866 0.57384,1.3125 1.3125,1.3125 l 8,0 c 0.736,0 1.375,-0.5765 1.375,-1.3125 l 0,-1.5625 0,-0.4375 c 0,0.736 -0.639,1.3125 -1.375,1.3125 l -8,0 c -0.73866,0 -1.3125,-0.57384 -1.3125,-1.3125 z m 16,0 0,0.4375 0,1.5625 c 0,0.736 0.5765,1.3125 1.3125,1.3125 l 8,0 c 0.1848,0 0.34038,0.004 0.5,-0.0624 0.47852,-0.2024 0.875,-0.698 0.875,-1.25 l 0,-2 c 0,0.552 -0.39648,1.0476 -0.875,1.25 -0.1596,0.0664 -0.3152,0.0624 -0.5,0.0624 l -8,0 c -0.736,0 -1.3125,-0.5765 -1.3125,-1.3125 z m -143.9375,1.375 0,2 24,0 0,-2 z m -117.75,40.6875 -0.3125,0.875 -7.25,17.75 0.8125,0 6.4375,-15.75 0.3125,-0.875 3.625,0 0.1875,0.4375 6.5,16.1875 0.8125,0 -7.3125,-18.1875 -0.1875,-0.4375 z m -61.66613,2.81074 -2,5.375 0.75,0 1.25,-3.375 1.125,3.375 0.6875,0 z m -3.4375,9.4375 -1.8125,5 -4.1875,0 c -0.2717,0.66452 -0.54614,1.34944 -0.8125,2 l 5,0 1.8125,-5 6.6875,0 1.625,5 5.25,0 c -0.26312,-0.65902 -0.54458,-1.33248 -0.8125,-2 l -4.4375,0 -1.625,-5 z m 65.04113,-0.68574 -0.5625,1.0625 c 0,0.64304 0.5445,1.1875 1.1875,1.1875 l 2.3125,0 c 0.64302,0 1.18576,-0.54446 1.1875,-1.1875 l -0.5625,-1.0625 c -0.1896,0.1296 -0.38386,0.25 -0.625,0.25 l -2.3125,0 c -0.24112,0 -0.4351,-0.1204 -0.625,-0.25 z M 67,169.56249 l 0,2 c 0,2.57212 2.1154,4.6875 4.6875,4.6875 l 18.625,0 c 2.57212,0 4.625,-2.11538 4.625,-4.6875 l 0,-2 c 0,2.57212 -2.05288,4.6875 -4.625,4.6875 l -18.625,0 c -2.5721,0 -4.6875,-2.11538 -4.6875,-4.6875 z m -62.0625,4.6875 0,2 26.0625,0 0,-2 z m 6.1875,38 -1.125,1.25 0.9375,0.9375 2.0625,-2.1875 z m 9.875,0 2.0625,2.1875 0.9375,-0.9375 -1.125,-1.25 z m 47,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 7,0 c -1.108,0 -2,0.892 -2,2 l 0,2 c 0,-1.108 0.892,-2 2,-2 1.108,0 2,0.892 2,2 l 0,-2 c 0,-1.108 -0.892,-2 -2,-2 z m 44,0 c -1.108,0 -2,0.892 -2,2 l 0,2 c 0,-1.108 0.892,-2 2,-2 1.108,0 2,0.892 2,2 l 0,-2 c 0,-1.108 -0.892,-2 -2,-2 z m 7,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m -90,4 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 16,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 58,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 16,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m -152,1.25 -3,2.75 0,2 3,-2.75 4,4 4,0 0,-2 -4,0 z m 22,0 -4,4 -4,0 0,2 4,0 4,-4 3,2.75 0,-2 z m 40,2.75 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 16,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 58,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 16,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m -90,4 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 16,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 58,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 16,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m -90,4 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 58,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m -144,2.75 -4,4 0.9375,1.0625 3.0625,-3.0625 z m 6,0 0,2 3.0625,3.0625 0.9375,-1.0625 z m 51,1.25 c -1.108,0 -2,0.892 -2,2 0,0.3758 0.1336,0.70026 0.3125,1 0.34846,-0.58398 0.9553,-1 1.6875,-1 l 10,0 c 0.7322,0 1.33904,0.41602 1.6875,1 0.1788,-0.29974 0.3125,-0.6242 0.3125,-1 0,-1.108 -0.892,-2 -2,-2 z m 74,0 c -1.108,0 -2,0.892 -2,2 0,0.3758 0.13364,0.70026 0.3125,1 0.34847,-0.58398 0.9553,-1 1.6875,-1 l 10,0 c 0.7322,0 1.33903,0.41602 1.6875,1 0.17886,-0.29974 0.3125,-0.6242 0.3125,-1 0,-1.108 -0.892,-2 -2,-2 z m -58,2 0,2 c 0,2.1814 1.8186,4 4,4 2.1814,0 4,-1.8186 4,-4 l 0,-2 c 0,2.1814 -1.8186,4 -4,4 -2.1814,0 -4,-1.8186 -4,-4 z m 44,0 0,2 c 0,2.1814 1.8186,4 4,4 2.1814,0 4,-1.8186 4,-4 l 0,-2 c 0,2.1814 -1.8186,4 -4,4 -2.1814,0 -4,-1.8186 -4,-4 z m -63.875,1 c -0.0832,0.31758 -0.125,0.65916 -0.125,1 0,2.1814 1.8186,4 4,4 l 10,0 c 2.1814,0 4,-1.8186 4,-4 0,-0.34084 -0.0418,-0.68242 -0.125,-1 -0.44952,1.7149 -2.03444,3 -3.875,3 l -10,0 c -1.84056,0 -3.42548,-1.2851 -3.875,-3 z m 74,0 c -0.0832,0.31758 -0.125,0.65916 -0.125,1 0,2.1814 1.8186,4 4,4 l 10,0 c 2.1814,0 4,-1.8186 4,-4 0,-0.34084 -0.0418,-0.68242 -0.125,-1 -0.44953,1.7149 -2.03444,3 -3.875,3 l -10,0 c -1.84056,0 -3.42547,-1.2851 -3.875,-3 z m -138.125,3 0,2 10,0 -1.875,-2 z m 19.875,0 -1.875,2 10,0 0,-2 z m -5.0625,40.5625 c -2.53002,0 -4.625,2.09498 -4.625,4.625 l -4.3125,0 c -0.142,0.6402 -0.25,1.318 -0.25,2 l 4.5625,0 c 0,-2.53002 2.09498,-4.625 4.625,-4.625 2.19372,0 4.05502,1.55698 4.5,3.625 0.0686,-0.3161 0.0625,-0.66256 0.0625,-1 0,-2.53002 -2.03248,-4.625 -4.5625,-4.625 z m 9.0625,5.75 c -0.46388,3.76028 -3.21444,6.8218 -6.8125,7.75 l 0,0.25 c 0,1.265 -0.985,2.3125 -2.25,2.3125 -1.265,0 -2.3125,-1.0475 -2.3125,-2.3125 l 0,1.75 0,0.25 c 0,0.82104 0.4694,1.52664 1.125,1.9375 0.36744,-0.1472 0.7662,-0.25 1.1875,-0.25 0.4213,0 0.82006,0.1028 1.1875,0.25 0.63712,-0.41086 1.0625,-1.11646 1.0625,-1.9375 l 0,-0.25 c 3.95314,-1.0198 6.875,-4.60562 6.875,-8.875 0,-0.29446 -0.0357,-0.5875 -0.0625,-0.875 z m -12.0625,15.875 c -0.1058,0.31798 -0.1875,0.64554 -0.1875,1 0,1.76616 1.42132,3.25 3.1875,3.25 1.76618,0 3.1875,-1.48384 3.1875,-3.25 0,-0.35446 -0.0819,-0.68202 -0.1875,-1 -0.42134,1.28246 -1.58826,2.25 -3,2.25 -1.41174,0 -2.57866,-0.96754 -3,-2.25 z"
1748 id="path5248"
1749 inkscape:connector-curvature="0"
1750 sodipodi:nodetypes="ccccccsssscssccsscsscsssssssssscccccccssssssscccsscsccccccssccsccsccsscccccccsccccccsccccccccccccccccccccccccccccccccccccccccccccccccsscscsssscscsscscsssccssscscsscscsscccsccsscssccscscccccccccccccsscsscssssccscscscccssscsccscssssscsccscssssscsscssssscsscssssscsccccccccsccccsscsccscsssccccccccccscccccccssscsssccscccscccsccccccsscccccccccccccsssccccccccccccccccccccccccccccccccccccccccssscsccssscccscccccsssscssccsssscssccccccccccccccccccccccccccsccssscsscccccccccsssscsscssssscccscssssscccccsssscssccsssscssccssccsccccccccccccccccccsssscssccsssscsscssssssccscsssscccscccccsccccsssscscccccscccccccccccccccccccccccccsssccscccccccccccccccccccccccccccccccccccscccccccccccscccssccccccccccccscccccccccssssscscccccscccccccccccccsccccccccscccccccccscccccscsccsscsscccscsccsscsscccccsccscccccsscccscccccccccccscccssccccccccsssssssccccccccccccssssscscssssssssssccssssssssssssssscscccccsssssssssssssscccccccccccscssccccsssccsssscssssssssscssssssssssssssssssssssssssssscssssssssscssssssssssssssscccccccccccccccccccccccccccccccssscsccssscscsssssssssssssssssssssssssssscsccccsccccsccsccsccsccccscccccsccsssssssssssssssssssssssssssssssssssscssscsccssscsccccccccccccccccccccccccccccccccscsscscccsssscssssssssscssssscccccccssssccssssccsccccccsssscssssssssscsssssssssccsccccccccccccccccsssccssssssssssssssssssccssssssssssssssssssssssssssssssssssssssssssssssssssscccccccccccccccccccccccscccsccsccccscccsccsccssscsccssscscsssssssssssssssssssssssssssssssssccsssccsssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssscccccccccccccccccccccccccccccccccccccccccssssscsccssssscsccssscsccssscsccssscsccssscscscscsccsccscsccsccscscsccsccsscccsccccsccsccssssssccssssccsssccscsscccsscccscccsccccsscccsccscccssccssccccsccccsscccsccccsccccsccscccccccsccccscccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccsccccccccccccccccccccccccccscscsscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccssscscccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccscccccscccccccccscccssscsccssscccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccssssccsscccssscsccsscccccccccccccccccccccccccccccccccccccccccssccssccsssscssccccccccccccccccssssssssssssssssssssssssssscscsssscscsssssssssssssssssssssssssssssssssssssssssssssssccccccccccccccccccssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssccccccccccsscsscssssscsscssscssscsccssscsccsssscssccsssscsscccccccccccsccccscssccssccscscscsccssscsc" /><path
1751 sodipodi:nodetypes="sssss"
1752 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline"
1753 d="m 81,276.11885 c -7.73034,0 -14,6.3004 -14,14.06864 0,7.76824 6.26966,14.06862 14,14.06862 7.73266,0 14,-6.30038 14,-14.06862 0,-7.76824 -6.26734,-14.06864 -14,-14.06864 z"
1754 id="path4290-7"
1755 inkscape:connector-curvature="0" /><path
1756 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline"
1757 d="m 197,-363.81251 0,28 22,0 0,-18 0,-2 -8,-8 -2,0 z m 2,2 11,0 7,7 0,17 -10,0 -6,0 -2,0 z"
1758 id="path4249"
1759 inkscape:connector-curvature="0"
1760 sodipodi:nodetypes="cccccccccccccccc" /><path
1761 sodipodi:nodetypes="cccccccccccccccc"
1762 inkscape:connector-curvature="0"
1763 id="path4303"
1764 d="m 283,-363.81251 0,28 -22,0 0,-18 0,-2 8,-8 2,0 z m -2,2 -11,0 -7,7 0,17 10,0 6,0 2,0 z"
1765 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline" /><path
1766 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline"
1767 d="m 93,-363.81251 0,28 -22,0 0,-18 0,-2 8,-8 2,0 z m -2,2 -11,0 -7,7 0,17 10,0 6,0 2,0 z"
1768 id="path4305"
1769 inkscape:connector-curvature="0"
1770 sodipodi:nodetypes="cccccccccccccccc" /><path
1771 sodipodi:nodetypes="cccccccccccccccc"
1772 inkscape:connector-curvature="0"
1773 id="path4307"
1774 d="m 5,-363.81251 0,28 22,0 0,-18 0,-2 -8,-8 -2,0 z m 2,2 11,0 7,7 0,17 -10,0 -6,0 -2,0 z"
1775 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline" /><path
1776 sodipodi:nodetypes="cccccccccccccccc"
1777 inkscape:connector-curvature="0"
1778 id="path4311"
1779 d="m 517,-363.81251 0,28 22,0 0,-18 0,-2 -8,-8 -2,0 z m 2,2 11,0 7,7 0,17 -10,0 -6,0 -2,0 z"
1780 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline" /><path
1781 inkscape:connector-curvature="0"
1782 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline"
1783 d="m 581,-363.75001 0,9.5 c 0.38292,-0.24029 0.74124,-0.44168 1.125,-0.625 l 0.875,-0.4375 0,-6.4375 10.6875,0 7.3125,7.3125 0,16.6875 -10,0 0,1.9375 c 0,0.0209 3.2e-4,0.0417 0,0.0625 l 12,0 0,-18 0,-2 -8,-8 -2,0 -12,0 z m 2,10.6875 c -0.72246,0.34511 -1.37784,0.75283 -1.9375,1.3125 -1.26676,1.26675 -2.0625,3.067 -2.0625,5 0,2.78704 1.6474,5.12879 4,6.25 l 0,4.6875 c 0,1.108 0.89198,2 2,2 l 2,0.0625 c 1.108,0 2,-0.9545 2,-2.0625 l 0,-4.6875 c 2.35258,-1.12121 4,-3.46296 4,-6.25 0,-2.78704 -1.64238,-5.18627 -4,-6.3125 l 0,5.3125 -2.9375,2 -3.0625,-2 0,-5.3125 z"
1784 id="path5011-3" /><path
1785 id="path4415"
1786 d="m 667,-363.75001 0,9.5 c -0.38292,-0.24029 -0.74124,-0.44168 -1.125,-0.625 l -0.875,-0.4375 0,-6.4375 -10.6875,0 -7.3125,7.3125 0,16.6875 10,0 0,1.9375 c 0,0.0209 -3.2e-4,0.0417 0,0.0625 l -12,0 0,-18 0,-2 8,-8 2,0 12,0 z m -2,10.6875 c 0.72246,0.34511 1.37784,0.75283 1.9375,1.3125 1.26676,1.26675 2.0625,3.067 2.0625,5 0,2.78704 -1.6474,5.12879 -4,6.25 l 0,4.6875 c 0,1.108 -0.89198,2 -2,2 l -2,0.0625 c -1.108,0 -2,-0.9545 -2,-2.0625 l 0,-4.6875 c -2.35258,-1.12121 -4,-3.46296 -4,-6.25 0,-2.78704 1.64238,-5.18627 4,-6.3125 l 0,5.3125 2.9375,2 3.0625,-2 0,-5.3125 z"
1787 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline"
1788 inkscape:connector-curvature="0" /><path
1789 inkscape:connector-curvature="0"
1790 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline"
1791 d="m 325,-363.81251 0,28 17.625,0 -2,-2 -2.625,0 -3,0 -6,0 -2,0 0,-24 11,0 7,7 0,2.4375 c 1.22936,1.53978 2,3.45759 2,5.5625 l 0,-7 0,-2 -8,-8 -2,0 -12,0 z m 22,17 c 0,0.96638 -0.40154,1.72552 -0.6875,2.5625 l 0.6875,0.6875 0,-3.25 z m -9,-7 c -3.8423,0 -7,3.15768 -7,7 0,3.8423 3.1577,7 7,7 0.99078,0 1.89266,-0.24748 2.75,-0.625 l 4.6875,4.6875 3.25,-3.25 -4.5625,-4.5625 c 0.533,-0.9857 0.875,-2.0592 0.875,-3.25 0,-3.84232 -3.1577,-7 -7,-7 z m -0.0624,2 c 2.76142,0 5,2.23858 5,5 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 z"
1792 id="path4953-8" /><path
1793 id="path4243"
1794 d="m 413,-363.81251 0,28 -17.625,0 2,-2 2.625,0 3,0 6,0 2,0 0,-24 -11,0 -7,7 0,2.4375 c -1.22936,1.53978 -2,3.45759 -2,5.5625 l 0,-7 0,-2 8,-8 2,0 12,0 z m -22,17 c 0,0.96638 0.40154,1.72552 0.6875,2.5625 l -0.6875,0.6875 0,-3.25 z m 9,-7 c 3.8423,0 7,3.15768 7,7 0,3.8423 -3.1577,7 -7,7 -0.99078,0 -1.89266,-0.24748 -2.75,-0.625 l -4.6875,4.6875 -3.25,-3.25 4.5625,-4.5625 c -0.533,-0.9857 -0.875,-2.0592 -0.875,-3.25 0,-3.84232 3.1577,-7 7,-7 z m 0.0624,2 c -2.76142,0 -5,2.23858 -5,5 0,2.76142 2.23858,5 5,5 2.76142,0 5,-2.23858 5,-5 0,-2.76142 -2.23858,-5 -5,-5 z"
1795 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline"
1796 inkscape:connector-curvature="0" /><path
1797 inkscape:connector-curvature="0"
1798 style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline"
1799 d="m 67,-301.81251 0,20 6,0 0,-2 -2,0 -2,0 0,-16 9,0 5,5 0,1 2,0 0,-2 -6,-6 -2,0 -10,0 z m 8,10 0,20 18,0 0,-12 0,-2 -6,-6 -2,0 -10,0 z m 2,2 9,0 5,5 0,11 -10,0 -2,0 -2,0 0,-16 z"
1800 id="path3594-7" /><path
1801 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1802 d="m 142.0625,-301.81251 c -0.58921,0 -1.0625,0.47329 -1.0625,1.0625 l 0,0.9375 -0.9375,0 c -0.58921,0 -1.0625,0.47329 -1.0625,1.0625 l 0,1.875 c 0,0.58921 0.47329,1.0625 1.0625,1.0625 l 2,0 5.875,0 2,0 c 0.58921,0 1.0625,-0.47329 1.0625,-1.0625 l 0,-1.875 c 0,-0.58921 -0.47329,-1.0625 -1.0625,-1.0625 l -0.9375,0 0,-0.9375 c 0,-0.58921 -0.47329,-1.0625 -1.0625,-1.0625 z m -5.0625,2 c -2.18141,0 -4,1.81859 -4,4 l 0,18 c 0,2.18141 1.81859,4 4,4 l 2,0 0,-2 -2,0 c -1.108,0 -2,-0.892 -2,-2 l 0,-18 c 0,-1.108 0.892,-2 2,-2 l 0,-0.9375 c 0,-0.36716 0.0632,-0.73321 0.1875,-1.0625 z m 15.8125,0 c 0.12429,0.32929 0.1875,0.69534 0.1875,1.0625 l 0,0.9375 c 1.108,0 2,0.892 2,2 l 0,4 2,0 0,-4 c 0,-2.18141 -1.81859,-4 -4,-4 z m -9.8125,24 c -1.108,0 -2,2 -2,2 l 0,0 c 0,0 0.892,2 2,2 l 14,0 c 1.108,0 2,-2 2,-2 l 0,0 c 0,0 -0.892,-2 -2,-2 z"
1803 id="rect4963-2"
1804 inkscape:connector-curvature="0"
1805 sodipodi:nodetypes="sscssssccsssscsssssssccssscscscscsccsscsssssssss" /><path
1806 inkscape:connector-curvature="0"
1807 id="path4569"
1808 d="m 206.0625,-301.81251 c -0.58922,0 -1.0625,0.47329 -1.0625,1.0625 l 0,0.9375 -0.9375,0 c -0.58922,0 -1.0625,0.47329 -1.0625,1.0625 l 0,1.875 c 0,0.58921 0.47328,1.0625 1.0625,1.0625 l 2,0 5.875,0 2,0 c 0.58922,0 1.0625,-0.47329 1.0625,-1.0625 l 0,-1.875 c 0,-0.58921 -0.47328,-1.0625 -1.0625,-1.0625 l -0.9375,0 0,-0.9375 c 0,-0.58921 -0.47328,-1.0625 -1.0625,-1.0625 z m -5.0625,2 c -2.18141,0 -4,1.81859 -4,4 l 0,18 c 0,2.18141 1.81859,4 4,4 l 2,0 0,-2 -2,0 c -1.108,0 -2,-0.892 -2,-2 l 0,-18 c 0,-1.108 0.892,-2 2,-2 l 0,-0.9375 c 0,-0.36716 0.0632,-0.73321 0.1874,-1.0625 z m 15.8125,0 c 0.1243,0.32929 0.1875,0.69534 0.1875,1.0625 l 0,0.9375 c 1.108,0 2,0.892 2,2 l 0,4 2,0 0,-4 c 0,-2.18141 -1.8186,-4 -4,-4 l -0.1874,0 z m -9.8125,24 c -1.108,0 -2,2 -2,2 l 0,0 c 0,0 0.892,2 2,2 l 14,0 c 1.108,0 2,-2 2,-2 l 0,0 c 0,0 -0.892,-2 -2,-2 z"
1809 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1810 sodipodi:nodetypes="sscssssccsssscsssssssccssscscscscsccssccsssssssss" /><path
1811 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1812 d="m 275.9375,-301.81251 c 0.58922,0 1.0625,0.47329 1.0625,1.0625 l 0,0.9375 0.9375,0 c 0.58922,0 1.0625,0.47329 1.0625,1.0625 l 0,1.875 c 0,0.58921 -0.47328,1.0625 -1.0625,1.0625 l -2,0 -5.875,0 -2,0 c -0.58922,0 -1.0625,-0.47329 -1.0625,-1.0625 l 0,-1.875 c 0,-0.58921 0.47328,-1.0625 1.0625,-1.0625 l 0.9375,0 0,-0.9375 c 0,-0.58921 0.47328,-1.0625 1.0625,-1.0625 z m 5.0625,2 c 2.1814,0 4,1.81859 4,4 l 0,18 c 0,2.18141 -1.8186,4 -4,4 l -2,0 0,-2 2,0 c 1.108,0 2,-0.892 2,-2 l 0,-18 c 0,-1.108 -0.892,-2 -2,-2 l 0,-0.9375 c 0,-0.36716 -0.0632,-0.73321 -0.1874,-1.0625 z m -15.8125,0 c -0.1243,0.32929 -0.1875,0.69534 -0.1875,1.0625 l 0,0.9375 c -1.108,0 -2,0.892 -2,2 l 0,4 -2,0 0,-4 c 0,-2.18141 1.8186,-4 4,-4 l 0.1874,0 z m 9.8125,24 c 1.108,0 2,2 2,2 l 0,0 c 0,0 -0.892,2 -2,2 l -14,0 c -1.108,0 -2,-2 -2,-2 l 0,0 c 0,0 0.892,-2 2,-2 z"
1813 id="path4571"
1814 inkscape:connector-curvature="0"
1815 sodipodi:nodetypes="sscssssccsssscsssssssccssscscscscsccssccsssssssss" /><path
1816 inkscape:connector-curvature="0"
1817 id="path4573"
1818 d="m 334.0625,-301.81251 c -0.58922,0 -1.0625,0.47329 -1.0625,1.0625 l 0,0.9375 -0.9375,0 c -0.58922,0 -1.0625,0.47329 -1.0625,1.0625 l 0,1.875 c 0,0.58921 0.47328,1.0625 1.0625,1.0625 l 2,0 5.875,0 2,0 c 0.58922,0 1.0625,-0.47329 1.0625,-1.0625 l 0,-1.875 c 0,-0.58921 -0.47328,-1.0625 -1.0625,-1.0625 l -0.9375,0 0,-0.9375 c 0,-0.58921 -0.47328,-1.0625 -1.0625,-1.0625 z m -5.0625,2 c -2.1814,0 -4,1.81859 -4,4 l 0,18 c 0,2.18141 1.8186,4 4,4 l 2,0 0,-2 -2,0 c -1.108,0 -2,-0.892 -2,-2 l 0,-18 c 0,-1.108 0.892,-2 2,-2 l 0,-0.9375 c 0,-0.36716 0.0632,-0.73321 0.1874,-1.0625 z m 15.8125,0 c 0.1243,0.32929 0.1875,0.69534 0.1875,1.0625 l 0,0.9375 c 1.108,0 2,0.892 2,2 l 0,4 2,0 0,-4 c 0,-2.18141 -1.8186,-4 -4,-4 l -0.1874,0 z m -9.8125,24 c -1.108,0 -2,2 -2,2 l 0,0 c 0,0 0.892,2 2,2 l 14,0 c 1.108,0 2,-2 2,-2 l 0,0 c 0,0 -0.892,-2 -2,-2 z"
1819 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1820 sodipodi:nodetypes="sscssssccsssscsssssssccssscscscscsccssccsssssssss" /><path
1821 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1822 d="m 403.9375,-301.81251 c 0.58922,0 1.0625,0.47329 1.0625,1.0625 l 0,0.9375 0.9375,0 c 0.58922,0 1.0625,0.47329 1.0625,1.0625 l 0,1.875 c 0,0.58921 -0.47328,1.0625 -1.0625,1.0625 l -2,0 -5.875,0 -2,0 c -0.58922,0 -1.0625,-0.47329 -1.0625,-1.0625 l 0,-1.875 c 0,-0.58921 0.47328,-1.0625 1.0625,-1.0625 l 0.9375,0 0,-0.9375 c 0,-0.58921 0.47328,-1.0625 1.0625,-1.0625 z m 5.0625,2 c 2.1814,0 4,1.81859 4,4 l 0,18 c 0,2.18141 -1.8186,4 -4,4 l -2,0 0,-2 2,0 c 1.108,0 2,-0.892 2,-2 l 0,-18 c 0,-1.108 -0.892,-2 -2,-2 l 0,-0.9375 c 0,-0.36716 -0.0632,-0.73321 -0.1874,-1.0625 z m -15.8125,0 c -0.1243,0.32929 -0.1875,0.69534 -0.1875,1.0625 l 0,0.9375 c -1.108,0 -2,0.892 -2,2 l 0,4 -2,0 0,-4 c 0,-2.18141 1.8186,-4 4,-4 l 0.1874,0 z m 9.8125,24 c 1.108,0 2,2 2,2 l 0,0 c 0,0 -0.892,2 -2,2 l -14,0 c -1.108,0 -2,-2 -2,-2 l 0,0 c 0,0 0.892,-2 2,-2 z"
1823 id="path4575"
1824 inkscape:connector-curvature="0"
1825 sodipodi:nodetypes="sscssssccsssscsssssssccssscscscscsccssccsssssssss" /><path
1826 style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline"
1827 d="m 273,84.06249 c -7.73034,0 -14,6.29426 -14,14.0625 0,7.76824 6.26966,14.0625 14,14.0625 7.73266,0 14,-6.29426 14,-14.0625 0,-7.76824 -6.26734,-14.0625 -14,-14.0625 z m 0,2.0625 c 6.62742,0 12,5.37258 12,12 0,6.62742 -5.37258,12 -12,12 -6.62742,0 -12,-5.37258 -12,-12 0,-6.62742 5.37258,-12 12,-12 z m -4.6875,6 c -1.57516,0 -2.8125,1.2921 -2.8125,2.875 0,1.5829 1.23734,2.875 2.8125,2.875 1.57522,0 2.875,-1.2921 2.875,-2.875 0,-1.5829 -1.29978,-2.875 -2.875,-2.875 z m 9.375,0 c -1.5752,0 -2.875,1.2921 -2.875,2.875 0,1.5829 1.2998,2.875 2.875,2.875 1.57518,0 2.8125,-1.2921 2.8125,-2.875 0,-1.5829 -1.23732,-2.875 -2.8125,-2.875 z m -10.46438,9.55026 c -0.0732,0.3088 -0.162,0.63162 -0.162,0.9536 0,3.11996 4.84578,3.6484 5.9389,3.62114 1.09312,-0.0272 5.9389,-0.50118 5.9389,-3.62114 0,-0.32198 -0.0888,-0.6448 -0.162,-0.9536 -2.61418,2.48674 -5.27502,2.05926 -5.7769,2.11548 -0.50188,0.0562 -4.05892,-0.0948 -5.77688,-2.11548 z"
1828 id="path3733"
1829 inkscape:connector-curvature="0"
1830 sodipodi:nodetypes="sssssssssssssssssssscszsczcc" /><path
1831 sodipodi:nodetypes="ssssssssscccccccccccccccccccccccccccccc"
1832 inkscape:connector-curvature="0"
1833 id="path3755"
1834 d="m 133,84.18749 c -2.216,0 -4,1.784 -4,4 l 0,20 c 0,2.216 1.784,4 4,4 l 24,0 c 2.216,0 4,-1.784 4,-4 l 0,-20 c 0,-2.216 -1.784,-4 -4,-4 z m -2,8 8,0 0,8 -8,0 z m 10,0 8,0 0,8 -8,0 z m 10,0 8,0 0,8 -8,0 z m -20,10 8,0 0,8 -8,0 z m 10,0 8,0 0,8 -8,0 z m 10,0 8,0 0,8 -8,0 z"
1835 style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;display:inline" /><path
1836 style="font-size:15.85716724px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.98999999;fill:#ffffff;fill-opacity:0.99215686;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
1837 d="m 209.4375,-105.81251 c -2.7874,2e-5 -4.9509,0.57368 -6.4375,1.8125 -1.4866,1.23886 -2.1875,3.01034 -2.1875,5.3125 0,1.83762 0.49916,3.35352 1.5625,4.4375 0.1594,0.1608 0.37592,0.28962 0.5625,0.4375 l -4.9375,0 c -0.554,0 -1,0.3671 -1,0.875 l 0,0.1874 c 0,0.50792 0.446,0.9376 1,0.9376 l 10,0 1.75,0.4375 c 1.40402,0.30972 2.34792,0.6077 2.8125,1 0.47488,0.3923 0.74998,0.96484 0.75,1.6875 -2e-5,0.80524 -0.37084,1.4414 -1.0625,1.875 -0.6917,0.4336 -1.69922,0.625 -3,0.625 -1.28014,0 -2.61664,-0.1702 -4,-0.5625 -1.37306,-0.40262 -2.77372,-1.02788 -4.25,-1.8125 l 0,5.0625 c 1.47628,0.54716 2.9612,0.97126 4.4375,1.25 1.47628,0.2787 2.90902,0.4375 4.375,0.4375 3.1074,0 5.43022,-0.63616 6.9375,-1.875 1.51756,-1.24916 2.31248,-3.13754 2.3125,-5.6875 0,-0.89622 -0.1438,-1.7306 -0.375,-2.4375 l 3.3125,0 c 0.554,0 1,-0.4296 1,-0.9375 l 0,-0.1874 c 0,-0.50792 -0.446,-0.8751 -1,-0.8751 l -4.5,0 c -0.021,-0.021 -0.0412,-0.0418 -0.0624,-0.0624 -1.084,-1.053 -2.92942,-1.8588 -5.5,-2.375 l -2.5625,-0.5 c -1.20786,-0.24776 -2.03544,-0.5343 -2.5,-0.875 -0.45426,-0.35098 -0.68752,-0.88056 -0.6875,-1.5 -2e-5,-0.82588 0.38112,-1.42018 1.0625,-1.8125 0.68136,-0.39226 1.70032,-0.56248 3.125,-0.5625 1.07366,2e-5 2.22962,0.1484 3.4375,0.4375 1.20786,0.28908 1.98018,0.68222 3.25,1.25 l 0,-4.9375 c -1.435,-0.38196 -2.34544,-0.6267 -3.6875,-0.8125 -1.34208,-0.1962 -2.6677,-0.24998 -3.9375,-0.25 z"
1838 id="path3568-3"
1839 inkscape:connector-curvature="0" /><path
1840 style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
1841 d="m 129,276.18749 0,28 6,0 0,-2 -4,0 0,-24 4,0 0,-2 z m 26,0 0,2 4,0 0,24 -4,0 0,2 6,0 0,-28 z"
1842 id="rect3578-3"
1843 inkscape:connector-curvature="0"
1844 sodipodi:nodetypes="cccccccccccccccccc" /><path
1845 style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
1846 d="m 197.9375,-233.75001 -2.9375,12.25 0,1.75 2.34375,0 0,-1.75 0.5,-2.90625 2.5,0 0.5,2.90625 0,1.75 2.34375,0 0,-1.75 -2.90625,-12.25 -2.34375,0 z m 7.0625,0 0,14 4.6875,0 c 0.68312,-0.0583 1.26208,-0.20417 1.75,-0.4375 1.17106,-0.58333 1.74998,-1.60416 1.75,-3.0625 l 0,-1.15625 c -2e-5,-1.32222 -0.62982,-2.35485 -1.9375,-3.09375 0.91732,-0.42777 1.375,-1.14513 1.375,-2.15625 l 0,-0.59375 c -0.0585,-0.68055 -0.2033,-1.26388 -0.4375,-1.75 -0.58554,-1.16665 -1.62993,-1.74999 -3.09375,-1.75 l -4.09375,0 z m 13.5,0 c -0.68312,0.0583 -1.26206,0.20418 -1.75,0.4375 -1.17106,0.58335 -1.75,1.60418 -1.75,3.0625 l 0,7 c 0.0585,0.68056 0.20328,1.26389 0.4375,1.75 0.20859,0.41563 0.49244,0.73244 0.8125,1 l -1.8125,1.8125 -7.4375,7.5 -4.25,-4.25 -2.8125,2.8125 4.25,4.25 2.8125,2.8125 2.8125,-2.8125 10.4375,-10.5 c -0.10769,-0.11377 -0.62171,-0.47602 -1.1875,-0.875 l 0.625,0 c 0.6831,-0.0389 1.26208,-0.18472 1.75,-0.4375 1.17106,-0.58333 1.74998,-1.60416 1.75,-3.0625 l 0,-0.59375 -2.34375,0 0,1.1875 c -0.0586,0.77778 -0.43413,1.15625 -1.15625,1.15625 l -1.1875,0 c -0.78072,-0.0583 -1.15625,-0.4368 -1.15625,-1.15625 l 0,-8.1875 c 0.0585,-0.77777 0.43409,-1.15624 1.15625,-1.15625 l 1.1875,0 c 0.7807,0.0583 1.15625,0.43682 1.15625,1.15625 l 0,1.1875 2.34375,0 0,-0.59375 c -0.0586,-0.68055 -0.2033,-1.26388 -0.4375,-1.75 -0.58554,-1.16665 -1.5987,-1.74999 -3.0625,-1.75 l -1.1875,0 z m -19.40625,1.75 0.96875,5.84375 -1.9375,0 0.96875,-5.84375 z m 8.25,0 1.75,0 c 0.7807,0.0583 1.1875,0.43682 1.1875,1.15625 l 0,1.75 c -0.0585,0.77779 -0.46536,1.18751 -1.1875,1.1875 l -1.75,0 0,-4.09375 z m 0,5.84375 2.34375,0 c 0.78072,0.0583 1.15625,0.43681 1.15625,1.15625 l 0,2.34375 c -0.0586,0.77778 -0.43411,1.15625 -1.15625,1.15625 l -2.34375,0 0,-4.65625 z"
1847 id="path4591-8"
1848 inkscape:connector-curvature="0" /><path
1849 style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
1850 d="m 129,-237.75001 0,30 10,0 0,-2.3125 0,-1.6875 0,-0.625 0,-3.375 10,0 0,2 10,0 0,-24 -30,0 z m 12,24 0,2 2,0 0,4 -2,0 0,2 6,0 0,-2 -2,0 0,-4 2,0 0,-2 -2,0 -2,0 -2,0 z"
1851 id="rect6534-3"
1852 inkscape:connector-curvature="0" /><path
1853 style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;display:inline"
1854 d="m 586.9375,-27.03126 -5.6875,5.6875 5.6875,5.6875 1.90625,-1.84375 -3.75,-3.84375 3.75,-3.75 z m 7.375,0 -4.84375,11.375 3.71875,0 5.0625,-11.34375 -3.9375,-0.0312 z m 6.25,0 -1.9375,1.9375 3.78125,3.75 -3.78125,3.84375 1.9375,1.84375 5.65625,-5.6875 z"
1855 id="path4610-9"
1856 inkscape:connector-curvature="0"
1857 sodipodi:nodetypes="cccccccccccccccccccc" /><path
1858 sodipodi:nodetypes="sssssssscsscccccccscsssscssssssssssssssscsssscscccccccsssssssss"
1859 inkscape:connector-curvature="0"
1860 id="path4589-5"
1861 d="m 68,-237.75001 c -1.108,0 -2,0.892 -2,2 l 0,12 c 0,1.108 0.892,2 2,2 l 7,0 c 1.108,0 2,-0.892 2,-2 l 0,-6 c 0,-1.108 -0.892,-2 -2,-2 l -5,0 0,-4 c 0,-1.108 -0.892,-2 -2,-2 z m 18,4 -6,3.875 6,4 0,-2.625 c 4.53598,0.002 6.887,2.90102 8,4.625 -0.112,-4.06048 -3.48268,-7.3724 -8,-7.375 z m -15,4 2,0 1,0 c 0,0 1,0.446 1,1 l 0,4 c 0,0.554 -0.446,1 -1,1 l -1,0 -2,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-4 c 0,-0.554 1,-1 1,-1 z m 16,8 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 4,0 c 0.554,0 1,0.446 1,1 l 0,2 c 0,0.554 -0.446,1 -1,1 l -5,0 c -1.108,0 -2,0.892 -2,2 l 0,6 c 0,1.108 0.892,2 2,2 l 6,0 2,0 c 1.108,0 2,-0.892 2,-2 l 0,-12 c 0,-1.108 -0.892,-2 -2,-2 l -1,0 z m -19,4 c 0.112,4.06048 3.48268,7.37242 8,7.375 l 0,2.5 6,-3.875 -6,-4 0,2.625 c -4.53598,-0.002 -6.887,-2.90102 -8,-4.625 z m 20,4 3,0 c 0.554,0 1,0.446 1,1 l 0,4 c 0,0.554 -0.446,1 -1,1 l -3,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-4 c 0,-0.554 0.446,-1 1,-1 z"
1862 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.98999999;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" /><path
1863 inkscape:connector-curvature="0"
1864 id="path5866-1"
1865 style="font-size:22.18914413px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.98009997;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Audimat Mono;-inkscape-font-specification:Audimat Mono"
1866 d="m 584.66965,-43.747414 c 1.46129,2e-5 2.48419,0.58335 3.06872,1.75001 0.2338,0.48612 0.37993,1.06945 0.43839,1.74999 l 0,7.00001 c -10e-6,1.45834 -0.58452,2.47916 -1.75355,3.0625 -0.48711,0.23333 -1.07162,0.37917 -1.75356,0.4375 l -4.67613,0 0,-14.00001 4.67613,0 m 1.16904,11.08334 0,-8.16667 c -1e-5,-0.71943 -0.38969,-1.10832 -1.16904,-1.16666 l -2.33806,0 0,10.5 2.33806,0 c 0.7209,0 1.11058,-0.38889 1.16904,-1.16667" /><path
1867 inkscape:connector-curvature="0"
1868 id="path5868-6"
1869 style="font-size:22.18914413px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.98009997;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Audimat Mono;-inkscape-font-specification:Audimat Mono"
1870 d="m 597.00773,-41.997404 -2.33807,0 0,10.5 2.33807,0 0,1.75 -7.0142,0 0,-1.75 2.33806,0 0,-10.5 -2.33806,0 0,-1.75001 7.0142,0 0,1.75001" /><path
1871 inkscape:connector-curvature="0"
1872 id="path5870-0"
1873 style="font-size:22.18914413px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.98009997;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Audimat Mono;-inkscape-font-specification:Audimat Mono"
1874 d="m 607.17677,-41.997404 -2.92259,12.25 -2.33807,0 -2.92258,-12.25 0,-1.75001 2.33807,0 0,1.75001 1.75354,10.5 1.75356,-10.5 0,-1.75001 2.33807,0 0,1.75001" /><path
1875 style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline"
1876 d="m 223.46875,278.31249 c -5.17784,1.61214 -11.48202,1.46403 -12.53125,1.375 l 0.5,1.9375 c 1.53833,0.005 2.5625,0.0382 4.5625,-0.0781 l 0,4.70312 -6,0 0,2 6,0 0,6 -4,0 -2,0 0,10 2,0 0,-2 10,0 0,1 2,0 0,-1 0,-8 -2,0 -4,0 0,-6 6,0 0,-2 -6,0 0,-4.84375 c 2.35241,-0.16735 3.875,-0.53375 5.875,-1.25 z M 196,278.24999 l 0,2 12,0 0,-2 z m -2,4 0,2 16,0 0,-2 z m 2,4 0,2 12,0 0,-2 z m 0,4 0,2 12,0 0,-2 z m 0,4 0,10 2,0 0,-2 8,0 0,1 2,0 0,-1 0,-8 -2,0 -8,0 z m 2,2 8,0 0,4 -8,0 z m 14,0 10,0 0,4 -10,0 z"
1877 id="rect4258-5"
1878 inkscape:connector-curvature="0"
1879 sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" /><path
1880 style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;stroke:none;display:inline"
1881 d="m 257,276.24999 0,2 2,0 0,-2 -2,0 z m 4,0 0,2 2,0 0,-2 -2,0 z m 4,0 0,2 2,0 0,-2 -2,0 z m 4,0 0,2 2,0 0,-2 -2,0 z m 4,0 0,2 2,0 0,-2 -2,0 z m 4,0 0,2 2,0 0,-2 -2,0 z m 4,0 0,2 2,0 0,-2 -2,0 z m 4,0 0,2 2,0 0,-2 -2,0 z m -28,4 0,2 2,0 0,-2 -2,0 z m 4,0 0,10 0,2 0,6 10,0 0,-2 -8,0 0,-2 8,0 2,0 0,-2 -10,0 0,-2 12,0 8,0 0,-2 0,-8 -8,0 -14,0 z m 24,0 0,2 2,0 0,-2 -2,0 z m -22,2 18,0 0,2 -18,0 0,-2 z m -6,2 0,2 2,0 0,-2 -2,0 z m 28,0 0,2 2,0 0,-2 -2,0 z m -22,2 17.9374,0 0,2 -17.9374,0 0,-2 z m -6,2 0,2 2,0 0,-2 -2,0 z m 28,0 0,2 2,0 0,-2 -2,0 z m -6,3.5 -7.375,6.75 7.375,6.5625 0,-3.8125 -2.875,-2.8125 2.875,-3.0625 0,-3.625 z m 2,0 0,3.75 2.75,2.9375 -2.75,2.9375 0,3.8125 7.25,-6.75 -7.25,-6.6875 z m -24,0.5 0,2 2,0 0,-2 -2,0 z m 0,4 0,2 2,0 0,-2 -2,0 z m 0,4 0,2 2,0 0,-2 -2,0 z m 4,0 0,2 2,0 0,-2 -2,0 z m 4,0 0,2 2,0 0,-2 -2,0 z m 4,0 0,2 2,0 0,-2 -2,0 z"
1882 id="rect5051-9"
1883 inkscape:connector-curvature="0" /></g><g
1884 inkscape:groupmode="layer"
1885 id="layer3"
1886 inkscape:label="Icons"
1887 style="opacity:0.98999999;display:inline"
1888 transform="translate(-1,367.74999)"
1889 sodipodi:insensitive="true"><rect
1890 y="274.25012"
1891 x="137"
1892 height="28.00008"
1893 width="16"
1894 id="rect4452"
1895 style="fill:#cccccc;fill-opacity:1;stroke:none" /><rect
1896 style="fill:#cccccc;fill-opacity:1;stroke:none"
1897 id="rect4367"
1898 width="24"
1899 height="20.000111"
1900 x="133"
1901 y="278.25012" /><g
1902 id="g4363"
1903 style="font-size:13.71140385px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#676767;fill-opacity:1;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;font-family:Sans"
1904 transform="matrix(2,0,0,2,3.0000003,-367.74989)"><path
1905 sodipodi:nodetypes="csssccccccsssc"
1906 inkscape:connector-curvature="0"
1907 id="path4365"
1908 style="font-variant:normal;font-weight:bold;font-stretch:normal;fill:#676767;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;font-family:Nimbus Sans L;-inkscape-font-specification:Nimbus Sans L Bold"
1909 d="m 70.006423,329.43503 1.991763,0 c 1.837326,0 3.016509,-1.30258 3.016509,-3.33187 0,-2.00186 -1.138049,-3.09877 -3.22218,-3.09877 l -3.790777,0 0,9.99561 2.004685,0 0,-3.56497 m 0,-1.71392 0,-3.0028 1.347327,0 c 1.096911,0 1.604234,0.4799 1.604234,1.50826 0,1.01464 -0.507323,1.49454 -1.604234,1.49454 l -1.347327,0" /></g><path
1910 style="fill:url(#linearGradient5768);fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
1911 d="m 14,339.43759 c -1.5815,0.018 -3.20062,0.68066 -4.9999999,2.75 l 0,14 0,0.5 0,1.5 0,0.0624 c 0.45016,-0.50734 0.87536,-0.90294 1.3124999,-1.25 0.3747,-0.29748 0.75862,-0.55586 1.125,-0.75 0.1248,-0.0662 0.25102,-0.1324 0.375,-0.1874 0.1664,-0.07 0.33476,-0.1358 0.5,-0.1874 0.0628,-0.021 0.1248,-0.0442 0.1874,-0.0624 0.1648,-0.0456 0.33692,-0.094 0.5,-0.125 0.018,0.002 0.0444,-0.002 0.0624,0 0.35368,-0.0632 0.71418,-0.131 1.0625,-0.125 2.73838,0.0472 5.34698,1.9999 8.0625,2.75 0.40146,0.1108 0.77966,0.2032 1.1875,0.25 0.1304,0.014 0.24392,0.0554 0.375,0.0624 0.1182,0.006 0.25616,6.2e-4 0.375,0 0.056,0.008 0.1304,0.002 0.1874,0 0.1064,-0.004 0.20652,-0.0488 0.3125,-0.0624 0.083,-0.01 0.1658,0.01 0.25,0 0.0602,-0.008 0.1272,0.01 0.1874,0 0.1922,-0.0322 0.3681,-0.133 0.5625,-0.1874 0.33684,-0.0946 0.65612,-0.20516 1,-0.375 0.0596,-0.0282 0.1274,-0.031 0.1874,-0.0624 0.03,-0.016 0.035,-0.0394 0.0624,-0.0624 0.0276,-0.0232 0.0322,-0.0458 0.0624,-0.0624 0.32472,-0.1828 0.6681,-0.36436 1,-0.625 0.0218,-0.018 0.0406,-0.045 0.0624,-0.0624 0.33604,-0.26566 0.65626,-0.51938 1,-0.875 l 0,-0.0624 0,-2 0,-12 0,-2 c -0.30804,0.32802 -0.63472,0.62818 -0.9375,0.875 -0.0218,0.018 -0.0406,0.0448 -0.0624,0.0624 -0.2779,0.22152 -0.53774,0.39276 -0.8125,0.5625 -0.0734,0.0454 -0.1768,0.0834 -0.25,0.125 -0.66642,0.37918 -1.29054,0.58736 -1.9375,0.6875 -3.88172,0.60088 -7.4416,-3.10534 -11,-3.0625 z m -8.9999999,0.8125 0,26 2,0 0,-26 -2,0 z"
1912 id="path3613"
1913 inkscape:connector-curvature="0"
1914 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
1915 inkscape:export-xdpi="90"
1916 inkscape:export-ydpi="90" /><rect
1917 style="fill:#ffffff;fill-opacity:0;stroke:none"
1918 id="rect4382"
1919 width="32"
1920 height="32"
1921 x="1"
1922 y="336.25012"
1923 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
1924 inkscape:export-xdpi="90"
1925 inkscape:export-ydpi="90" /><path
1926 style="fill:#b8b8b8;fill-opacity:1;stroke:none"
1927 d="m 129,-239.74991 0,30 10,0 0,-2.30769 0,-2.30769 0,-3.38462 10,-0.30769 0,2.30769 10,0 0,-24 z"
1928 id="rect6534"
1929 inkscape:connector-curvature="0"
1930 sodipodi:nodetypes="ccccccccccc" /><path
1931 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3429);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1-3);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1932 d="M 70.53125,32 C 70.236645,32 70,32.23664 70,32.53125 L 70,33 69.53125,33 C 69.236645,33 69,33.23664 69,33.53125 l 0,0.9375 C 69,34.76335 69.236645,35 69.53125,35 l 1,0 2.9375,0 1,0 C 74.763355,35 75,34.76335 75,34.46875 l 0,-0.9375 C 75,33.23664 74.763355,33 74.46875,33 L 74,33 74,32.53125 C 74,32.23664 73.763355,32 73.46875,32 l -2.9375,0 z M 68,33 c -1.090704,0 -2,0.9093 -2,2 l 0,9 c 0,1.0907 0.909296,2 2,2 l 1,0 0,-1 -1,0 c -0.554001,0 -1,-0.446 -1,-1 l 0,-9 c 0,-0.554 0.445999,-1 1,-1 l 0,-0.46875 C 68,33.34767 68.0316,33.16464 68.09375,33 L 68,33 z m 7.90625,0 C 75.9684,33.16465 76,33.34767 76,33.53125 L 76,34 c 0.554001,0 1,0.446 1,1 l 0,2 1,0 0,-2 c 0,-1.0907 -0.909296,-2 -2,-2 l -0.09375,0 z M 71,38 c -0.554,0 -1,0.446 -1,1 l 0,7 c 0,0.554 0.446,1 1,1 l 7,0 c 0.554,0 1,-0.446 1,-1 l 0,-7 c 0,-0.554 -0.446,-1 -1,-1 l -7,0 z m 0,1 7,0 0,7 -7,0 0,-7 z m 1,1 0,1 5,0 0,-1 -5,0 z m 0,2 0,1 5,0 0,-1 -5,0 z m 0,2 0,1 5,0 0,-1 -5,0 z"
1933 transform="matrix(2,0,0,2,1.0000003,-367.74991)"
1934 id="path3624"
1935 inkscape:connector-curvature="0" /><path
1936 id="path4583"
1937 d="m 162,0.99999 0,14 8.8125,0 -1,-1 -1.3125,0 -1.5,0 -3,0 -1,0 0,-12 5.5,0 3.5,3.5 0,1.21875 c 0.61468,0.76989 1,1.72879 1,2.78125 l 0,-3.5 0,-1 -4,-4 -1,0 -6,0 z m 11,8.5 c 0,0.48319 -0.20077,0.86276 -0.34375,1.28125 L 173,11.12499 l 0,-1.625 z m -4.5,-3.5 c -1.92115,0 -3.5,1.57884 -3.5,3.5 0,1.92115 1.57885,3.5 3.5,3.5 0.49539,0 0.94633,-0.12374 1.375,-0.3125 l 2.34375,2.34375 1.625,-1.625 -2.28125,-2.28125 C 171.829,10.63214 172,10.09539 172,9.49999 c 0,-1.92116 -1.57885,-3.5 -3.5,-3.5 z m -0.0312,1 c 1.38071,0 2.5,1.11929 2.5,2.5 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 z"
1938 style="fill:url(#linearGradient3431);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
1939 inkscape:connector-curvature="0"
1940 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
1941 style="fill:url(#linearGradient3667);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
1942 d="M 166.53125,32 C 166.23664,32 166,32.23664 166,32.53125 L 166,33 165.53125,33 C 165.23664,33 165,33.23664 165,33.53125 l 0,0.9375 C 165,34.76335 165.23664,35 165.53125,35 l 1,0 2.9375,0 1,0 C 170.76336,35 171,34.76335 171,34.46875 l 0,-0.9375 C 171,33.23664 170.76336,33 170.46875,33 L 170,33 170,32.53125 C 170,32.23664 169.76336,32 169.46875,32 z M 164,33 c -1.0907,0 -2,0.9093 -2,2 l 0,9 c 0,1.0907 0.9093,2 2,2 l 1,0 0,-1 -1,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-9 c 0,-0.554 0.446,-1 1,-1 l 0,-0.46875 c 0,-0.18358 0.0317,-0.36661 0.0937,-0.53125 z m 7.90625,0 C 171.9684,33.16465 172,33.34767 172,33.53125 L 172,34 c 0.554,0 1,0.446 1,1 l 0,2 1,0 0,-2 c 0,-1.0907 -0.9093,-2 -2,-2 l -0.0937,0 z M 167,38 c -0.554,0 -1,0.446 -1,1 l 0,7 c 0,0.554 0.446,1 1,1 l 7,0 c 0.554,0 1,-0.446 1,-1 l 0,-7 c 0,-0.554 -0.446,-1 -1,-1 z m 0,1 7,0 0,7 -7,0 z m 1,1 0,1 0,4 1,0 1,-1 0.5,-0.50005 L 171,44 l 1,1 1,0 0,-4 0,-1 -1,0 0,3 -1,-1 -1,0 -1,1 0,-3 z"
1943 transform="matrix(2,0,0,2,1.0000003,-367.74991)"
1944 id="path4585"
1945 inkscape:connector-curvature="0"
1946 sodipodi:nodetypes="sscssssccsssscsssssssccssscscscscsccssccsssssssssccccccccccccccccccccccc" /><path
1947 style="fill:url(#linearGradient6155);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
1948 d="M 196.9375,132 194,144.25 l 0,1.75 2.34375,0 0,-1.75 0.5,-2.90625 2.5,0 0.5,2.90625 0,1.75 2.34375,0 0,-1.75 -2.90625,-12.25 -2.34375,0 z m 7.0625,0 0,14 4.6875,0 c 0.68312,-0.0583 1.26208,-0.20417 1.75,-0.4375 1.17106,-0.58333 1.74998,-1.60416 1.75,-3.0625 l 0,-1.15625 c -2e-5,-1.32222 -0.62982,-2.35485 -1.9375,-3.09375 0.91732,-0.42777 1.375,-1.14513 1.375,-2.15625 l 0,-0.59375 c -0.0585,-0.68055 -0.2033,-1.26388 -0.4375,-1.75 -0.58554,-1.16665 -1.62993,-1.74999 -3.09375,-1.75 L 204,132 z m 13.5,0 c -0.68312,0.0583 -1.26206,0.20418 -1.75,0.4375 -1.17106,0.58335 -1.75,1.60418 -1.75,3.0625 l 0,7 c 0.0585,0.68056 0.20328,1.26389 0.4375,1.75 l 0.0312,0 c 0.0734,0.14265 0.16363,0.28124 0.25,0.40625 0.0864,0.12501 0.18177,0.23644 0.28125,0.34375 0.0846,0.0856 0.15855,0.17355 0.25,0.25 0.57061,0.47686 1.31935,0.71875 2.25,0.71875 l 1.15625,0 c 0.59333,-0.0339 1.11708,-0.14742 1.5625,-0.34375 l 0.0312,0 c 0.0619,-0.0275 0.12831,-0.0318 0.1875,-0.0625 1.17106,-0.58333 1.74998,-1.60416 1.75,-3.0625 l 0,-0.59375 -2.34375,0 0,1.1875 c -0.0586,0.77778 -0.43413,1.15625 -1.15625,1.15625 l -1.1875,0 c -0.78072,-0.0583 -1.15625,-0.4368 -1.15625,-1.15625 l 0,-8.1875 c 0.0585,-0.77777 0.43409,-1.15624 1.15625,-1.15625 l 1.1875,0 c 0.7807,0.0583 1.15625,0.43682 1.15625,1.15625 l 0,1.1875 2.34375,0 0,-0.59375 c -0.0586,-0.68055 -0.2033,-1.26388 -0.4375,-1.75 -0.58554,-1.16665 -1.5987,-1.74999 -3.0625,-1.75 l -1.1875,0 z m -19.40625,1.75 0.96875,5.84375 -1.9375,0 0.96875,-5.84375 z m 8.25,0 1.75,0 c 0.7807,0.0583 1.1875,0.43682 1.1875,1.15625 l 0,1.75 c -0.0585,0.77779 -0.46536,1.18751 -1.1875,1.1875 l -1.75,0 0,-4.09375 z m 0,5.84375 2.34375,0 c 0.78072,0.0583 1.15625,0.43681 1.15625,1.15625 l 0,2.34375 c -0.0586,0.77778 -0.43411,1.15625 -1.15625,1.15625 l -2.34375,0 0,-4.65625 z m 8.21875,6.34375 -1.125,1.125 -7.4375,7.5 -4.25,-4.25 -2.8125,2.8125 4.25,4.25 2.8125,2.8125 2.8125,-2.8125 10.40625,-10.46875 c -0.16686,0.0246 -0.32642,0.0526 -0.5,0.0625 a 1.0001,1.0001 0 0 1 -0.0625,0 l -1.15625,0 c -1.12657,0 -2.151,-0.37304 -2.9375,-1.03125 z"
1949 transform="translate(1,-367.75001)"
1950 id="path4591"
1951 inkscape:connector-curvature="0" /><path
1952 inkscape:connector-curvature="0"
1953 id="path4593"
1954 d="m 36,99 c -1.0907,0 -2,0.90929 -2,2 l 0,7 c 0,1.0907 0.9093,2 2,2 l 8,0 c 1.0907,0 2,-0.9093 2,-2 l 0,-7 c 0,-1.09071 -0.9093,-2 -2,-2 l -8,0 z m 0,1 8,0 c 0.554,0 1,0.44599 1,1 l 0,7 c 0,0.554 -0.446,1 -1,1 l -8,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-7 c 0,-0.55401 0.446,-1 1,-1 z m 6.59375,1.59375 L 39,105.1875 37.59375,103.75 l -1.4375,1.40625 1.4375,1.4375 L 39,108 l 5,-5 -1.40625,-1.40625 z"
1955 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3437);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1-3);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1956 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
1957 sodipodi:nodetypes="ssssssssssssssssssscccssssssccssss"
1958 inkscape:connector-curvature="0"
1959 id="path4595"
1960 d="m 98,99 c -1.0907,0 -2,0.90929 -2,2 l 0,7 c 0,1.0907 0.9093,2 2,2 l 12,0 c 1.0907,0 2,-0.9093 2,-2 l 0,-7 c 0,-1.09071 -0.9093,-2 -2,-2 z m 0,1 12,0 c 0.554,0 1,0.44599 1,1 l 0,7 c 0,0.554 -0.446,1 -1,1 l -12,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-7 c 0,-0.55401 0.446,-1 1,-1 z m 1.5,1 c -0.277,0 -0.5,0.22299 -0.5,0.5 0.0807,0.57703 0.3111,0.49624 1,0.5 l 0,5 -0.5,0 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.11921,-0.5 -0.5,-0.5 l -0.5,0 0,-5 0.5,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 z"
1961 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3439);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1-3);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1962 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
1963 sodipodi:nodetypes="cccccccsssscccsssscccccccccccccccccccccccccccccccccccccccccccccccccc"
1964 inkscape:connector-curvature="0"
1965 id="path4597"
1966 d="m 333,96 -1,2 -2,0 0,1 1.5,0 -4.5,9 -1,0 -4,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-7 c 0,-0.55401 0.446,-1 1,-1 l 4,0 4,0 0,-1 -8,0 c -1.0907,0 -2,0.9093 -2,2 l 0,7 c 0,1.09069 0.9093,2 2,2 l 4.5,0 -1.5,3 2,0 1.5,-3 1.5,0 0,-1 -1,0 4.5,-9 0.5,0 0,-1 1,-2 z m 2,2.28125 0,0.71875 0.71875,0 C 335.5419,98.69767 335.30232,98.4581 335,98.28125 z m 0,1.71875 0,1 1,0 0,-1 z m 0,2 0,1 1,0 0,-1 z m 0,2 0,1 1,0 0,-1 z m 0,2 0,1 1,0 0,-1 z m -4,2 0,1 1,0 0,-1 z m 2,0 0,1 1,0 0,-1 z m 2,0 0,0.71875 c 0.30232,-0.17686 0.5419,-0.41643 0.71875,-0.71875 z"
1967 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3679);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1-3);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1968 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
1969 inkscape:connector-curvature="0"
1970 id="path4600"
1971 d="m 2,99 c -0.554,0 -1,0.446 -1,1 l 0,9 c 0,0.55399 0.446,1 1,1 l 12,0 c 0.554,0 1,-0.44601 1,-1 l 0,-9 c 0,-0.554 -0.446,-1 -1,-1 L 2,99 z m 0,3 12,0 0,7 -12,0 0,-7 z m 1,1 0,1 3,0 0,-1 -3,0 z m 5,0 0,2 5,0 0,-2 -5,0 z m -5,3 0,1 3,0 0,-1 -3,0 z m 5,0 0,2 5,0 0,-2 -5,0 z"
1972 style="fill:url(#linearGradient3441);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
1973 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
1974 id="path4604"
1975 d="m 36,195.99999 c -1.64649,0 -3,1.3535 -3,3 l 0,1 c 0,1.64649 1.35351,3 3,3 l 3,0 0.6875,-0.6875 -0.53125,-0.5625 0.65625,-0.71875 1,-1.03125 -4.3125,0 c -0.277,0 -0.5,-0.223 -0.5,-0.5 0,-0.27701 0.223,-0.5 0.5,-0.5 l 7,0 c 0.277,0 0.5,0.22299 0.5,0.5 0,0.277 -0.223,0.5 -0.5,0.5 l -1.1875,0 1,1 0.6875,0 c 0.0353,0 0.0594,-0.0277 0.0937,-0.0312 l 0.875,-0.875 c 0.004,-0.0344 0.0312,-0.0585 0.0312,-0.0938 l 0,-1 c 0,-0.55401 -0.446,-1 -1,-1 l -3,0 0,-1 3,0 c 1.0907,0 2,0.90929 2,2 l 0,0.4375 0.53125,0.53125 0.4375,0.4375 c 0.019,-0.13548 0.0312,-0.26585 0.0312,-0.40625 l 0,-1 c 0,-1.6465 -1.35351,-3 -3,-3 l -3,0 -1,1 -1,-1 -3,0 z m 0,1 3,0 0,1 -3,0 c -0.554,0 -1,0.44599 -1,1 l 0,1 c 0,0.554 0.446,1 1,1 l 3,0 0,1 -3,0 c -1.0907,0 -2,-0.9093 -2,-2 l 0,-1 c 0,-1.09071 0.9093,-2 2,-2 z"
1976 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3677);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1-3);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1977 inkscape:connector-curvature="0"
1978 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
1979 sodipodi:nodetypes="sssscccsssscccssccssssccsssscssssccssssccsssssss"
1980 inkscape:connector-curvature="0"
1981 id="path4606"
1982 d="m 4,196 c -1.64649,0 -3,1.3535 -3,3 l 0,1 c 0,1.64649 1.35351,3 3,3 l 3,0 1,-1 1,1 3,0 c 1.64649,0 3,-1.35351 3,-3 l 0,-1 c 0,-1.6465 -1.35351,-3 -3,-3 l -3,0 -1,1 -1,-1 z m 0,1 3,0 0,1 -3,0 c -0.554,0 -1,0.44599 -1,1 l 0,1 c 0,0.554 0.446,1 1,1 l 3,0 0,1 -3,0 c -1.0907,0 -2,-0.9093 -2,-2 l 0,-1 c 0,-1.09071 0.9093,-2 2,-2 z m 5,0 3,0 c 1.0907,0 2,0.90929 2,2 l 0,1 c 0,1.0907 -0.9093,2 -2,2 l -3,0 0,-1 3,0 c 0.554,0 1,-0.446 1,-1 l 0,-1 c 0,-0.55401 -0.446,-1 -1,-1 l -3,0 z m -4.5,2 7,0 c 0.277,0 0.5,0.22299 0.5,0.5 0,0.277 -0.223,0.5 -0.5,0.5 l -7,0 C 4.223,200 4,199.777 4,199.5 4,199.22299 4.223,199 4.5,199 z"
1983 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3675);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1-3);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1984 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
1985 inkscape:connector-curvature="0"
1986 id="path4608"
1987 d="m 68,129.96875 0,6.5 c 0,0.6818 0.0818,1.2882 0.21875,1.84375 0.13694,0.55554 0.35886,1.04609 0.6875,1.4375 0.32865,0.3914 0.76476,0.6916 1.3125,0.90625 0.56144,0.20201 1.24087,0.28125 2.0625,0.28125 0.8353,0 1.53231,-0.0792 2.09375,-0.28125 0.56143,-0.21465 1.03265,-0.51485 1.375,-0.90625 0.34233,-0.39141 0.5818,-0.88196 0.71875,-1.4375 0.13697,-0.55555 0.18749,-1.16195 0.1875,-1.84375 l 0,-6.5 -2.5,0 0,6.3125 c -1.1e-4,0.49241 -0.039,0.9091 -0.0937,1.25 -0.0548,0.32828 -0.14432,0.59785 -0.28125,0.8125 -0.13695,0.20201 -0.32971,0.34911 -0.5625,0.4375 -0.23279,0.0884 -0.51896,0.15625 -0.875,0.15625 -0.35604,0 -0.67347,-0.0679 -0.90625,-0.15625 -0.2328,-0.0884 -0.39431,-0.23549 -0.53125,-0.4375 -0.12325,-0.20202 -0.22648,-0.45297 -0.28125,-0.78125 -0.0548,-0.3409 -0.0625,-0.75759 -0.0625,-1.25 l 0,-6.34375 -2.5625,0 z M 67.5,142 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 10,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 l -10,0 z"
1988 style="font-size:15.23443031px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient3443);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3);font-family:Sans"
1989 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
1990 inkscape:connector-curvature="0"
1991 id="path4610"
1992 d="m 586.9375,-29.03126 -5.6875,5.6875 5.6875,5.6875 1.90625,-1.84375 -3.75,-3.84375 3.75,-3.75 z m 7.375,0 -4.84375,11.375 3.71875,0 5.0625,-11.34375 -3.9375,-0.0312 z m 6.25,0 -1.9375,1.9375 3.78125,3.75 -3.78125,3.84375 1.9375,1.84375 5.65625,-5.6875 z"
1993 style="fill:url(#linearGradient5750);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
1994 sodipodi:nodetypes="cccccccccccccccccccc" /><path
1995 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient6173);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1-3);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
1996 d="m 145,707 c -4.36281,0 -8,3.63719 -8,8 l 0,3 -1,0 c -1.108,0 -2,0.89198 -2,2 l 0,12 c 0,1.108 0.892,2 2,2 l 18,0 c 1.108,0 2,-0.892 2,-2 l 0,-12 c 0,-1.10802 -0.892,-2 -2,-2 l -1,0 0,-3 c 0,-4.36281 -3.63719,-8 -8,-8 z m 0,4 c 2.216,0 4,1.784 4,4 l 0,3 -8,0 0,-3 c 0,-2.216 1.784,-4 4,-4 z m 0,13 c 1.65686,0 3,1.34314 3,3 0,1.65684 -1.34314,3 -3,3 -1.65686,0 -3,-1.34316 -3,-3 0,-1.65686 1.34314,-3 3,-3 z"
1997 transform="translate(1,-367.75001)"
1998 id="path4612"
1999 inkscape:connector-curvature="0" /><path
2000 inkscape:connector-curvature="0"
2001 id="path4614"
2002 d="m 68,210.24999 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 7,0 c -2.1814,0 -4,1.8186 -4,4 l 0,20 c 0,2.1814 1.8186,4 4,4 2.1814,0 4,-1.8186 4,-4 l 0,-20 c 0,-2.1814 -1.8186,-4 -4,-4 z m 0,2 c 1.108,0 2,0.892 2,2 l 0,20 c 0,1.108 -0.892,2 -2,2 -1.108,0 -2,-0.892 -2,-2 l 0,-20 c 0,-1.108 0.892,-2 2,-2 z m -23,2 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 16,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m -16,4 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 16,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m -16,4 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 16,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m -16,4 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m 4,0 c -0.55228,0 -1,0.44772 -1,1 0,0.55228 0.44772,1 1,1 0.55228,0 1,-0.44772 1,-1 0,-0.55228 -0.44772,-1 -1,-1 z m -13,4 c -2.1814,0 -4,1.8186 -4,4 0,2.1814 1.8186,4 4,4 l 10,0 c 2.1814,0 4,-1.8186 4,-4 0,-2.1814 -1.8186,-4 -4,-4 l -10,0 z m 0,2 10,0 c 1.108,0 2,0.892 2,2 0,1.108 -0.892,2 -2,2 l -10,0 c -1.108,0 -2,-0.892 -2,-2 0,-1.108 0.892,-2 2,-2 z"
2003 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient5746);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1-3);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" /><path
2004 id="path4616"
2005 d="m 579,-163.74989 28,0 0,10 -28,0 z"
2006 style="fill:#c4c4c4;fill-opacity:1;stroke:none"
2007 inkscape:connector-curvature="0" /><path
2008 style="fill:url(#linearGradient3451);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2009 d="m 35.3298,257.02118 c -1.28605,0 -2.3298,1.04375 -2.3298,2.3298 l 0,9.31921 C 33,269.95625 34.04375,271 35.3298,271 l 9.31921,0 c 1.28606,0 2.3298,-1.04375 2.3298,-2.32981 l 0,-9.31921 c 0,-1.28605 -1.04374,-2.3298 -2.3298,-2.3298 z m 3.80414,2.33622 1.79284,0 0.11832,0.212 3.64032,9.10079 -2.3298,0 -0.87368,-2.29339 -3.02147,0 -0.87367,2.29339 -2.257,0 3.64032,-8.88237 z"
2010 id="path4618"
2011 inkscape:connector-curvature="0"
2012 sodipodi:nodetypes="sssssssssccccccccccc"
2013 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2014 style="fill:#4b4b4b;fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2015 d="m 40.57171,265.23621 -1.16491,0 c -0.3215,0 -0.58244,-0.26094 -0.58244,-0.58246 l 1.1381,-2.19467 1.19286,2.19467 c -8.7e-4,0.32152 -0.2621,0.58246 -0.58361,0.58246 z"
2016 id="path4620"
2017 inkscape:connector-curvature="0"
2018 sodipodi:nodetypes="sscccs"
2019 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2020 sodipodi:nodetypes="cccccccccccc"
2021 style="fill:url(#linearGradient3453);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2022 d="m 66,193 0,14 1,0 0,-14 z m 4.74999,-0.41664 c -0.86983,0.009 -1.76033,0.34033 -2.74999,1.375 L 68,202 c 3.96132,-4.05865 6.94268,2.81598 11,-1 l 0,-8.04165 c -3.03099,2.934 -5.64051,-0.40352 -8.25001,-0.37496 z"
2023 id="path4622"
2024 inkscape:connector-curvature="0"
2025 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2026 sodipodi:nodetypes="cccccccccccccsssssss"
2027 inkscape:connector-curvature="0"
2028 id="path4624"
2029 d="m 201.71875,138.21875 -0.96875,0.90625 1.90625,1.96875 -1.90625,1.96875 0.96875,1 1.90625,-1.96875 1.96875,1.96875 0.96875,-1 -1.9375,-1.96875 1.9375,-1.96875 -0.96875,-0.90625 -1.96875,1.90625 z M 193.5,141 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 z"
2030 style="fill:url(#linearGradient3455);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2031 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2032 sodipodi:nodetypes="ccccccc"
2033 style="fill:url(#linearGradient3457);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2034 d="m 232,35 -7,5 6.99998,4.99998 2e-5,-3.33332 c 3.41666,0 5.61556,1.22 7,3.33334 0,-4.98333 -3.60112,-6.66667 -7,-6.66667 2e-5,-0.85078 1e-5,-2.61388 0,-3.33333 z"
2035 id="path4626"
2036 inkscape:connector-curvature="0"
2037 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2038 style="fill:url(#linearGradient3459);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2039 d="m 417.99999,163 0,2 12.00001,0 0,-2 -12.00001,0 z m 0,3 0,1.99999 12.00001,0 0,-1.99999 -12.00001,0 z m 0,3 0,2 12.00001,0 0,-2 -12.00001,0 z m 0,2.99999 0,2.00001 12.00001,0 0,-2.00001 -12.00001,0 z"
2040 id="path4628"
2041 inkscape:connector-curvature="0"
2042 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2043 style="fill:url(#linearGradient3461);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2044 d="m 391,163 0,2 7,0 0,-2 -7,0 z m -4,3 0,1.99999 11,0 0,-1.99999 -11,0 z m 2,3 0,2 9,0 0,-2 -9,0 z m -3,3 0,2 12,0 0,-2 -12,0 z"
2045 id="path4630"
2046 inkscape:connector-curvature="0"
2047 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2048 transform="matrix(1.9740024,0,0,1.9740042,10.515129,-363.4347)"
2049 style="fill:url(#linearGradient3463);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2050 d="m 355.8683,162.96049 0,2.02634 8.10536,0 0,-2.02634 -8.10536,0 z M 353.84196,166 l 0,2.02633 12.15804,0 0,-2.02633 -12.15804,0 z m 2.02634,3.0395 0,2.02634 8.10536,0 0,-2.02634 -8.10536,0 z m -2.02634,3.03951 0,2.02634 12.15804,0 0,-2.02634 -12.15804,0 z"
2051 id="path4632"
2052 inkscape:connector-curvature="0" /><path
2053 style="fill:url(#linearGradient3465);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2054 d="m 322,163 0,2 7,0 0,-2 -7,0 z m 0,3 0,2 11,0 0,-2 -11,0 z m 0,3 0,2 9,0 0,-2 -9,0 z m 0,3 0,2 12,0 0,-2 -12,0 z"
2055 id="path4634"
2056 inkscape:connector-curvature="0"
2057 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2058 style="fill:url(#linearGradient3467);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2059 d="M 13.143585,33.05435 9.0166293,38.06353 4.9286104,33.12695 c 0,0 -0.8954698,0.0269 -0.8954698,1.05265 0,2.21508 1.5511147,4.31748 3.2704133,5.95293 l -1.7909395,2.17791 0.1167447,0.14519 c -0.089703,-0.009 -0.1790976,-0.0363 -0.2725383,-0.0363 -1.3754463,0 -2.4917443,1.04074 -2.4917443,2.3231 0,1.28234 1.116298,2.3231 2.4917443,2.3231 1.3754463,0 2.4917443,-1.04076 2.4917443,-2.3231 0,-0.69345 -0.3382551,-1.31604 -0.8565423,-1.74234 0.4809109,-0.30316 1.2134856,-0.78955 2.0245504,-1.41563 0.8322385,0.64465 1.5928458,1.16764 2.1024048,1.48823 -0.478416,0.42398 -0.778669,1.00648 -0.778669,1.66974 0,1.28234 1.116298,2.3231 2.491745,2.3231 1.375446,0 2.491744,-1.04076 2.491744,-2.3231 0,-1.28236 -1.115055,-2.32427 -2.491744,-2.3231 -0.06354,0 -0.132378,0.0317 -0.194665,0.0363 l 0.03887,-0.0363 -1.907749,-2.28681 c 1.695639,-1.60874 3.231485,-3.67659 3.231485,-5.84404 0,-1.11857 -0.856533,-1.23414 -0.856533,-1.23414 z M 5.3568862,43.58089 c 0.6877138,0 1.2458722,0.52037 1.2458722,1.16154 0,0.64118 -0.5581584,1.16155 -1.2458722,1.16155 -0.6877231,0 -1.2458721,-0.52037 -1.2458721,-1.16155 0,-0.64117 0.558149,-1.16154 1.2458721,-1.16154 z m 7.4752328,0 c 0.687714,0 1.245872,0.52037 1.245872,1.16154 0,0.64118 -0.558158,1.16155 -1.245872,1.16155 -0.687723,0 -1.245872,-0.52037 -1.245872,-1.16155 0,-0.64117 0.558149,-1.16154 1.245872,-1.16154 z"
2060 id="path4636"
2061 inkscape:connector-curvature="0"
2062 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2063 sodipodi:nodetypes="sssssssssssssssssssscszsczcc"
2064 inkscape:connector-curvature="0"
2065 id="path4638"
2066 d="m 136,224.96874 c -3.86517,0 -7,3.14713 -7,7.03125 0,3.88412 3.13483,7.03125 7,7.03125 3.86633,0 7,-3.14713 7,-7.03125 0,-3.88412 -3.13367,-7.03125 -7,-7.03125 z m 0,1.03125 c 3.31371,0 6,2.68629 6,6 0,3.31371 -2.68629,6 -6,6 -3.31371,0 -6,-2.68629 -6,-6 0,-3.31371 2.68629,-6 6,-6 z m -2.34375,3 c -0.78758,0 -1.40625,0.64605 -1.40625,1.4375 0,0.79145 0.61867,1.4375 1.40625,1.4375 0.78761,0 1.4375,-0.64605 1.4375,-1.4375 0,-0.79145 -0.64989,-1.4375 -1.4375,-1.4375 z m 4.6875,0 c -0.7876,0 -1.4375,0.64605 -1.4375,1.4375 0,0.79145 0.6499,1.4375 1.4375,1.4375 0.78759,0 1.40625,-0.64605 1.40625,-1.4375 0,-0.79145 -0.61866,-1.4375 -1.40625,-1.4375 z m -5.23219,4.77513 c -0.0366,0.1544 -0.081,0.31581 -0.081,0.4768 0,1.55998 2.42289,1.8242 2.96945,1.81057 0.54656,-0.0136 2.96945,-0.25059 2.96945,-1.81057 0,-0.16099 -0.0444,-0.3224 -0.081,-0.4768 -1.30709,1.24337 -2.63751,1.02963 -2.88845,1.05774 -0.25094,0.0281 -2.02946,-0.0474 -2.88844,-1.05774 z"
2067 style="fill:url(#linearGradient3469);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2068 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2069 transform="matrix(2.1141636,0,0,2.1141636,-28.338578,-386.41917)"
2070 sodipodi:nodetypes="cssccscccssccscc"
2071 style="fill:url(#linearGradient3471);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2072 d="m 259.65386,163.531 c -1.472,0 -2.66666,1.24939 -2.66666,2.53241 0,1.28301 1.19466,2.3243 2.66666,2.3243 0.0453,0 0.0811,8.7e-4 0.12493,0 -0.196,1.29812 -0.87033,2.97394 -2.79166,4.64861 1.33333,0 5.33332,-2.32431 5.33332,-6.97291 0,-1.28302 -1.19466,-2.53241 -2.66666,-2.53241 z m 7.99998,0.026 c -1.472,0 -2.66666,1.22337 -2.66666,2.50639 0,1.28302 1.19466,2.32431 2.66666,2.32431 0.048,0 0.0784,8.7e-4 0.12493,0 -0.196,1.28069 -0.86633,2.93413 -2.79166,4.61228 1.37466,0 5.33332,-2.28798 5.33332,-6.93659 0,-1.28302 -1.19466,-2.50639 -2.66666,-2.50639 z"
2073 id="path4640"
2074 inkscape:connector-curvature="0" /><path
2075 style="fill:url(#linearGradient3473);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2076 d="m 40,225 c -3.86517,0 -7,3.13483 -7,6.99999 0,3.86518 3.13483,7.00001 7,7.00001 3.86633,0 7,-3.13483 7,-7.00001 C 47,228.13483 43.86633,225 40,225 z m 2.47916,2.29688 c 0.62773,-0.0298 1.3338,0.21291 2.1875,0.80207 -1.27516,0 -2.10904,1.30666 -2.88021,2.91667 l 1.4948,0 c 0.25783,0 0.4375,0.24325 0.4375,0.51041 l -1.16667,1.64063 -1.75,0 c -1.19233,2.56317 -2.57892,4.74454 -5.46875,2.73437 1.33233,-0.003 2.17992,-1.54671 2.98958,-3.31769 l 0.21875,-0.47398 c 1.0115,-2.26011 2.05434,-4.72275 3.9375,-4.81248 z"
2077 id="path4642"
2078 inkscape:connector-curvature="0"
2079 sodipodi:nodetypes="ssssscccsccccccc"
2080 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2081 inkscape:connector-curvature="0"
2082 id="path4644"
2083 d="M 7,6 7,7.875 5.625,9.34375 7,10.8125 7,12.71875 3.375,9.34375 z"
2084 style="fill:url(#linearGradient3475);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2085 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2086 inkscape:connector-curvature="0"
2087 id="path4646"
2088 d="M 8,6 11.6875,9.375 8,12.65625 8,10.75 9.4375,9.34375 8,7.8125 z"
2089 style="fill:url(#linearGradient3477);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2090 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2091 sodipodi:nodetypes="sccsscccssscsssssss"
2092 style="fill:url(#linearGradient3479);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2093 d="m 8.4001919,321 c -2.5311594,0 -4.5833578,2.05219 -4.5833578,4.58335 l 2.2916789,0 c 0,-1.26501 1.0266722,-2.29168 2.2916789,-2.29168 1.2650067,0 2.2916801,1.02667 2.2916801,2.29168 0,1.265 -1.0266734,2.29168 -2.2916801,2.29168 -0.8015237,0.007 -1.2388122,0.57905 -1.1458394,1.14585 l 0,1.0026 0,0.14323 c 0,0.6325 0.5133366,1.14584 1.1458394,1.14584 0.6325038,0 1.1458394,-0.51334 1.1458394,-1.14584 l 0,-0.14323 C 11.522604,329.51358 12.98355,327.71804 12.98355,325.58335 12.98355,323.05219 10.931351,321 8.4001919,321 z m 0,11.00442 c -0.8830925,0 -1.5998062,0.71671 -1.5998062,1.59981 0,0.88308 0.7167137,1.5998 1.5998062,1.5998 0.8830935,0 1.5998062,-0.71672 1.5998062,-1.5998 0,-0.8831 -0.7167127,-1.59981 -1.5998062,-1.59981 z"
2094 id="path4648"
2095 inkscape:connector-curvature="0"
2096 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2097 style="fill:url(#linearGradient3481);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2098 d="m 35.34264,356.37095 c 0.51469,-0.51344 1.34901,-0.51344 1.86244,0 L 40,359.15957 l 2.79492,-2.78862 c 0.51469,-0.51344 1.34901,-0.51344 1.86244,0 0.51469,0.51344 0.51469,1.34524 0,1.85992 l -2.79492,2.78989 2.79492,2.78864 c 0.51469,0.51341 0.51469,1.34648 0,1.85992 -0.51469,0.51343 -1.34901,0.51343 -1.86244,0 L 40,362.87943 l -2.79492,2.78989 c -0.51469,0.51343 -1.34901,0.51343 -1.86244,0 -0.51469,-0.51344 -0.51469,-1.34651 0,-1.85992 l 2.79492,-2.78864 -2.79492,-2.78989 c -0.51469,-0.51468 -0.51469,-1.34774 0,-1.85992 z"
2099 id="path4651"
2100 inkscape:connector-curvature="0"
2101 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2102 style="fill:url(#linearGradient3483);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2103 d="m 136.90909,352.99999 0,7.08065 4.69598,-3.57702 z m -1.17399,2.32963 c -3.2461,0 -5.86997,2.66057 -5.86997,5.90666 0,3.24609 2.62387,5.86997 5.86997,5.86997 3.24609,0 5.86997,-2.62388 5.86997,-5.86997 l 0,-0.0366 -2.34799,0 c 0,1.9453 -1.57667,3.52198 -3.52198,3.52198 -1.94531,0 -3.52198,-1.57668 -3.52198,-3.52198 0,-1.94531 1.57667,-3.52198 3.52198,-3.52198 0.41441,0 0.80535,0.0898 1.17399,0.22013 l 0,-2.42137 c -0.37685,-0.0763 -0.77484,-0.14675 -1.17399,-0.14675 z"
2104 id="path4653"
2105 inkscape:connector-curvature="0"
2106 sodipodi:nodetypes="cccccsssccssscccc"
2107 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2108 style="fill:url(#linearGradient3485);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2109 d="m 168.63108,225.60711 c -3.68133,0 -6.66665,2.71633 -6.66665,6.04164 0,2.46666 1.64933,4.56932 3.99999,5.49999 l 0,0.5 -2.66666,0 0,-0.66667 c 0,-0.36933 -0.29733,-0.66666 -0.66667,-0.66666 -0.36933,0 -0.66666,0.29733 -0.66666,0.66666 l 0,1.33333 c 0,0.36933 0.29733,0.66667 0.66666,0.66667 l 3.99999,0 c 0.368,0 0.66667,-0.29867 0.66667,-0.66667 l 0,-0.79166 0,-0.54167 0,-0.83333 c -1.55066,-0.66266 -2.66666,-2.40533 -2.66666,-4.49999 0,-2.65998 1.79066,-4.83331 3.99999,-4.83331 2.20933,0 3.99999,2.17333 3.99999,4.83331 0,2.09466 -1.116,3.83599 -2.66666,4.49999 l 0,0.83333 0,0.54167 0,0.79166 c 0,0.368 0.29866,0.66667 0.66666,0.66667 l 3.99999,0 c 0.0924,0 0.17019,-0.008 0.25,-0.0416 0.23926,-0.1012 0.41667,-0.349 0.41667,-0.625 l 0,-1.33333 c 0,-0.36933 -0.29733,-0.66667 -0.66667,-0.66667 -0.36933,0 -0.66666,0.29734 -0.66666,0.66667 l 0,0.66666 -2.66666,0 0,-0.5 c 2.35066,-0.93066 3.99999,-3.03332 3.99999,-5.49998 0,-3.32531 -2.98399,-6.04164 -6.66665,-6.04164 z"
2110 id="path4655"
2111 inkscape:connector-curvature="0"
2112 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2113 id="path4657"
2114 d="m 264,224.99999 c -3.86516,0 -7,3.13484 -7,7 0,3.86516 3.13484,7 7,7 3.86516,0 7,-3.13484 7,-7 0,-3.86516 -3.13484,-7 -7,-7 z m 0,1 c 0.57563,0 1.12928,0.0987 1.65625,0.25 -0.21686,0.024 -0.40509,0.0414 -0.21875,0.0625 0.60892,0.003 -0.1276,0.039 -0.1875,0.125 -0.11394,0.0829 -0.0834,0.026 -0.15625,0.125 -0.11101,0.005 -0.16343,0.0248 -0.1875,0.0312 0.0628,0.0123 0.21665,0.0288 0.3125,0.0312 0.26795,-0.0538 0.54333,-0.1539 0.8125,-0.25 0.0491,0.0177 0.10773,0.0123 0.15625,0.0312 -0.057,0.0184 -0.10829,0.071 -0.15625,0.0625 -0.34875,0.25862 0.70213,-0.0275 0.59375,0.46875 0.0904,0.035 0.0426,-0.16732 0.0312,-0.3125 1.98416,0.97877 3.34375,3.01293 3.34375,5.375 0,2.96499 -2.14232,5.42075 -4.96875,5.90625 0.002,-0.0351 -0.001,-0.0564 0,-0.0937 -0.0607,-0.31041 0.3513,-0.15238 0.375,-0.4375 -0.14618,-0.10055 -0.18095,-0.21709 -0.1875,-0.34375 -0.0227,-0.40268 0.15775,-0.34927 0,0 0.0223,0.0426 0.0716,0.0718 0.125,0.0937 0.0738,0.0209 0.14565,0.10949 0.21875,0.0312 0.41021,-0.33369 0.12457,-1.07604 0.71875,-1.15625 0.47136,-0.164 0.14359,-0.87555 0.4375,-1.1875 0.53462,-0.47621 -0.2551,-0.89849 -0.6875,-0.78125 -0.0559,-0.0857 -0.27353,-0.28009 -0.5,-0.0625 0.15857,-0.1649 -0.008,-0.23324 -0.25,-0.0312 0.24467,-0.17708 0.25848,-0.47377 -0.0625,-0.65625 -0.0508,9.9e-4 -0.10507,-0.004 -0.125,0.0312 -0.0638,-0.0687 -0.22894,-0.0608 -0.28125,0.0312 -0.0101,-0.0804 -0.0318,-0.15944 -0.0625,-0.1875 -0.12961,-0.14754 -0.16689,-0.11264 -0.1875,-0.0312 0.0112,-0.0474 0.002,-0.10756 0,-0.15625 -0.32535,-0.0722 -0.953,-0.49438 -1,0 0.002,-0.20286 -0.0586,-0.23675 -0.0937,-0.1875 0.0276,-0.0332 0.0683,-0.0615 0.125,-0.0937 -0.23557,0.0464 -0.5475,0.32011 -0.5625,0.5625 0.0648,0.41584 -0.42384,0.78976 -0.1875,1.0625 -0.0185,-0.003 -0.0422,0.0103 -0.0625,0 0.20991,0.41324 0.44408,0.73866 0.65625,1.0625 0.23031,0.0604 0.44985,0.14475 0.5625,0.3125 -0.17222,-0.0166 -0.26928,-0.0451 -0.40625,-0.0625 0.17318,0.2949 0.31495,0.60124 0.375,1 0.0695,0.54303 0.19023,1.00029 0.3125,1.375 -0.0919,0.004 -0.18828,0 -0.28125,0 -3.31371,0 -6,-2.6863 -6,-6 0,-1.4656 0.53344,-2.80175 1.40625,-3.84375 0.34206,-0.0211 0.7743,0.12805 0.75,0.4375 0.0307,0.0446 0.0539,0.0428 0.0625,0.0312 -0.0741,0.19641 -0.23979,0.37414 0.0937,0.5625 0.22757,0.0776 -0.005,-0.0939 -0.125,0.1875 -0.18886,-0.0161 -0.54745,0.56888 -0.53125,0.875 -0.006,0.28224 0.15163,0.47561 0.375,0.5625 -0.16645,0.0629 -0.0795,0.49173 0.0937,0.625 0.234,0.59128 0.0786,-0.21992 -0.0625,-0.40625 0.1184,-0.41868 0.28654,0.49131 0.5,0.59375 0.0459,0.40021 0.30654,0.5924 0.6875,0.71875 0.1724,0.007 0.42696,0.0904 0.5625,0 -0.0572,0.0939 -0.0543,0.2011 0.0937,0.21875 0.0497,0.0166 0.18315,0.0719 0.21875,0 0.0368,0.0175 0.10148,0.0198 0.15625,-0.0312 0.0432,-0.0198 0.0361,0.0124 0.0625,0 -0.11865,0.0885 -0.24679,0.23155 0.0312,0.28125 0.18197,0.12198 0.21951,-0.59882 -0.0312,-0.46875 -0.27053,-0.0764 -0.31824,0.10185 -0.25,0.1875 -0.38423,0.10029 0.48507,-0.80377 -0.0312,-0.71875 -0.14636,0.36457 -0.72915,0.44313 -0.71875,-0.0625 0.0733,-0.11228 0.0576,-0.29508 0,-0.4375 0.0762,0.0536 0.14828,-0.0524 0.25,-0.1875 0.0508,-0.20201 0.45865,-0.11762 0.5625,-0.125 -0.007,-0.008 -0.0149,-0.019 -0.0312,-0.0312 0.34794,-0.17518 0.70785,0.0435 0.71875,0.4375 0.0727,0.0592 0.0799,-0.14085 0.0937,-0.15625 -0.34271,-0.59064 0.60005,-0.61065 0.53125,-1.09375 0.086,0.0703 0.16097,-0.25555 0.46875,-0.34375 0.0156,-0.0612 0.5408,-0.25245 0.5625,-0.5625 l 0.0312,-0.0625 c -0.0777,0.58493 0.56903,-0.28504 0.125,-0.125 -0.48342,0.25168 -0.0186,-0.16425 0.21875,-0.15625 0.2339,0.10315 1.13432,-0.3299 0.59375,-0.375 -0.14861,0.004 0.0197,-0.83907 -0.375,-0.375 -0.18201,-0.013 -0.21657,-0.52148 -0.59375,-0.28125 -0.21308,0.35773 -0.42379,0.80911 -0.78125,0.96875 0.10551,-0.34815 -0.17558,-0.37355 -0.4375,-0.46875 -0.50037,-0.22009 0.22843,-0.53767 0.40625,-0.65625 0.42598,0.0488 0.0804,-0.2331 0.40625,-0.1875 0.25965,0.11567 0.79746,-0.45867 0.3125,-0.25 -0.34093,0.38477 -0.21848,-0.29476 -0.5,-0.15625 -0.0588,0.36258 -0.54949,0.31735 -0.9375,0.28125 -0.20901,0.22494 -0.18621,0.0524 -0.40625,0.0312 -0.22948,-0.0557 -0.62539,-0.2074 -1.03125,-0.125 -0.42791,0.0153 -0.77707,0.13054 -1.09375,0.375 0.18446,-0.14534 0.37067,-0.28434 0.3125,-0.34375 -0.13804,-0.0294 -0.26862,-0.0577 -0.40625,-0.0625 1.0158,-0.78806 2.2713,-1.2811 3.6564,-1.2811 z m -0.40625,9.625 c -0.0485,-0.0827 -0.10312,-0.16891 -0.15625,-0.25 -0.72058,-0.18902 -1.52571,0.0359 0.15625,0.25 z m 1.34375,-9.28125 c -0.10926,0.002 -0.25181,0.0495 -0.15625,0.125 l 0.125,0 c 0.22132,-0.0858 0.14056,-0.12682 0.0312,-0.125 z m -0.34375,0.34375 c -0.14885,0.0202 -0.1519,0.1631 0.15625,0.0937 0.007,0.066 0.1702,-0.0245 0.1875,0.0312 0.48589,-0.054 0.0831,-0.1527 -0.15625,-0.0937 -0.0717,-0.0408 -0.13788,-0.038 -0.1875,-0.0312 z m 0.0625,0.15625 c -0.012,-0.0131 -0.0364,0.004 -0.125,0.0625 -0.53787,0.41757 0.48274,0.0767 0.59375,0.34375 0.375,0.26203 -0.0911,0.19656 -0.28125,0.3125 -0.0495,0.0102 -0.0367,0.0257 -0.0625,0.0312 0.11906,0.007 0.28635,0.0602 0.3125,0.1875 l 0.0625,0.0312 c 0.31303,0.0938 -0.14015,-0.27069 0.25,-0.0937 -0.0154,-0.25514 0.0288,-0.26175 0.28125,-0.21875 -0.016,-0.36645 -0.58414,-0.66376 -0.96875,-0.5625 -0.23333,0.21055 -0.0265,-0.0545 -0.0625,-0.0937 z m -0.46875,0.0312 c -0.0468,0.0133 -0.0929,0.0396 -0.125,0.0937 0.0235,0.001 0.0376,0.0331 0.0625,0 0.33051,-0.0263 0.20282,-0.13358 0.0625,-0.0937 z m -1.5625,0.0312 c -0.17974,0.004 -0.43759,0.0773 -0.4375,0.25 0.11636,0.04 0.22509,-0.1096 0.34375,-0.125 0.35814,-0.0741 0.27354,-0.12883 0.0937,-0.125 z m 1.21875,0 c -0.12212,0.0231 -0.25374,0.0844 -0.125,0.125 l 0.0312,0.0312 0.0937,-0.0312 c 0.22922,-0.13332 0.12212,-0.14807 0,-0.125 z m -0.90625,0.0625 c -0.28655,0.0128 -0.61607,0.21385 -0.1875,0.25 -0.20655,0.0632 -0.46416,0.0131 -0.0625,0.125 0.24304,-0.0302 1.03903,-0.0694 0.625,-0.21875 0.16188,-0.2552 -0.0305,-0.0918 -0.15625,-0.0937 -0.0543,-0.0446 -0.12323,-0.0668 -0.21875,-0.0625 z m 0.71875,0.25 c -0.0294,0.007 -0.0677,0.0411 -0.0937,0.0937 0.23501,0.0305 0.18187,-0.11393 0.0937,-0.0937 z m 2.96875,0 c -0.1229,0.0647 -0.30864,0.56687 0,0.625 0.19641,0.13297 0.0343,-0.35877 0.0625,-0.5 -0.008,-0.10783 -0.0215,-0.14656 -0.0625,-0.125 z m -4.65625,0.3125 c 0.0326,-0.004 0.0441,-0.007 0.0312,0.0312 -0.33578,0.11083 -0.12904,-0.0181 -0.0312,-0.0312 z m 2.3125,0.0625 c -0.1313,-0.0266 -0.39703,0.19962 0,0.125 l 0.0625,0 c 0.0111,-0.0813 -0.0187,-0.11612 -0.0625,-0.125 z m -4.0625,0.78125 c 0.006,0.0143 0.0299,0.014 0.0312,0.0312 0.008,0.0435 -0.0235,0.085 -0.0312,0.125 -0.003,-0.0643 -0.009,-0.12364 0,-0.15625 z M 260,228.56249 c -0.009,0.006 -0.007,0.021 0,0.0625 0.0968,0.0138 0.0264,-0.0815 0,-0.0625 z m 5.5625,0.28125 c -0.0981,0.006 -0.34815,0.29505 -0.21875,0.28125 0.13337,0.0266 0.64304,-0.01 0.25,-0.15625 0.021,-0.0859 9.5e-4,-0.12697 -0.0312,-0.125 z m -5.53125,0.21875 c -0.0218,-0.001 -0.0245,0.0399 0.0312,0.125 0.30923,0.16511 0.034,-0.12127 -0.0312,-0.125 z m 4.875,0.1875 c -0.0184,-7.1e-4 -0.051,0.0101 -0.0937,0.0312 0.0994,0.0455 0.14896,-0.0291 0.0937,-0.0312 z m 0.125,0.0312 c -0.13693,0.0377 -0.38348,0.14021 -0.4375,0.25 0.10313,-1.8e-4 0.18325,-0.1022 0.28125,-0.125 0.32049,-0.15288 0.29318,-0.16268 0.15625,-0.125 z m -6.375,1 c -0.0116,-0.007 -0.0552,0.0257 -0.0937,0.0937 0.0414,0.1895 0.12849,-0.0728 0.0937,-0.0937 z m 1.5,0.53125 c 0.052,0.004 0.0833,0.0625 0.125,0.0937 -0.0524,-0.0363 -0.0856,-0.0794 -0.125,-0.0937 z m 2.4375,0.8125 c -0.0385,0.01 -0.0523,0.0335 -0.0625,0.0625 0.0946,-0.044 0.49211,0.15054 0.6875,0.21875 0.48854,0.0204 -0.35512,-0.34821 -0.625,-0.28125 z m 0.90625,0.28125 c -0.0182,-0.002 0.003,0.0237 0.0312,0.0937 -0.19576,0.095 -0.24616,0.0339 0.0312,0.0625 0.0616,0.0235 0.0953,0.025 0.0937,0 0.38314,0.0396 0.0666,-0.24469 -0.0312,-0.0625 -0.0308,-0.0484 -0.0997,-0.0915 -0.125,-0.0937 z m 0.53125,0.0938 c -0.0231,2.4e-4 -0.0377,0.0285 -0.0625,0.0625 0.0442,0.0146 0.0742,0.003 0.0937,0 -0.009,-0.0182 -0.005,-0.0628 -0.0312,-0.0625 z m -1.96875,0.0625 c 0.065,-0.0272 0.0304,0.0826 0,0.1875 -0.0131,-0.0878 -0.1107,-0.0462 -0.1875,0.0312 0.0164,-0.0269 0.0254,-0.0519 0.0312,-0.0937 0.0937,-0.0718 0.12538,-0.11212 0.15625,-0.125 z m 0.9375,0 c -0.008,0.003 -0.012,0.0121 0,0.0312 0.23882,0.0542 0.0924,-0.0358 0.0312,-0.0312 -0.0102,5e-4 -0.023,-0.003 -0.0312,0 z m 1.46875,0.75 c -0.0101,0.006 -0.0453,-0.003 -0.0625,0.0312 0.0396,0.0611 0.061,0.007 0.0625,-0.0312 z m -2.1875,0.0312 c -0.0104,0.0169 0.0106,0.052 0.15625,0.15625 0.36178,0.0251 -0.12511,-0.20702 -0.15625,-0.15625 z m 0.34375,0.1563 c -0.0422,0.0167 -0.0392,0.0395 0.0312,0.0937 0.0799,0.0985 0.14452,-0.0616 0.21875,-0.0937 -0.0966,-0.016 -0.19592,-0.0213 -0.25,0 z m 0.28125,0 c 0.0269,0.001 0.0379,0.0223 0.0625,0.0937 0.12084,-0.0286 0.0505,-0.0711 -0.0625,-0.0937 z m 0.59375,0.0625 c 0.0151,0.0164 0.0447,0.016 0.0625,0.0312 -0.0224,-0.004 -0.0368,0.002 -0.0625,0 -0.006,-0.01 0.005,-0.0214 0,-0.0312 z m 0.71875,0.0937 c 0.0918,-0.004 0.19416,0.006 0.3125,0.0312 -0.93272,0.60426 -0.955,-0.004 -0.3125,-0.0312 z m 0.875,0.1875 c 0.0209,0.0339 0.037,0.0652 0,0.125 -0.01,-0.0407 -0.0132,-0.0852 0,-0.125 z m -0.28125,0.0937 c 0.008,0.0407 0.0223,0.0692 0.0625,0.125 0.002,0.0174 0.0188,0.0345 0.0312,0.0312 0.0374,-0.01 0.0901,-0.078 0.0937,-0.0312 0.0326,-0.03 0.0758,-0.0367 0.0937,-0.0625 0.0122,0.0307 0.0395,0.0525 0.0625,0.0625 -0.0786,0.0243 -0.16205,0.0214 -0.25,0.0312 -0.55894,0.20149 0.0265,0.0442 -0.0937,-0.15625 z"
2115 style="fill:url(#linearGradient3487);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2116 inkscape:connector-curvature="0"
2117 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2118 inkscape:export-ydpi="90"
2119 inkscape:export-xdpi="90"
2120 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/skins/moono/icons/print.png"
2121 sodipodi:nodetypes="ssccssssssscsssscssssscccccssssssssssssss"
2122 inkscape:connector-curvature="0"
2123 id="path4664"
2124 d="M 228.5,2 C 227.669,2 227,2.669 227,3.5 l 0,0.49999 10,0 L 237,3.5 C 237,2.669 236.331,2 235.5,2 z M 226,5 c -0.554,0 -1,0.44599 -1,1 l 0,6 c 0,0.554 0.446,1 1,1 l 2,0 0,-5 c 0,-0.55401 0.446,-1 1,-1 l 6,0 c 0.554,0 1,0.44599 1,1 l 0,5 2,0 c 0.554,0 1,-0.446 1,-1 l 0,-6 c 0,-0.55401 -0.446,-1 -1,-1 z m 3,3 0,7 6,0 0,-7 z m 1.5,1 3,0 c 0.277,0 0.5,0.223 0.5,0.5 0,0.27699 -0.223,0.5 -0.5,0.5 l -3,0 C 230.223,10 230,9.77699 230,9.5 230,9.223 230.223,9 230.5,9 z m 0,2 3,0 c 0.277,0 0.5,0.223 0.5,0.5 0,0.27699 -0.223,0.5 -0.5,0.5 l -3,0 c -0.277,0 -0.5,-0.22301 -0.5,-0.5 0,-0.277 0.223,-0.5 0.5,-0.5 z"
2125 style="fill:url(#linearGradient3489);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
2126 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2127 inkscape:connector-curvature="0"
2128 id="path4666"
2129 d="m 72,98 c -3.31371,0 -6,2.68629 -6,6 0,3.3137 2.68629,6 6,6 3.31371,0 6,-2.6863 6,-6 0,-3.31371 -2.68629,-6 -6,-6 z m 0,1 c 2.76142,0 5,2.23857 5,5 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76143 2.23858,-5 5,-5 z m 0,2 c -1.65685,0 -3,1.34314 -3,3 0,1.65685 1.34315,3 3,3 1.65685,0 3,-1.34315 3,-3 0,-1.65686 -1.34315,-3 -3,-3 z"
2130 style="fill:url(#linearGradient3491);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
2131 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2132 sodipodi:nodetypes="ssssssssssssscccccsss"
2133 inkscape:connector-curvature="0"
2134 id="path4670"
2135 d="m 291,100 c -1.662,0 -3,1.33799 -3,3 l 0,2 c 0,1.662 1.338,3 3,3 l 10,0 c 1.662,0 3,-1.338 3,-3 l 0,-2 c 0,-1.66201 -1.338,-3 -3,-3 z m 0,1 10,0 c 1.108,0 2,0.89199 2,2 l 0,2 c 0,1.108 -0.892,2 -2,2 l -2,-3 -3,3 -3,-2 -2,2 c -1.108,0 -2,-0.892 -2,-2 l 0,-2 c 0,-1.10801 0.892,-2 2,-2 z"
2136 style="fill:url(#linearGradient3493);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
2137 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2138 style="font-size:16.54135895px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient3495);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3);font-family:Sans"
2139 d="m 139.5,130 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 2.5,0 0,1 -2.5,0 c -0.277,0 -0.5,0.22299 -0.5,0.5 l 0,2 c 0,0.277 0.223,0.5 0.5,0.5 l 3,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 l -2.5,0 0,-1 2.5,0 c 0.277,0 0.5,-0.223 0.5,-0.5 l 0,-2 c 0,-0.27701 -0.223,-0.5 -0.5,-0.5 l -3,0 z m -8.375,2.9375 c -0.29577,0 -0.58586,0.11711 -0.8125,0.34375 -0.45327,0.45327 -0.45327,1.20297 0,1.65625 l 2.03125,2.03125 L 130.3125,139 c -0.45327,0.45327 -0.45327,1.20297 0,1.65625 0.45327,0.45327 1.17173,0.45327 1.625,0 L 134,138.625 l 2.03125,2.03125 c 0.45327,0.45327 1.17173,0.45327 1.625,0 0.45327,-0.45328 0.45327,-1.20298 0,-1.65625 l -2.03125,-2.03125 2.03125,-2.03125 c 0.45327,-0.45328 0.45327,-1.20298 0,-1.65625 -0.45327,-0.45328 -1.17173,-0.45328 -1.625,0 L 134,135.3125 l -2.0625,-2.03125 c -0.22664,-0.22664 -0.51673,-0.34375 -0.8125,-0.34375 z"
2140 id="path4672"
2141 inkscape:connector-curvature="0"
2142 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2143 id="path4674"
2144 d="m 171.5,138 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.24281,0.60287 0.5,0.5 l 2.5,0 0,1 -2.5,0 c -0.277,0 -0.5,0.22299 -0.5,0.5 l 0,2 c 0,0.277 0.223,0.5 0.5,0.5 l 3,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 l -2.5,0 0,-1 2.5,0 c 0.277,0 0.5,-0.223 0.5,-0.5 l 0,-2 c 0,-0.27701 -0.223,-0.5 -0.5,-0.5 z m -8.375,-6.0625 c -0.29577,0 -0.58586,0.11711 -0.8125,0.34375 -0.45327,0.45327 -0.45327,1.20297 0,1.65625 l 2.03125,2.03125 L 162.3125,138 c -0.45327,0.45327 -0.45327,1.20297 0,1.65625 0.45327,0.45327 1.17173,0.45327 1.625,0 L 166,137.625 l 2.03125,2.03125 c 0.45327,0.45327 1.17173,0.45327 1.625,0 0.45327,-0.45328 0.45327,-1.20298 0,-1.65625 l -2.03125,-2.03125 2.03125,-2.03125 c 0.45327,-0.45328 0.45327,-1.20298 0,-1.65625 -0.45327,-0.45328 -1.17173,-0.45328 -1.625,0 L 166,134.3125 l -2.0625,-2.03125 c -0.22664,-0.22664 -0.51673,-0.34375 -0.8125,-0.34375 z"
2145 style="font-size:16.54135895px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient3497);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3);font-family:Sans"
2146 inkscape:connector-curvature="0"
2147 sodipodi:nodetypes="sssccsssssssccsssssssscssccssscsssccs"
2148 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2149 inkscape:connector-curvature="0"
2150 id="path4676"
2151 d="m 6.5,64.99999 c -3.03757,0 -5.5,2.46243 -5.5,5.5 0,3.03756 2.46243,5.5 5.5,5.5 0.938705,0 1.7919409,-0.27092 2.5625,-0.6875 l 3.75,3.75 c 0.587606,0.58761 1.537394,0.58761 2.125,0 0.587606,-0.58761 0.587606,-1.53739 0,-2.125 L 11.21875,73.21874 C 11.691902,72.41237 12,71.50424 12,70.49999 c 0,-3.03757 -2.46243,-5.5 -5.5,-5.5 z m 0,2 c 1.933,0 3.5,1.567 3.5,3.5 0,1.06272 -0.47105,2.01435 -1.21875,2.65625 -0.006,0.005 -0.02525,-0.005 -0.03125,0 -0.60985,0.51643 -1.38828,0.84375 -2.25,0.84375 -1.933,0 -3.5,-1.56701 -3.5,-3.5 0,-1.933 1.567,-3.5 3.5,-3.5 z"
2152 style="fill:url(#linearGradient3499);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
2153 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2154 inkscape:connector-curvature="0"
2155 id="path4678"
2156 d="m 296.00004,34.99999 7,5 -6.99998,4.99999 -2e-5,-3.33332 c -3.41666,0 -5.61556,1.22 -7,3.33333 0,-4.98332 3.60112,-6.66666 7,-6.66666 -2e-5,-0.85078 -1e-5,-2.61389 0,-3.33334 z"
2157 style="fill:url(#linearGradient3501);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2158 sodipodi:nodetypes="ccccccc"
2159 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2160 inkscape:connector-curvature="0"
2161 id="path4680"
2162 d="m 68,163 c -1.10457,0 -2,0.89543 -2,2 0,1.10456 0.89543,2 2,2 1.10457,0 2,-0.89544 2,-2 0,-1.10457 -0.89543,-2 -2,-2 z m 4.5,0 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 l -6,0 z m 0,2 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 l -6,0 z m -4.5,5 c -1.10457,0 -2,0.89543 -2,2 0,1.10456 0.89543,2 2,2 1.10457,0 2,-0.89544 2,-2 0,-1.10457 -0.89543,-2 -2,-2 z m 4.5,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -6,0 z m 0,2 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -6,0 z"
2163 style="fill:url(#linearGradient3503);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
2164 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2165 sodipodi:nodetypes="sssssssssssssssssssssssssssssssssssccccsssscccsssssssssssssssssssssssssssssssssssss"
2166 inkscape:connector-curvature="0"
2167 id="path4682"
2168 d="m 135.53125,162 c -0.25721,0 -0.46875,0.22299 -0.46875,0.5 l 0,12 c 0,0.277 0.21154,0.5 0.46875,0.5 0.25721,0 0.46875,-0.223 0.46875,-0.5 l 0,-12 c 0,-0.27701 -0.21154,-0.5 -0.46875,-0.5 z M 131.5,164 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 4,0 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 C 143,164.20565 142.777,164 142.5,164 z m 0,2 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 3,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 C 141,166.20565 140.777,166 140.5,166 z m -8.5,2.46875 0,0.0625 2,1.46875 0,-1 2.5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 C 134,168.20565 133.777,168 133.5,168 l -2.5,0 0,-1 z M 137.5,168 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 C 143,168.20565 142.777,168 142.5,168 z m 0,2 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 3,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 C 141,170.20565 140.777,170 140.5,170 z m -6,2 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 4,0 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 C 143,172.20565 142.777,172 142.5,172 z"
2169 style="fill:url(#linearGradient3505);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
2170 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2171 style="fill:url(#linearGradient3507);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
2172 d="m 232.46875,162 c 0.25721,0 0.46875,0.22299 0.46875,0.5 l 0,12 c 0,0.277 -0.21154,0.5 -0.46875,0.5 C 232.21154,175 232,174.777 232,174.5 l 0,-12 c 0,-0.27701 0.21154,-0.5 0.46875,-0.5 z m 4.03125,2 c 0.27614,0 0.5,0.22385 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27615 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22385 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27615 0.22386,-0.5 0.5,-0.5 z m -4,0 c 0.277,0 0.5,0.20565 0.5,0.46875 l 0,0.0625 C 231,164.79434 230.777,165 230.5,165 l -5,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 C 225,164.20565 225.223,164 225.5,164 z m 0,2 c 0.277,0 0.5,0.20565 0.5,0.46875 l 0,0.0625 C 231,166.79434 230.777,167 230.5,167 l -3,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 C 227,166.20565 227.223,166 227.5,166 z m 8.49436,2.53125 0,-0.0625 -1.99549,-1.46875 0,1 -2.49436,0 c -0.27637,0 -0.49887,0.18037 -0.49887,0.46875 l 0,0.0625 c 0,0.2631 0.2225,0.46875 0.49887,0.46875 l 2.49436,0 0,1 z M 230.5,168 c 0.277,0 0.5,0.20565 0.5,0.46875 l 0,0.0625 C 231,168.79434 230.777,169 230.5,169 l -5,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 C 225,168.20565 225.223,168 225.5,168 z m 0,2 c 0.277,0 0.5,0.20565 0.5,0.46875 l 0,0.0625 C 231,170.79434 230.777,171 230.5,171 l -3,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 C 227,170.20565 227.223,170 227.5,170 z m 6,2 c 0.27614,0 0.5,0.22385 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27615 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22385 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27615 0.22386,-0.5 0.5,-0.5 z m -4,0 c 0.277,0 0.5,0.20565 0.5,0.46875 l 0,0.0625 C 231,172.79434 230.777,173 230.5,173 l -5,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 C 225,172.20565 225.223,172 225.5,172 z"
2173 id="path4684"
2174 inkscape:connector-curvature="0"
2175 sodipodi:nodetypes="sssssssssssssssssssssssssssssssssssccccsssscccsssssssssssssssssssssssssssssssssssss"
2176 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2177 sodipodi:nodetypes="sscccccccccccscccc"
2178 inkscape:connector-curvature="0"
2179 id="path4686"
2180 d="m 458,163 c -1.65685,0 -3,1.34314 -3,3 0,1.65685 1.34315,3 3,3 l 0,4 1,0 0,-9 1,0 0,1 0,8 1,0 0,-8 1,0 0,-2 z m -8,3 0,6 3,-3 z"
2181 style="fill:url(#linearGradient3509);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
2182 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2183 sodipodi:nodetypes="sscccccccccccscccc"
2184 inkscape:connector-curvature="0"
2185 id="path4688"
2186 d="m 485,163 c -1.65685,0 -3,1.34314 -3,3 0,1.65685 1.34315,3 3,3 l 0,4 1,0 0,-9 1,0 0,1 0,8 1,0 0,-8 1,0 0,-2 z m 9.00442,3 0,6 -3.00884,-3 z"
2187 style="fill:url(#linearGradient3511);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
2188 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2189 sodipodi:nodetypes="ccccccccccccc"
2190 inkscape:connector-curvature="0"
2191 id="path4691"
2192 d="m 41.56445,200.66667 -1.02277,1.06211 2.08489,2.08489 -2.08489,2.12422 L 41.56445,207 43.68867,204.87578 45.8129,207 l 1.02277,-1.06211 -2.08489,-2.12423 2.08489,-2.08488 -1.02277,-1.06211 -2.12423,2.12422 z"
2193 style="fill:url(#linearGradient3513);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2194 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2195 style="fill:url(#linearGradient3515);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
2196 d="m 135.53125,162 c -0.25721,0 -0.46875,0.22299 -0.46875,0.5 l 0,12 c 0,0.277 0.21154,0.5 0.46875,0.5 0.25721,0 0.46875,-0.223 0.46875,-0.5 l 0,-12 c 0,-0.27701 -0.21154,-0.5 -0.46875,-0.5 z M 131.5,164 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 4,0 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 C 143,164.20565 142.777,164 142.5,164 z m 0,2 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 3,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 C 141,166.20565 140.777,166 140.5,166 z m -8.5,2.46875 0,0.0625 2,1.46875 0,-1 2.5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 C 134,168.20565 133.777,168 133.5,168 l -2.5,0 0,-1 z M 137.5,168 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 C 143,168.20565 142.777,168 142.5,168 z m 0,2 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 3,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 C 141,170.20565 140.777,170 140.5,170 z m -6,2 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 4,0 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 C 143,172.20565 142.777,172 142.5,172 z"
2197 id="path4693"
2198 inkscape:connector-curvature="0"
2199 sodipodi:nodetypes="sssssssssssssssssssssssssssssssssssccccsssscccsssssssssssssssssssssssssssssssssssss"
2200 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2201 sodipodi:nodetypes="sssssssssssssssssssssssssssssssssssccccsssscccsssssssssssssssssssssssssssssssssssss"
2202 inkscape:connector-curvature="0"
2203 id="path4695"
2204 d="m 167.64267,162 c -0.25721,0 -0.46875,0.223 -0.46875,0.5 l 0,12 c 0,0.27699 0.21154,0.5 0.46875,0.5 0.25721,0 0.46875,-0.22301 0.46875,-0.5 l 0,-12 c 0,-0.277 -0.21154,-0.5 -0.46875,-0.5 z m -4.03125,2 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 4,0 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z m 0,2 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 3,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z m -3.38858,2.46875 0,0.0625 -2.08914,1.46875 0,-1 -2.61141,0 C 161.23294,169 161,168.9653 161,168.53125 l 0,-0.0625 C 161,168.20565 161.23294,168 161.52229,168 l 2.61141,0 0,-1 z M 169.61142,168 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z m 0,2 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 3,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z m -6,2 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 2,0 c -0.27614,0 -0.5,0.22385 -0.5,0.5 0,0.27614 0.22386,0.5 0.5,0.5 0.27614,0 0.5,-0.22386 0.5,-0.5 0,-0.27615 -0.22386,-0.5 -0.5,-0.5 z m 4,0 c -0.277,0 -0.5,0.20565 -0.5,0.46875 l 0,0.0625 c 0,0.26309 0.223,0.46875 0.5,0.46875 l 5,0 c 0.277,0 0.5,-0.20566 0.5,-0.46875 l 0,-0.0625 c 0,-0.2631 -0.223,-0.46875 -0.5,-0.46875 z"
2205 style="fill:url(#linearGradient3517);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
2206 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2207 sodipodi:nodetypes="sssssssssssssssssssssssssssssssssssccccsssscccsssssssssssssssssssssssssssssssssssss"
2208 inkscape:connector-curvature="0"
2209 id="path4698"
2210 d="m 200.46875,162 c 0.25722,0 0.46875,0.223 0.46875,0.5 l 0,12 c 0,0.277 -0.21153,0.5 -0.46875,0.5 C 200.21154,175 200,174.777 200,174.5 l 0,-12 c 0,-0.277 0.21154,-0.5 0.46875,-0.5 z m 4.03125,2 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -4,0 c 0.277,0 0.5,0.20566 0.5,0.46875 l 0,0.0625 C 199,164.79434 198.777,165 198.5,165 l -5,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 C 193,164.20566 193.223,164 193.5,164 z m 0,2 c 0.277,0 0.5,0.20566 0.5,0.46875 l 0,0.0625 C 199,166.79434 198.777,167 198.5,167 l -3,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 C 195,166.20566 195.223,166 195.5,166 z m 3.5,2.53125 0,-0.0625 2,-1.46875 0,1 2.5,0 c 0.277,0 0.5,0.20566 0.5,0.46875 l 0,0.0625 c 0,0.26309 -0.22343,0.48425 -0.5,0.46875 l -2.5,0 0,1 z M 198.5,168 c 0.277,0 0.5,0.20566 0.5,0.46875 l 0,0.0625 C 199,168.79434 198.777,169 198.5,169 l -5,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 C 193,168.20566 193.223,168 193.5,168 z m 0,2 c 0.277,0 0.5,0.20566 0.5,0.46875 l 0,0.0625 C 199,170.79434 198.777,171 198.5,171 l -3,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 C 195,170.20566 195.223,170 195.5,170 z m 6,2 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -4,0 c 0.277,0 0.5,0.20566 0.5,0.46875 l 0,0.0625 C 199,172.79434 198.777,173 198.5,173 l -5,0 c -0.277,0 -0.5,-0.20566 -0.5,-0.46875 l 0,-0.0625 C 193,172.20566 193.223,172 193.5,172 z"
2211 style="fill:url(#linearGradient3519);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
2212 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2213 inkscape:connector-curvature="0"
2214 id="path4700"
2215 d="m 1,226 0,12 14,0 0,-12 -14,0 z m 1,1 12,0 0,7.59375 L 11.09375,231 8,235 5,233 2,237 2,227 z m 2.5,1 C 3.67157,228 3,228.67157 3,229.5 3,230.32842 3.67157,231 4.5,231 5.32842,231 6,230.32842 6,229.5 6,228.67157 5.32842,228 4.5,228 z"
2216 style="fill:url(#linearGradient3521);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
2217 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2218 sodipodi:nodetypes="ccccccccccccccccccccccccccccc"
2219 inkscape:connector-curvature="0"
2220 id="path4702"
2221 d="m 198,227 0,3 10,0 0,-3 z m -5,2 0,7 4,-3.4375 z m 5,3 0,1 3,0 0,-1 z m 4,0 0,1 3,0 0,-1 z m 4,0 0,1 2,0 0,-1 z m -8,3 0,3 10,0 0,-3 z"
2222 style="fill:url(#linearGradient3523);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
2223 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2224 sodipodi:nodetypes="sscccssssscccssss"
2225 inkscape:connector-curvature="0"
2226 id="path4704"
2227 d="m 322.5,100 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.24236 0.59935,0.45353 0.5625,0.5 l 0.4375,0 0,5 -0.5,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.37612,-0.74776 -0.5,-0.5 l -0.5,0 0,-5 0.5,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z"
2228 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3525);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1-3);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
2229 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2230 sodipodi:nodetypes="ssssssccssssssccsssssscccssssscccssssccccccccccc"
2231 inkscape:connector-curvature="0"
2232 id="path4706"
2233 d="m 130,98 c -1.0907,0 -2,0.9093 -2,2 l 0,9 c 0,1.09069 0.9093,2 2,2 l 12,0 c 1.0907,0 2,-0.90931 2,-2 l 0,-0.375 c 0.0328,-0.0893 0.0213,-0.17215 0,-0.25 L 144,100 c 0,-1.0907 -0.9093,-2 -2,-2 z m 0,1 12,0 c 0.554,0 1,0.446 1,1 l 0,4.11795 -5.88205,5.88195 L 130,110 c -0.554,1e-5 -1,-0.446 -1,-1 l 0,-9 c 0,-0.554 0.446,-1 1,-1 z m 0.5,1 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.24237 0.0444,0.53446 0.5625,0.5 l 0.4375,0 0,5 -0.5,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.12178,-0.5281 -0.5,-0.5 l -0.5,0 0,-5 0.5,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 12.5,5.40625 0,0.84375 -3.71875,3.6875 -0.0312,0.0625 -0.84375,0 z m 0,2.21875 0,0.625 -1.71875,1.75 -0.625,0 z"
2234 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3527);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1-3);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
2235 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2236 sodipodi:nodetypes="sssssssssssssssssscccc"
2237 inkscape:connector-curvature="0"
2238 id="path4708"
2239 d="m 194,99 c -1.0907,0 -2,0.9093 -2,2 l 0,7 c 0,1.0907 0.9093,2 2,2 l 12,0 c 1.0907,0 2,-0.9093 2,-2 l 0,-7 c 0,-1.0907 -0.9093,-2 -2,-2 z m 0,1 12,0 c 0.554,0 1,0.446 1,1 l 0,7 c 0,0.554 -0.446,1 -1,1 l -12,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-7 c 0,-0.554 0.446,-1 1,-1 z m 6,3 3,4 3,-4 z"
2240 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3529);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1-3);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
2241 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2242 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3531);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1-3);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
2243 d="m 209,707 c -2.32953,0 -4.43371,1.05678 -5.90625,2.6875 l 3.5625,2.0625 C 207.31214,711.27977 208.12788,711 209,711 c 2.216,0 4,1.784 4,4 l 0,3 -5,0 -4,0 -2,0 -2,0 c -1.108,0 -2,0.89196 -2,2 l 0,12 c 0,1.108 0.892,2 2,2 l 18,0 c 1.108,0 2,-0.892 2,-2 l 0,-12 c 0,-1.10804 -0.892,-2 -2,-2 l -1,0 0,-3 c 0,-4.36281 -3.63719,-8 -8,-8 z m 0,17 c 1.65686,0 3,1.34314 3,3 0,1.65682 -1.34314,3 -3,3 -1.65686,0 -3,-1.34318 -3,-3 0,-1.65686 1.34314,-3 3,-3 z"
2244 transform="translate(1,-367.75001)"
2245 id="path4710"
2246 inkscape:connector-curvature="0" /><path
2247 inkscape:connector-curvature="0"
2248 id="path4712"
2249 d="m 3.5,163 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 0.5,0 0,3.5 c 0,0.27699 0.223,0.5 0.5,0.5 0.277,0 0.5,-0.22301 0.5,-0.5 l 0,-4 C 5,163.223 4.777,163 4.5,163 l -1,0 z m 4,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -6,0 z m 0,2 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -6,0 z m -5,5 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 1.5,0 0,1 -1.5,0 C 2.223,172 2,172.223 2,172.5 l 0,2 c 0,0.27699 0.223,0.5 0.5,0.5 l 2,0 C 4.777,175 5,174.77699 5,174.5 5,174.223 4.777,174 4.5,174 l -1.5,0 0,-1 1.5,0 c 0.0693,0 0.12764,-0.006 0.1875,-0.0312 0.12718,-0.041 0.2307,-0.14213 0.28125,-0.28125 0.0252,-0.0599 0.0312,-0.11825 0.0312,-0.1875 l 0,-2 c 0,-0.0693 -0.006,-0.12765 -0.0312,-0.1875 -0.0505,-0.13913 -0.15407,-0.24028 -0.28125,-0.28125 -0.0404,-0.0171 -0.0799,-0.0253 -0.125,-0.0312 l -0.0625,0 -2,0 z m 5,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -6,0 z m 0,2 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -6,0 z"
2250 style="fill:url(#linearGradient3673);fill-opacity:0.99215686;stroke:none;filter:url(#filter3224-1-7-1-3)"
2251 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2252 sodipodi:nodetypes="cccccccccccccccccccscccscscccscccccccc"
2253 d="m 13.295487,138.29724 c -9e-6,0.70891 -0.137341,1.30388 -0.411995,1.78492 -0.274673,0.46838 -0.650527,0.84815 -1.127571,1.1393 -0.462605,0.2785 -1.019157,0.48105 -1.669674,0.60763 -0.6360688,0.11394 -1.3227277,0.1709 -2.059977,0.1709 l -3.7296601,0.0121 0,-12.04805 3.4694455,-0.003 c 1.0119224,1e-5 1.8359131,0.095 2.4719816,0.28482 0.636059,0.17724 1.134796,0.41776 1.496201,0.72156 0.361395,0.29117 0.607142,0.6203 0.737259,0.9874 0.130097,0.36712 0.195146,0.73423 0.195156,1.10133 -10e-6,0.557 -0.159025,1.0507 -0.477054,1.4811 -0.303581,0.43041 -0.715576,0.7722 -1.235986,1.02538 0.910722,0.29116 1.525098,0.68359 1.843147,1.17728 0.332478,0.49371 0.498718,1.01272 0.498727,1.55705 m -6.3317393,-1.59503 0,3.19006 c 0.1879221,0.0253 0.3903124,0.0443 0.6071515,0.057 0.2312976,0.0127 0.4553613,0.019 0.67221,0.019 0.303571,1e-5 0.5999175,-0.019 0.8890395,-0.057 0.2891221,-0.0506 0.5421027,-0.13292 0.7589418,-0.24685 0.2312975,-0.12659 0.4192195,-0.29748 0.5637855,-0.51269 0.144556,-0.22786 0.216839,-0.51268 0.216839,-0.85448 0,-0.56965 -0.209614,-0.97473 -0.628834,-1.21526 -0.4047711,-0.25317 -0.9540982,-0.37976 -1.6479815,-0.37977 l -1.4311518,0 m 1.0408394,-1.93682 c 0.6794248,1e-5 1.1926105,-0.12658 1.5395666,-0.37977 0.3469368,-0.26583 0.5204103,-0.62661 0.5204103,-1.08234 0,-0.27849 -0.05059,-0.50002 -0.1517905,-0.66459 -0.1011903,-0.17722 -0.2385221,-0.31014 -0.4119953,-0.39876 -0.1734733,-0.10126 -0.3758635,-0.16456 -0.6071516,-0.18989 -0.2312976,-0.038 -0.4698197,-0.057 -0.7155759,-0.057 -0.2023806,1e-5 -0.4119953,0.006 -0.6288345,0.019 -0.2168391,0.0127 -0.4119953,0.0317 -0.5854685,0.057 l 0,2.69636 1.0408394,0"
2254 style="font-size:22.63113022px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient3533);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3);font-family:Ubuntu Mono;-inkscape-font-specification:Ubuntu Mono Bold"
2255 id="path4714"
2256 inkscape:connector-curvature="0"
2257 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><g
2258 id="g4716"
2259 style="font-size:14.87401295px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient3537);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3);font-family:Sans"
2260 transform="matrix(1.8191013,0,-0.4691387,1.8191013,-489.83328,-196.53417)"><path
2261 sodipodi:nodetypes="ccccccccccccc"
2262 inkscape:connector-curvature="0"
2263 id="path4718"
2264 style="font-size:21.24859047px;font-variant:normal;font-weight:bold;font-stretch:normal;fill:url(#linearGradient3535);font-family:Ubuntu Mono;-inkscape-font-specification:Ubuntu Mono Bold"
2265 d="m 325.2364,61.999996 0,-2.167356 1.76912,0 -0.1287,-8.818165 -1.76912,0 0,-2.167356 6.15181,0 0,2.167356 -1.74787,0 0.1287,8.818165 1.74787,0 0,2.167356 -6.15181,0" /></g><g
2266 id="g4720"
2267 style="font-size:15.82676315px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4491);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3);font-family:Sans"
2268 transform="matrix(2.1281094,0,0,1.8850568,-169.0631,-208.10971)"><path
2269 sodipodi:nodetypes="ccccccccc"
2270 inkscape:connector-curvature="0"
2271 id="path4722"
2272 style="font-size:22.60966301px;font-style:italic;font-variant:normal;font-stretch:normal;fill:url(#linearGradient5619);fill-opacity:1;font-family:'8bitoperator JVE';-inkscape-font-specification:'8bitoperator JVE Italic'"
2273 d="m 263.15116,63.849438 2.25213,-9.18288 -2.8262,0 0.28703,-1.413104 8.47863,0 -0.28704,1.413104 -2.82621,0 -2.25213,9.18288 -2.82621,0" /></g><path
2274 inkscape:connector-curvature="0"
2275 id="path4726"
2276 d="m 264.00004,34.99999 7,5 -6.99998,4.99999 -2e-5,-3.33332 c -3.41666,0 -5.61556,1.22 -7,3.33333 0,-4.98332 3.60112,-6.66666 7,-6.66666 -2e-5,-0.85078 -1e-5,-2.61389 0,-3.33334 z"
2277 style="fill:url(#linearGradient3543);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2278 sodipodi:nodetypes="ccccccc"
2279 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2280 sodipodi:nodetypes="ccccccc"
2281 style="fill:url(#linearGradient3545);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2282 d="m 328,35 -7,5 6.99998,4.99998 2e-5,-3.33332 c 3.41666,0 5.61556,1.22 7,3.33334 0,-4.98333 -3.60112,-6.66667 -7,-6.66667 2e-5,-0.85078 10e-6,-2.61388 0,-3.33333 z"
2283 id="path4728"
2284 inkscape:connector-curvature="0"
2285 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2286 sodipodi:nodetypes="sssssssssssssssssscccc"
2287 inkscape:connector-curvature="0"
2288 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3547);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1-3);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
2289 d="m 238,99 c 1.0907,0 2,0.9093 2,2 l 0,7 c 0,1.0907 -0.9093,2 -2,2 l -12,0 c -1.0907,0 -2,-0.9093 -2,-2 l 0,-7 c 0,-1.0907 0.9093,-2 2,-2 z m 0,1 -12,0 c -0.554,0 -1,0.446 -1,1 l 0,7 c 0,0.554 0.446,1 1,1 l 12,0 c 0.554,0 1,-0.446 1,-1 l 0,-7 c 0,-0.554 -0.446,-1 -1,-1 z m -6,3 -3,4 -3,-4 z"
2290 id="path4730"
2291 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2292 inkscape:connector-curvature="0"
2293 id="path4732"
2294 d="m 111,193 0,14 -1,0 0,-14 z m -4.74999,-0.41664 c 0.86983,0.009 1.76033,0.34033 2.74999,1.375 L 109,202 c -3.96132,-4.05865 -6.94268,2.81598 -11,-1 l 0,-8.04165 c 3.03099,2.934 5.64051,-0.40352 8.25001,-0.37496 z"
2295 style="fill:url(#linearGradient3549);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2296 sodipodi:nodetypes="cccccccccccc"
2297 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2298 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3551);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1-3);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
2299 d="m 78.5,289 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -3.5,0 c 1.0907,0 2,0.9093 2,2 l 0,10 c 0,1.0907 -0.9093,2 -2,2 -1.0907,0 -2,-0.9093 -2,-2 l 0,-10 c 0,-1.0907 0.9093,-2 2,-2 z m 0,1 c -0.554,0 -1,0.446 -1,1 l 0,10 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-10 c 0,-0.554 -0.446,-1 -1,-1 z m 11.5,1 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -8,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 8,2 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -8,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 8,2 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -8,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 8,2 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m -2,0 c 0.27614,0 0.5,0.22386 0.5,0.5 0,0.27614 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.22386 -0.5,-0.5 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 6.5,2 c 1.0907,0 2,0.9093 2,2 0,1.0907 -0.9093,2 -2,2 l -5,0 c -1.0907,0 -2,-0.9093 -2,-2 0,-1.0907 0.9093,-2 2,-2 l 5,0 z m 0,1 -5,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 5,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 z"
2300 id="path4734"
2301 inkscape:connector-curvature="0"
2302 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2303 sodipodi:nodetypes="ssccsssssccsssscccccccccc"
2304 inkscape:connector-curvature="0"
2305 id="path4736"
2306 d="m 67,1 c -1.108,0 -2,0.892 -2,2 l 0,8.9375 3,3.0625 9,0 c 1.108,0 2,-0.892 2,-2 L 79,3 C 79,1.892 78.108,1 77,1 z m 0,1 10,0 0,4 c 0,1.108 0.108,1 -1,1 L 68,7 C 66.892,7 67,7.108 67,6 z m 1,8 8,0 0,4 -4,0 0,-3 -2,0 0,3 -2,0 z"
2307 style="fill:url(#linearGradient3553);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
2308 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2309 sodipodi:nodetypes="ssscsssssssssssssssssssscssccsssssssccsccssccccccssssssssssssss"
2310 style="fill:url(#linearGradient3671);fill-opacity:0.99215686;stroke:none;filter:url(#filter3224-1-7-1-3)"
2311 d="m 44.5,163 c 0,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.777,0.5 0.5,0.5 l 0.5,0 0,3.5 c 0,0.27699 0.223,0.5 0.5,0.5 0.277,0 0.5,-0.22301 0.5,-0.5 l 0,-4 c 0,-0.277 -0.5,-0.5 -0.5,-0.5 z m -10,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 0,2 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 9,5 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 1.5,0 0,1 -1.5,0 c -0.277,0 -0.5,0.223 -0.5,0.5 l 0,2 c 0,0.27699 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -1.5,0 0,-1 1.5,0 c 0.0693,0 0.12764,-0.006 0.1875,-0.0312 0.12718,-0.041 0.2307,-0.14213 0.28125,-0.28125 0.0252,-0.0599 0.0312,-0.11825 0.0312,-0.1875 l 0,-2 c 0,-0.0693 -0.006,-0.12765 -0.0312,-0.1875 -0.0505,-0.13913 -0.15407,-0.24028 -0.28125,-0.28125 -0.0404,-0.0171 -0.0799,-0.0253 -0.125,-0.0312 l -0.0625,0 -2,0 z m -9,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 0,2 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z"
2312 id="path4738"
2313 inkscape:connector-curvature="0"
2314 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2315 sodipodi:nodetypes="ssssssssssssssssssssssssssssssssssssss"
2316 style="fill:url(#linearGradient3555);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
2317 d="m 108,163 c -1.10457,0 -2,0.89543 -2,2 0,1.10456 0.89543,2 2,2 1.10457,0 2,-0.89544 2,-2 0,-1.10457 -0.89543,-2 -2,-2 z m -10.5,0 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 z m 0,2 c -0.277,0 -0.5,0.22299 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.27701 -0.223,-0.5 -0.5,-0.5 z m 10.5,5 c -1.10457,0 -2,0.89543 -2,2 0,1.10456 0.89543,2 2,2 1.10457,0 2,-0.89544 2,-2 0,-1.10457 -0.89543,-2 -2,-2 z m -10.5,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 0,2 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.277 0.223,0.5 0.5,0.5 l 6,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z"
2318 id="path4740"
2319 inkscape:connector-curvature="0"
2320 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2321 style="fill:url(#linearGradient3557);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
2322 d="m 234,227 0,3 -10,0 0,-3 z m 5,2 0,7 -4,-3.4375 z m -5,3 0,1 -3,0 0,-1 z m -4,0 0,1 -3,0 0,-1 z m -4,0 0,1 -2,0 0,-1 z m 8,3 0,3 -10,0 0,-3 z"
2323 id="path4742"
2324 inkscape:connector-curvature="0"
2325 sodipodi:nodetypes="ccccccccccccccccccccccccccccc"
2326 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2327 inkscape:connector-curvature="0"
2328 id="path4746"
2329 d="m 40,320.96568 c -3.86517,0 -7,3.1502 -7,7.03432 0,3.88412 3.13483,7.03431 7,7.03431 3.86633,0 7,-3.15019 7,-7.03431 0,-3.88412 -3.13367,-7.03432 -7,-7.03432 z"
2330 style="fill:url(#linearGradient3559);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2331 sodipodi:nodetypes="sssss"
2332 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2333 inkscape:transform-center-y="2.9999632"
2334 inkscape:transform-center-x="-1.4999864"
2335 sodipodi:end="2.0943951"
2336 sodipodi:start="0"
2337 sodipodi:type="arc"
2338 style="fill:#999999;fill-opacity:1;stroke:none"
2339 id="path4748"
2340 sodipodi:cx="39.5"
2341 sodipodi:cy="327.5"
2342 sodipodi:rx="5.5"
2343 sodipodi:ry="5.5"
2344 d="m 45,327.5 a 5.5,5.5 0 0 1 -8.25,4.76314 L 39.5,327.5 z"
2345 transform="matrix(2.1818034,0,0,2.1818034,-5.1812409,-426.29057)" /><path
2346 transform="matrix(-1.0909017,1.8894973,-1.8894973,-1.0909017,742.90096,570.88525)"
2347 d="m 45,327.5 a 5.5,5.5 0 0 1 -8.25,4.76314 L 39.5,327.5 z"
2348 sodipodi:ry="5.5"
2349 sodipodi:rx="5.5"
2350 sodipodi:cy="327.5"
2351 sodipodi:cx="39.5"
2352 id="path4750"
2353 style="fill:#cccccc;fill-opacity:1;stroke:none"
2354 sodipodi:type="arc"
2355 sodipodi:start="0"
2356 sodipodi:end="2.0943951"
2357 inkscape:transform-center-x="3.0004864" /><path
2358 inkscape:transform-center-y="-3.0004886"
2359 inkscape:transform-center-x="-1.4999969"
2360 sodipodi:end="2.0943951"
2361 sodipodi:start="0"
2362 sodipodi:type="arc"
2363 style="fill:#666666;fill-opacity:1;stroke:none"
2364 id="path4752"
2365 sodipodi:cx="39.5"
2366 sodipodi:cy="327.5"
2367 sodipodi:rx="5.5"
2368 sodipodi:ry="5.5"
2369 d="m 45,327.5 a 5.5,5.5 0 0 1 -8.25,4.76314 L 39.5,327.5 z"
2370 transform="matrix(-1.0909017,-1.8894973,1.8894973,-1.0909017,-494.71972,720.15551)" /><rect
2371 ry="0"
2372 rx="0"
2373 y="230.99997"
2374 x="97"
2375 height="2"
2376 width="14"
2377 id="rect4754"
2378 style="fill:url(#linearGradient3561);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
2379 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><rect
2380 style="fill:#636363;fill-opacity:0.99215686;stroke:none;filter:url(#filter3224-1-7-1-3)"
2381 id="rect4756"
2382 width="12"
2383 height="0.99999475"
2384 x="98"
2385 y="227.99997"
2386 rx="0"
2387 ry="0"
2388 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><rect
2389 ry="0"
2390 rx="0"
2391 y="225.99997"
2392 x="98"
2393 height="0.99999475"
2394 width="12"
2395 id="rect4758"
2396 style="fill:#636363;fill-opacity:0.99215686;stroke:none;filter:url(#filter3224-1-7-1-3)"
2397 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><rect
2398 ry="0"
2399 rx="0"
2400 y="236.99997"
2401 x="98"
2402 height="0.99999475"
2403 width="12"
2404 id="rect4760"
2405 style="fill:#636363;fill-opacity:0.99215686;stroke:none;filter:url(#filter3224-1-7-1-3)"
2406 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><rect
2407 style="fill:#636363;fill-opacity:0.99215686;stroke:none;filter:url(#filter3224-1-7-1-3)"
2408 id="rect4762"
2409 width="12"
2410 height="0.99999475"
2411 x="98"
2412 y="234.99997"
2413 rx="0"
2414 ry="0"
2415 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><rect
2416 style="fill:#636363;fill-opacity:0.99215686;stroke:none;filter:url(#filter3224-1-7-1-3)"
2417 id="rect4764"
2418 width="12"
2419 height="0.99999475"
2420 x="98"
2421 y="223.99997"
2422 rx="0"
2423 ry="0"
2424 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><rect
2425 ry="0"
2426 rx="0"
2427 y="238.99997"
2428 x="98"
2429 height="0.99999475"
2430 width="12"
2431 id="rect4766"
2432 style="fill:#636363;fill-opacity:0.99215686;stroke:none;filter:url(#filter3224-1-7-1-3)"
2433 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2434 transform="matrix(-2,0,0,2,673.04102,-367.74989)"
2435 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3563);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1-3);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
2436 d="m 162,98 c -1.0907,0 -2,0.9093 -2,2 l 0,9 c 0,1.09069 0.9093,2 2,2 l 12,0 c 1.0907,0 2,-0.90931 2,-2 l 0,-0.375 c 0.0328,-0.0893 0.0213,-0.17215 0,-0.25 L 176,100 c 0,-1.0907 -0.9093,-2 -2,-2 z m 0,1 12,0 c 0.554,0 1,0.446 1,1 l 0,4.11795 -5.88205,5.88195 L 162,110 c -0.554,1e-5 -1,-0.446 -1,-1 l 0,-9 c 0,-0.554 0.446,-1 1,-1 z m 0.5,1 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.24237 0.0444,0.53446 0.5625,0.5 l 0.4375,0 0,5 -0.5,0 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.27699 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.22301 0.5,-0.5 0,-0.277 -0.12178,-0.5281 -0.5,-0.5 l -0.5,0 0,-5 0.5,0 c 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.277 -0.223,-0.5 -0.5,-0.5 z m 12.5,5.40625 0,0.84375 -3.71875,3.6875 -0.0312,0.0625 -0.84375,0 z m 0,2.21875 0,0.625 -1.71875,1.75 -0.625,0 z"
2437 id="path4768"
2438 inkscape:connector-curvature="0"
2439 sodipodi:nodetypes="ssssssccssssssccsssssscccssssscccssssccccccccccc" /><path
2440 style="fill:url(#linearGradient3565);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
2441 d="m 64,225 0,2 0,10 0,2 16,0 0,-2 0,-10 0,-2 z m 1,4 4,0 0,4 -4,0 z m 5,0 4,0 0,4 -4,0 z m 5,0 4,0 0,4 -4,0 z m -10,5 4,0 0,4 -4,0 z m 5,0 4,0 0,4 -4,0 z m 5,0 4,0 0,4 -4,0 z"
2442 transform="matrix(2,0,0,2,1.0000003,-367.74991)"
2443 id="path4770"
2444 inkscape:connector-curvature="0"
2445 sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccc" /><path
2446 inkscape:connector-curvature="0"
2447 id="path4788"
2448 d="m 3,210.24999 0,10 3,-2.75 5,4.75 4,0 0,-4 -5,-4.75 3,-3.25 -10,0 z m 18,0 3,3.25 -5,4.75 0,4 4,0 5,-4.75 3,2.75 0,-10 -10,0 z m -10,16 -5,4.75 -3,-2.75 0,10 10,0 -3,-3.25 5,-4.75 0,-4 -4,0 z m 8,0 0,4 5,4.75 -3,3.25 10,0 0,-10 -3,2.75 -5,-4.75 -4,0 z"
2449 style="fill:url(#linearGradient5672);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)" /><path
2450 id="path4795"
2451 d="m 258,0.99999 0,14 11,0 0,-9 0,-1 -4,-4 -1,0 -6,0 z m 1,1 5.34375,0 3.65625,3.65625 0,8.34375 -5,0 -3,0 -1,0 0,-12 z m 2,5 0,1 5,0 0,-1 -5,0 z m 0,2 0,1 5,0 0,-1 -5,0 z m 0,2 0,1 5,0 0,-1 -5,0 z"
2452 style="fill:url(#linearGradient3567);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2453 inkscape:connector-curvature="0"
2454 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2455 style="fill:url(#linearGradient3569);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2456 d="m 2,0.99999 0,14 11,0 0,-9 0,-1 -4,-4 -1,0 z m 1,1 5.5,0 3.5,3.5 0,8.5 -5,0 -3,0 -1,0 z"
2457 id="path4797"
2458 inkscape:connector-curvature="0"
2459 sodipodi:nodetypes="cccccccccccccccc"
2460 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2461 transform="matrix(-2,0,0,2,161,-367.74989)"
2462 style="fill:url(#linearGradient3571);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2463 d="m 39,6 0,1.875 -1.375,1.46875 1.375,1.46875 0,1.90625 -3.625,-3.375 z"
2464 id="path4799"
2465 inkscape:connector-curvature="0" /><path
2466 transform="matrix(-2,0,0,2,161,-367.74989)"
2467 style="fill:url(#linearGradient3573);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2468 d="M 40,6 43.6875,9.375 40,12.65625 40,10.75 41.4375,9.34375 40,7.8125 z"
2469 id="path4801"
2470 inkscape:connector-curvature="0" /><path
2471 transform="matrix(-2,0,0,2,163,-367.74989)"
2472 sodipodi:nodetypes="cccccccccccccccc"
2473 inkscape:connector-curvature="0"
2474 id="path4803"
2475 d="m 35,0.99999 0,14 11,0 0,-9 0,-1 -4,-4 -1,0 z m 1,1 5.5,0 3.5,3.5 0,8.5 -5,0 -3,0 -1,0 z"
2476 style="fill:url(#linearGradient3575);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)" /><path
2477 style="fill:url(#linearGradient3577);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2478 d="m 98,0.99999 0,14 11,0 0,-9 0,-1 -4,-4 -1,0 z m 1,1 5.5,0 3.5,3.5 0,8.5 -5,0 -3,0 -1,0 z"
2479 id="path4805"
2480 inkscape:connector-curvature="0"
2481 sodipodi:nodetypes="cccccccccccccccc"
2482 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2483 transform="matrix(-2,0,0,2,545,-367.74989)"
2484 sodipodi:nodetypes="cccccccccccccccc"
2485 inkscape:connector-curvature="0"
2486 id="path4807"
2487 d="m 131,0.99999 0,14 11,0 0,-9 0,-1 -4,-4 -1,0 z m 1,1 5.5,0 3.5,3.5 0,8.5 -5,0 -3,0 -1,0 z"
2488 style="fill:url(#linearGradient3579);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)" /><path
2489 id="path4809"
2490 d="m 290,0.99999 0,4.75 c 0.19146,-0.12014 0.37062,-0.22084 0.5625,-0.3125 L 291,5.21874 l 0,-3.21875 5.34375,0 3.65625,3.65625 0,8.34375 -5,0 0,0.96875 c 0,0.0104 1.6e-4,0.0209 0,0.0312 l 6,0 0,-9 0,-1 -4,-4 -1,0 -6,0 z m 1,5.34375 c -0.36123,0.17256 -0.68892,0.37641 -0.96875,0.65625 -0.63338,0.63338 -1.03125,1.5335 -1.03125,2.5 0,1.39352 0.8237,2.5644 2,3.125 l 0,2.34375 c 0,0.554 0.44599,1 1,1 l 1,0.0312 c 0.554,0 1,-0.47725 1,-1.03125 l 0,-2.34375 c 1.17629,-0.5606 2,-1.73148 2,-3.125 0,-1.39352 -0.82119,-2.59313 -2,-3.15625 l 0,2.65625 -1.46875,1 -1.53125,-1 0,-2.65625 z"
2491 style="fill:url(#linearGradient3581);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2492 inkscape:connector-curvature="0"
2493 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2494 id="path4817"
2495 d="m 33,31.99999 0,10 3,0 0,-1 -1,0 -1,0 0,-8 4.5,0 2.5,2.5 0,0.5 1,0 0,-1 -3,-3 -1,0 -5,0 z m 4,5 0,10 9,0 0,-6 0,-1 -3,-3 -1,0 -5,0 z m 1,1 4.5,0 2.5,2.5 0,5.5 -5,0 -1,0 -1,0 0,-8 z"
2496 style="fill:url(#linearGradient3583);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2497 inkscape:connector-curvature="0"
2498 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2499 transform="matrix(-2,0,0,2,777,-367.74989)"
2500 inkscape:connector-curvature="0"
2501 style="fill:url(#linearGradient3585);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2502 d="m 182,0.99999 0,14 8.8125,0 -1,-1 -1.3125,0 -1.5,0 -3,0 -1,0 0,-12 5.5,0 3.5,3.5 0,1.21875 c 0.61468,0.7698887 1,1.7287934 1,2.78125 l 0,-3.5 0,-1 -4,-4 -1,0 -6,0 z m 11,8.5 c 0,0.4831876 -0.20077,0.86276 -0.34375,1.28125 L 193,11.12499 l 0,-1.625 z m -4.5,-3.5 c -1.92115,0 -3.5,1.57884 -3.5,3.5 0,1.92115 1.57885,3.5 3.5,3.5 0.49539,0 0.94633,-0.12374 1.375,-0.3125 l 2.34375,2.34375 1.625,-1.625 -2.28125,-2.28125 C 191.829,10.63214 192,10.09539 192,9.49999 c 0,-1.92116 -1.57885,-3.5 -3.5,-3.5 z m -0.0312,1 c 1.38071,0 2.5,1.11929 2.5,2.5 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 z"
2503 id="path4828" /><path
2504 transform="matrix(-2,0,0,2,1313,-367.74989)"
2505 inkscape:connector-curvature="0"
2506 style="fill:url(#linearGradient3587);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2507 d="m 323,0.99999 0,4.75 c 0.19146,-0.1201434 0.37062,-0.2208417 0.5625,-0.3125 L 324,5.21874 l 0,-3.21875 5.34375,0 3.65625,3.65625 0,8.34375 -5,0 0,0.96875 c 0,0.01043 1.6e-4,0.02085 0,0.03125 l 6,0 0,-9 0,-1 -4,-4 -1,0 -6,0 z m 1,5.34375 c -0.36123,0.1725562 -0.68892,0.3764154 -0.96875,0.65625 C 322.39787,7.6333667 322,8.5334899 322,9.49999 c 0,1.393522 0.8237,2.564396 2,3.125 l 0,2.34375 c 0,0.554002 0.44599,1.000002 1,1 l 1,0.03125 c 0.554,-2e-6 1,-0.477248 1,-1.03125 l 0,-2.34375 c 1.17629,-0.560603 2,-1.731478 2,-3.125 0,-1.3935222 -0.82119,-2.5931341 -2,-3.15625 l 0,2.65625 -1.46875,1 -1.53125,-1 0,-2.65625 z"
2508 id="path4830" /><rect
2509 style="fill:#2d2d2d;fill-opacity:1;stroke:none"
2510 id="rect6517"
2511 width="13.999996"
2512 height="2"
2513 x="141"
2514 y="-231.74991" /><rect
2515 y="-227.74991"
2516 x="133"
2517 height="2"
2518 width="22"
2519 id="rect6519"
2520 style="fill:#2d2d2d;fill-opacity:1;stroke:none" /><rect
2521 y="-219.74991"
2522 x="133"
2523 height="2"
2524 width="22"
2525 id="rect6523"
2526 style="fill:#2d2d2d;fill-opacity:1;stroke:none" /><rect
2527 style="fill:#2d2d2d;fill-opacity:1;stroke:none"
2528 id="rect6525"
2529 width="6"
2530 height="2"
2531 x="133"
2532 y="-215.74991" /><path
2533 style="fill:#2d2d2d;fill-opacity:1;stroke:none"
2534 d="m 141,-215.74991 0,2 2,0 0,4 -2,0 0,2 6,0 0,-2 -2,0 0,-4 2,0 0,-2 -2,0 -2,0 -2,0 z"
2535 id="rect6527"
2536 inkscape:connector-curvature="0" /><rect
2537 y="-223.74991"
2538 x="133"
2539 height="2"
2540 width="22"
2541 id="rect6539"
2542 style="fill:#2d2d2d;fill-opacity:1;stroke:none" /><rect
2543 y="-235.74991"
2544 x="141"
2545 height="2"
2546 width="14"
2547 id="rect6547"
2548 style="fill:#2d2d2d;fill-opacity:1;stroke:none" /><rect
2549 style="fill:#2d2d2d;fill-opacity:0.99215686;stroke:none"
2550 id="rect6606"
2551 width="6"
2552 height="6"
2553 x="133"
2554 y="-235.74991" /><path
2555 inkscape:connector-curvature="0"
2556 style="fill:url(#linearGradient3589);fill-opacity:1;fill-rule:evenodd;display:inline;filter:url(#filter3224-1-7-1-3)"
2557 d="m 7.424061,258.01101 c -1.28354,3.14452 -2.79862,6.87174 -4.15625,10.1875 l 2.5,0 0.90625,-2.5 3.34375,0 0.8125,2.5 2.625,0 c -1.33823,-3.35178 -2.81774,-6.95392 -4.09375,-10.1875 l -1.9375,0 z m 0.96875,2.96875 0.90625,2.6875 -1.90625,0 1,-2.6875 z"
2558 id="path4763"
2559 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2560 style="fill:#999999;fill-opacity:1;fill-rule:evenodd;display:inline;filter:url(#filter3224-1-7-1-3)"
2561 d="m 1,270.01101 0,1.98898 15,0 0,-1.98898 z"
2562 id="path3812"
2563 inkscape:connector-curvature="0"
2564 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2565 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3591);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1-3);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
2566 d="M 102.53125,32 C 102.23664,32 102,32.23664 102,32.53125 L 102,33 101.53125,33 C 101.23664,33 101,33.23664 101,33.53125 l 0,0.9375 C 101,34.76335 101.23664,35 101.53125,35 l 1,0 2.9375,0 1,0 C 106.76336,35 107,34.76335 107,34.46875 l 0,-0.9375 C 107,33.23664 106.76336,33 106.46875,33 L 106,33 106,32.53125 C 106,32.23664 105.76336,32 105.46875,32 l -2.9375,0 z M 100,33 c -1.0907,0 -2,0.9093 -2,2 l 0,9 c 0,1.0907 0.9093,2 2,2 l 1,0 0,-1 -1,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-9 c 0,-0.554 0.446,-1 1,-1 l 0,-0.46875 C 100,33.34767 100.0316,33.16464 100.0937,33 L 100,33 z m 7.90625,0 C 107.9684,33.16465 108,33.34767 108,33.53125 L 108,34 c 0.554,0 1,0.446 1,1 l 0,2 1,0 0,-2 c 0,-1.0907 -0.9093,-2 -2,-2 l -0.0937,0 z M 103,38 c -0.554,0 -1,0.446 -1,1 l 0,7 c 0,0.554 0.446,1 1,1 l 7,0 c 0.554,0 1,-0.446 1,-1 l 0,-7 c 0,-0.554 -0.446,-1 -1,-1 l -7,0 z m 0,1 7,0 0,7 -7,0 0,-7 z m 1,1 0,1 2,0 0,4 1,0 0,-4 2,0 0,-1 -5,0 z"
2567 transform="matrix(2,0,0,2,1.0000003,-367.74991)"
2568 id="path3631"
2569 inkscape:connector-curvature="0" /><path
2570 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient3593);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1-3);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
2571 d="M 134.53125,32 C 134.23664,32 134,32.23664 134,32.53125 L 134,33 133.53125,33 C 133.23664,33 133,33.23664 133,33.53125 l 0,0.9375 C 133,34.76335 133.23664,35 133.53125,35 l 1,0 2.9375,0 1,0 C 138.76336,35 139,34.76335 139,34.46875 l 0,-0.9375 C 139,33.23664 138.76336,33 138.46875,33 L 138,33 138,32.53125 C 138,32.23664 137.76336,32 137.46875,32 l -2.9375,0 z M 132,33 c -1.0907,0 -2,0.9093 -2,2 l 0,2 1,0 0,-2 c 0,-0.554 0.446,-1 1,-1 l 0,-0.46875 c 0,-0.18358 0.0316,-0.3666 0.0937,-0.53125 L 132,33 z m 7.90625,0 C 139.96835,33.16464 140,33.34767 140,33.53125 L 140,34 c 0.554,0 1,0.446 1,1 l 0,9 c 0,0.554 -0.446,1 -1,1 l -1,0 0,1 1,0 c 1.0907,0 2,-0.9093 2,-2 l 0,-9 c 0,-1.0907 -0.9093,-2 -2,-2 l -0.0937,0 z M 130,38 c -0.554,0 -1,0.446 -1,1 l 0,7 c 0,0.554 0.446,1 1,1 l 7,0 c 0.554,0 1,-0.446 1,-1 l 0,-7 c 0,-0.554 -0.446,-1 -1,-1 l -7,0 z m 0,1 7,0 0,7 -7,0 0,-7 z m 1,1 0,1 2,0 0,4 1,0 0,-4 2,0 0,-1 -5,0 z"
2572 transform="matrix(2,0,0,2,1.0000003,-367.74991)"
2573 id="path3655"
2574 inkscape:connector-curvature="0" /><rect
2575 style="fill:url(#linearGradient3595);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
2576 id="rect3807"
2577 width="16"
2578 height="7.9999976"
2579 x="256"
2580 y="99.999992"
2581 rx="2"
2582 ry="2"
2583 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><g
2584 style="font-size:15.85716724px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient3713);fill-opacity:0.99215686;stroke:none;filter:url(#filter3224-1-7-1-3);font-family:Sans"
2585 id="text3563"
2586 transform="matrix(2,0,0,2,35,-367.74989)"><path
2587 d="m 91.018035,130.55223 0,2.44671 c -0.634915,-0.28389 -1.011554,-0.48077 -1.615481,-0.62531 -0.603942,-0.14452 -1.174325,-0.21679 -1.71115,-0.2168 -0.712338,10e-6 -1.238845,0.0981 -1.579522,0.29423 -0.340685,0.19616 -0.511026,0.5007 -0.511022,0.91364 -4e-6,0.30972 0.113556,0.55233 0.340681,0.72782 0.232279,0.17035 0.650387,0.31746 1.254327,0.44134 l 1.269812,0.25551 c 1.28529,0.2581 2.198934,0.6504 2.740936,1.1769 0.541983,0.52651 0.81298,1.27498 0.81299,2.2454 -10e-6,1.27498 -0.379405,2.22475 -1.138185,2.84933 -0.753637,0.61942 -1.907307,0.92913 -3.461013,0.92913 -0.732986,0 -1.468547,-0.0697 -2.206686,-0.20905 -0.738146,-0.13937 -1.476288,-0.34584 -2.214429,-0.61942 l 0,-2.5164 c 0.738141,0.39231 1.450474,0.68911 2.137002,0.89042 0.691682,0.19615 1.357558,0.29423 1.997631,0.29423 0.650386,0 1.148502,-0.1084 1.494352,-0.3252 0.345836,-0.2168 0.518757,-0.52651 0.518765,-0.92913 -8e-6,-0.36133 -0.11873,-0.64007 -0.356167,-0.83622 -0.232289,-0.19615 -0.699435,-0.37165 -1.401439,-0.52651 l -1.153671,-0.25551 c -1.156255,-0.24776 -2.002796,-0.64264 -2.539624,-1.18464 -0.531671,-0.54199 -0.797506,-1.27239 -0.797504,-2.1912 -2e-6,-1.15108 0.37165,-2.03634 1.114957,-2.65577 0.743301,-0.61941 1.811801,-0.92912 3.205501,-0.92913 0.6349,1e-5 1.287872,0.049 1.958918,0.14712 0.671031,0.0929 1.122516,0.21753 1.840021,0.40851"
2588 style="font-weight:bold;fill:url(#linearGradient5621);-inkscape-font-specification:Sans Bold"
2589 id="path3568"
2590 inkscape:connector-curvature="0"
2591 sodipodi:nodetypes="ccccccccccccsccccsccccccssccc" /></g><path
2592 id="path3593"
2593 d="m 98.5,136 12,0 c 0.277,0 0.5,0.20442 0.5,0.45833 l 0,0.0833 C 111,136.79558 110.777,137 110.5,137 l -12,0 c -0.277,0 -0.5,-0.20442 -0.5,-0.45833 l 0,-0.0833 C 98,136.20442 98.223,136 98.5,136 z"
2594 style="fill:#565656;fill-opacity:0.98431373;stroke:none;filter:url(#filter3224-1-7-1-3)"
2595 inkscape:connector-curvature="0"
2596 sodipodi:nodetypes="sssssssss"
2597 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2598 style="fill:url(#linearGradient3597);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1)"
2599 d="m 1.9999999,354 0,13 1,0 0,-13 z"
2600 id="path3580"
2601 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
2602 inkscape:export-xdpi="90"
2603 inkscape:export-ydpi="90"
2604 inkscape:connector-curvature="0"
2605 sodipodi:nodetypes="ccccc"
2606 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2607 style="fill:#b50000;fill-opacity:1;fill-rule:evenodd"
2608 d="m 13.99998,339.41683 c -1.5815,0.018 -3.2006,0.68066 -4.9999799,2.75 l 0,16.08328 C 16.2024,350.13281 21.62306,363.88207 29,356.25011 l 0,-16.0833 c -5.5109,5.868 -10.25548,-0.80704 -15.00002,-0.74992 z"
2609 id="path3574"
2610 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
2611 inkscape:export-xdpi="90"
2612 inkscape:export-ydpi="90"
2613 inkscape:connector-curvature="0" /><path
2614 id="path4350"
2615 d="m 13.99998,341.41683 c -1.5815,0.018 -3.2006,0.68066 -4.9999799,2.75 l 0,14.08328 C 16.2024,350.13281 21.62306,363.88207 29,356.25011 l 0,-14.0833 c -5.5109,5.868 -10.25548,-0.80704 -15.00002,-0.74992 z"
2616 style="fill:url(#linearGradient5639);fill-opacity:1;fill-rule:evenodd"
2617 inkscape:connector-curvature="0"
2618 sodipodi:nodetypes="ccccccc"
2619 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
2620 inkscape:export-xdpi="90"
2621 inkscape:export-ydpi="90" /><path
2622 style="fill:#8e0000;fill-opacity:1;fill-rule:evenodd"
2623 d="m 29,340.18759 c -0.6161,0.65602 -1.22016,1.13058 -1.81818,1.5 l 0,14 c -4.75112,2.93492 -8.96772,-2.30074 -13.18182,-2.25 -1.5815,0.018 -3.20062,0.68066 -4.9999999,2.75 l 0,0.5 0,1.5 0,0.0624 c 0.35284,-0.39764 0.68014,-0.7662 1.0227199,-1.0625 0.34258,-0.2963 0.6881,-0.5439 1.02274,-0.75 0.66926,-0.4122 1.33732,-0.63162 1.98864,-0.75 -0.1292,-0.018 -0.26402,-0.0344 -0.39774,-0.0624 0.4581,-0.1264 0.91488,-0.1824 1.36364,-0.1874 3.05338,-0.0368 6.11734,2.72286 9.375,3.125 0.1286,0.016 0.26858,-0.008 0.39772,0 0.172,0.01 0.33786,0.0674 0.51138,0.0624 0.1896,-0.006 0.37654,-0.0376 0.56818,-0.0624 0.26176,-0.034 0.5297,-0.1128 0.79544,-0.1874 0.37798,-0.1058 0.75176,-0.2352 1.13638,-0.4375 0.0602,-0.031 0.11,-0.0914 0.1704,-0.125 0.33964,-0.1886 0.67552,-0.41302 1.02274,-0.6875 0.33604,-0.26566 0.67898,-0.51938 1.02272,-0.875 l 0,-0.0624 0,-2 0,-14 z"
2624 id="path4364"
2625 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
2626 inkscape:export-xdpi="90"
2627 inkscape:export-ydpi="90"
2628 inkscape:connector-curvature="0" /><rect
2629 inkscape:export-ydpi="90"
2630 inkscape:export-xdpi="90"
2631 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
2632 y="336.25012"
2633 x="1"
2634 height="32"
2635 width="32"
2636 id="rect3598"
2637 style="fill:#ffffff;fill-opacity:0;stroke:none" /><path
2638 sodipodi:nodetypes="ccccc"
2639 inkscape:connector-curvature="0"
2640 inkscape:export-ydpi="90"
2641 inkscape:export-xdpi="90"
2642 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
2643 id="path3600"
2644 d="m 1.9999999,354 0,13 1,0 0,-13 z"
2645 style="fill:url(#linearGradient3601);fill-opacity:1;fill-rule:evenodd;filter:url(#filter3224-1-7-1-3)"
2646 transform="matrix(2,0,0,2,1.0000003,-367.74989)" /><path
2647 inkscape:connector-curvature="0"
2648 inkscape:export-ydpi="90"
2649 inkscape:export-xdpi="90"
2650 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
2651 id="path3602"
2652 d="m 13.99998,339.41683 c -1.5815,0.018 -3.2006,0.68066 -4.9999799,2.75 l 0,16.08328 C 16.2024,350.13281 21.62306,363.88207 29,356.25011 l 0,-16.0833 c -5.5109,5.868 -10.25548,-0.80704 -15.00002,-0.74992 z"
2653 style="fill:#b50000;fill-opacity:1;fill-rule:evenodd" /><path
2654 inkscape:export-ydpi="90"
2655 inkscape:export-xdpi="90"
2656 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
2657 sodipodi:nodetypes="ccccccc"
2658 inkscape:connector-curvature="0"
2659 style="fill:url(#linearGradient5632);fill-opacity:1;fill-rule:evenodd"
2660 d="m 13.99998,341.41683 c -1.5815,0.018 -3.2006,0.68066 -4.9999799,2.75 l 0,14.08328 C 16.2024,350.13281 21.62306,363.88207 29,356.25011 l 0,-14.0833 c -5.5109,5.868 -10.25548,-0.80704 -15.00002,-0.74992 z"
2661 id="path3604" /><path
2662 inkscape:connector-curvature="0"
2663 inkscape:export-ydpi="90"
2664 inkscape:export-xdpi="90"
2665 inkscape:export-filename="/home/oleq/ck/ckeditor-dev/plugins/link/images/anchor.png"
2666 id="path3606"
2667 d="m 29,340.18759 c -0.6161,0.65602 -1.22016,1.13058 -1.81818,1.5 l 0,14 c -4.75112,2.93492 -8.96772,-2.30074 -13.18182,-2.25 -1.5815,0.018 -3.20062,0.68066 -4.9999999,2.75 l 0,0.5 0,1.5 0,0.0624 c 0.35284,-0.39764 0.68014,-0.7662 1.0227199,-1.0625 0.34258,-0.2963 0.6881,-0.5439 1.02274,-0.75 0.66926,-0.4122 1.33732,-0.63162 1.98864,-0.75 -0.1292,-0.018 -0.26402,-0.0344 -0.39774,-0.0624 0.4581,-0.1264 0.91488,-0.1824 1.36364,-0.1874 3.05338,-0.0368 6.11734,2.72286 9.375,3.125 0.1286,0.016 0.26858,-0.008 0.39772,0 0.172,0.01 0.33786,0.0674 0.51138,0.0624 0.1896,-0.006 0.37654,-0.0376 0.56818,-0.0624 0.26176,-0.034 0.5297,-0.1128 0.79544,-0.1874 0.37798,-0.1058 0.75176,-0.2352 1.13638,-0.4375 0.0602,-0.031 0.11,-0.0914 0.1704,-0.125 0.33964,-0.1886 0.67552,-0.41302 1.02274,-0.6875 0.33604,-0.26566 0.67898,-0.51938 1.02272,-0.875 l 0,-0.0624 0,-2 0,-14 z"
2668 style="fill:#8e0000;fill-opacity:1;fill-rule:evenodd" /><path
2669 style="fill:url(#linearGradient3605);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3)"
2670 d="m 64,321 0,14 3,0 0,-1 -2,0 0,-12 2,0 0,-1 z m 13,0 0,1 2,0 0,12 -2,0 0,1 3,0 0,-14 z"
2671 transform="matrix(2,0,0,2,1.0000003,-367.74991)"
2672 id="rect3578"
2673 inkscape:connector-curvature="0"
2674 sodipodi:nodetypes="cccccccccccccccccc" /><g
2675 style="font-size:13.71140385px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient3609);fill-opacity:1;stroke:none;filter:url(#filter3224-1-7-1-3);font-family:Sans"
2676 id="text4354"
2677 transform="matrix(2,0,0,2,3.0000003,-367.74989)"><path
2678 d="m 70.006423,329.43503 1.991763,0 c 1.837326,0 3.016509,-1.30258 3.016509,-3.33187 0,-2.00186 -1.138049,-3.09877 -3.22218,-3.09877 l -3.790777,0 0,9.99561 2.004685,0 0,-3.56497 m 0,-1.71392 0,-3.0028 1.347327,0 c 1.096911,0 1.604234,0.4799 1.604234,1.50826 0,1.01464 -0.507323,1.49454 -1.604234,1.49454 l -1.347327,0"
2679 style="font-variant:normal;font-weight:bold;font-stretch:normal;fill:url(#linearGradient3607);font-family:Nimbus Sans L;-inkscape-font-specification:Nimbus Sans L Bold"
2680 id="path4361"
2681 inkscape:connector-curvature="0"
2682 sodipodi:nodetypes="csssccccccsssc" /></g><path
2683 inkscape:connector-curvature="0"
2684 id="rect4493"
2685 d="m 518,-165.75001 c -1.662,0 -3,1.338 -3,3 l 0,5 c 0,1.36076 0.91892,2.47391 2.15625,2.84375 -0.0819,-0.27391 -0.15625,-0.54251 -0.15625,-0.84375 l 0,-5 c 0,-1.662 1.338,-3 3,-3 l 22,0 c 0.30124,0 0.56984,0.0744 0.84375,0.15625 -0.36984,-1.23733 -1.48299,-2.15625 -2.84375,-2.15625 l -22,0 z"
2686 style="fill:#808080;fill-opacity:0.99215686;fill-rule:nonzero;stroke:none" /><path
2687 style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.98999999;color:#000000;fill:url(#linearGradient5855);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3224-1-7-1);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
2688 d="m 67,128 c -1.108,0 -2,0.892 -2,2 l 0,12 c 0,1.108 0.892,2 2,2 l 1,0 1,0 3,0 c 2.181406,0 4,-1.81859 4,-4 l 0,-2 c 0,-2.18141 -1.818594,-4 -4,-4 l -3,0 0,-4 c 0,-1.108 -0.892,-2 -2,-2 z m 18,4 -6,3.875 6,4 0,-2.625 c 4.53598,0.002 6.887,2.90102 8,4.625 -0.112,-4.06048 -3.48268,-7.3724 -8,-7.375 z m -16,4 3,0 c 1.108,0 2,0.892 2,2 l 0,2 c 0,1.108 -0.892,2 -2,2 l -3,0 z m 17,8 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 2,0 c 3,0 3,2 3,3 l 0,1 -4,0 c -2.181406,0 -4,1.81859 -4,4 l 0,2 c 0,2.18141 1.818594,4 4,4 l 4,0 1,0 1,0 c 1.108,0 2,-0.892 2,-2 l 0,-10 c 0,-4 -5,-4 -5,-4 l -1,0 z m -19,4 c 0.112,4.06048 3.48268,7.37242 8,7.375 l 0,2.5 6,-3.875 -6,-4 0,2.625 C 70.46402,152.623 68.113,149.72398 67,148 z m 20,4 4,0 0,1 0,4 0,1 -4,0 c -1.108,0 -2,-0.892 -2,-2 l 0,-2 c 0,-1.108 0.892,-2 2,-2 z"
2689 transform="translate(1,-367.75001)"
2690 id="path4589"
2691 inkscape:connector-curvature="0"
2692 sodipodi:nodetypes="ssssccsssscssccccccccssssccssssscssssccsssccscccccccsccccssss" /><g
2693 id="g5901"
2694 style="fill:url(#linearGradient5906)"><path
2695 d="m 584.67613,-45.75002 c 1.46129,2e-5 2.48419,0.58335 3.06872,1.75001 0.2338,0.48612 0.37993,1.06945 0.43839,1.74999 l 0,7.00001 c -10e-6,1.45834 -0.58452,2.47916 -1.75355,3.0625 -0.48711,0.23333 -1.07162,0.37917 -1.75356,0.4375 l -4.67613,0 0,-14.00001 4.67613,0 m 1.16904,11.08334 0,-8.16667 c -1e-5,-0.71943 -0.38969,-1.10832 -1.16904,-1.16666 l -2.33806,0 0,10.5 2.33806,0 c 0.7209,0 1.11058,-0.38889 1.16904,-1.16667"
2696 style="font-size:22.18914413px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.98999999;fill:url(#linearGradient5906);fill-opacity:1;stroke:none;display:inline;filter:url(#filter3224-1-7-1-3);font-family:Audimat Mono;-inkscape-font-specification:Audimat Mono"
2697 id="path5866"
2698 inkscape:connector-curvature="0" /><path
2699 d="m 597.01421,-44.00001 -2.33807,0 0,10.5 2.33807,0 0,1.75 -7.0142,0 0,-1.75 2.33806,0 0,-10.5 -2.33806,0 0,-1.75001 7.0142,0 0,1.75001"
2700 style="font-size:22.18914413px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.98999999;fill:url(#linearGradient5906);fill-opacity:1;stroke:none;display:inline;filter:url(#filter3224-1-7-1-3);font-family:Audimat Mono;-inkscape-font-specification:Audimat Mono"
2701 id="path5868"
2702 inkscape:connector-curvature="0" /><path
2703 d="m 607.18325,-44.00001 -2.92259,12.25 -2.33807,0 -2.92258,-12.25 0,-1.75001 2.33807,0 0,1.75001 1.75354,10.5 1.75356,-10.5 0,-1.75001 2.33807,0 0,1.75001"
2704 style="font-size:22.18914413px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;opacity:0.98999999;fill:url(#linearGradient5906);fill-opacity:1;stroke:none;display:inline;filter:url(#filter3224-1-7-1-3);font-family:Audimat Mono;-inkscape-font-specification:Audimat Mono"
2705 id="path5870"
2706 inkscape:connector-curvature="0" /></g><path
2707 style="opacity:0.98999999;fill:url(#linearGradient6101);fill-opacity:1;stroke:none;display:inline;filter:url(#filter3224-1-7-1-3-1)"
2708 d="M 166.53125,32 C 166.23664,32 166,32.23664 166,32.53125 L 166,33 165.53125,33 C 165.23664,33 165,33.23664 165,33.53125 l 0,0.9375 C 165,34.76335 165.23664,35 165.53125,35 l 1,0 2.9375,0 1,0 C 170.76336,35 171,34.76335 171,34.46875 l 0,-0.9375 C 171,33.23664 170.76336,33 170.46875,33 L 170,33 170,32.53125 C 170,32.23664 169.76336,32 169.46875,32 z M 164,33 c -1.0907,0 -2,0.9093 -2,2 l 0,9 c 0,1.0907 0.9093,2 2,2 l 1,0 0,-1 -1,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-9 c 0,-0.554 0.446,-1 1,-1 l 0,-0.46875 c 0,-0.18358 0.0317,-0.36661 0.0937,-0.53125 z m 7.90625,0 C 171.9684,33.16465 172,33.34767 172,33.53125 L 172,34 c 0.554,0 1,0.446 1,1 l 0,2 1,0 0,-2 c 0,-1.0907 -0.9093,-2 -2,-2 l -0.0937,0 z M 167,38 c -0.554,0 -1,0.446 -1,1 l 0,7 c 0,0.554 0.446,1 1,1 l 7,0 c 0.554,0 1,-0.446 1,-1 l 0,-7 c 0,-0.554 -0.446,-1 -1,-1 z m 0,1 7,0 0,7 -7,0 z m 1,1 0,1 0,4 1,0 1,-1 0.5,-0.50005 L 171,44 l 1,1 1,0 0,-4 0,-1 -1,0 0,3 -1,-1 -1,0 -1,1 0,-3 z"
2709 transform="matrix(-2,0,0,2,737,-367.75001)"
2710 id="path4585-1"
2711 inkscape:connector-curvature="0"
2712 sodipodi:nodetypes="sscssssccsssscsssssssccssscscscscsccssccsssssssssccccccccccccccccccccccc" /><path
2713 style="fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline;filter:url(#filter3224-1-7-1-5-0-8)"
2714 d="m 223.46875,276.31249 c -5.17784,1.61214 -11.48202,1.46403 -12.53125,1.375 l 0.5,1.9375 c 1.53833,0.005 2.5625,0.0382 4.5625,-0.0781 l 0,4.70312 -6,0 0,2 6,0 0,6 -4,0 -2,0 0,10 2,0 0,-2 10,0 0,1 2,0 0,-1 0,-8 -2,0 -4,0 0,-6 6,0 0,-2 -6,0 0,-4.84375 c 2.35241,-0.16735 3.875,-0.53375 5.875,-1.25 z M 196,276.24999 l 0,2 12,0 0,-2 z m -2,4 0,2 16,0 0,-2 z m 2,4 0,2 12,0 0,-2 z m 0,4 0,2 12,0 0,-2 z m 0,4 0,10 2,0 0,-2 8,0 0,1 2,0 0,-1 0,-8 -2,0 -8,0 z m 2,2 8,0 0,4 -8,0 z m 14,0 10,0 0,4 -10,0 z"
2715 id="rect4258"
2716 inkscape:connector-curvature="0"
2717 sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" /><path
2718 style="fill:#515151;fill-opacity:1;stroke:none;display:inline;filter:url(#filter3224-1-7-1-3-24)"
2719 d="m 170,230.24999 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m -14,2 0,1 1,0 0,-1 -1,0 z m 2,0 0,5 0,1 0,3 5,0 0,-1 -4,0 0,-1 4,0 1,0 0,-1 -5,0 0,-1 6,0 4,0 0,-1 0,-4 -4,0 -7,0 z m 12,0 0,1 1,0 0,-1 -1,0 z m -11,1 9,0 0,1 -9,0 0,-1 z m -3,1 0,1 1,0 0,-1 -1,0 z m 14,0 0,1 1,0 0,-1 -1,0 z m -11,1 8.9687,0 0,1 -8.9687,0 0,-1 z m -3,1 0,1 1,0 0,-1 -1,0 z m 14,0 0,1 1,0 0,-1 -1,0 z m -3,1.75 -3.6875,3.375 3.6875,3.28125 0,-1.90625 -1.4375,-1.40625 1.4375,-1.53125 0,-1.8125 z m 1,0 0,1.875 1.375,1.46875 -1.375,1.46875 0,1.90625 3.625,-3.375 -3.625,-3.34375 z m -12,0.25 0,1 1,0 0,-1 -1,0 z m 0,2 0,1 1,0 0,-1 -1,0 z m 0,2 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z m 2,0 0,1 1,0 0,-1 -1,0 z"
2720 id="rect5051"
2721 inkscape:connector-curvature="0"
2722 transform="matrix(2,0,0,2,-83,-186.24999)" /></g></svg> \ No newline at end of file
diff --git a/sources/skins/moono/dev/locations.json b/sources/skins/moono/dev/locations.json
new file mode 100644
index 0000000..e2fc62e
--- /dev/null
+++ b/sources/skins/moono/dev/locations.json
@@ -0,0 +1,144 @@
1{
2 "0": [
3 [
4 "plugins/sourcearea/icons/source.png",
5 "plugins/sourcedialog/icons/sourcedialog.png"
6 ],
7 [
8 "plugins/sourcearea/icons/source-rtl.png",
9 "plugins/sourcedialog/icons/sourcedialog-rtl.png"
10 ],
11 "plugins/save/icons/save.png",
12 "plugins/newpage/icons/newpage.png",
13 "plugins/newpage/icons/newpage-rtl.png",
14 "plugins/preview/icons/preview.png",
15 "plugins/preview/icons/preview-rtl.png",
16 "plugins/print/icons/print.png",
17 [
18 "plugins/templates/icons/templates.png",
19 "plugins/templates/icons/templates-rtl.png"
20 ],
21 "plugins/docprops/icons/docprops.png",
22 "plugins/docprops/icons/docprops-rtl.png"
23 ],
24 "1": [
25 [
26 "plugins/clipboard/icons/cut-rtl.png",
27 "plugins/clipboard/icons/cut.png"
28 ],
29 [
30 "plugins/clipboard/icons/copy.png",
31 "plugins/clipboard/icons/copy-rtl.png"
32 ],
33 [
34 "plugins/clipboard/icons/paste.png",
35 "plugins/clipboard/icons/paste-rtl.png"
36 ],
37 "plugins/pastetext/icons/pastetext.png",
38 "plugins/pastetext/icons/pastetext-rtl.png",
39 "plugins/pastefromword/icons/pastefromword.png",
40 "plugins/pastefromword/icons/pastefromword-rtl.png",
41 "plugins/undo/icons/undo.png",
42 "plugins/undo/icons/undo-rtl.png",
43 "plugins/undo/icons/redo.png",
44 "plugins/undo/icons/redo-rtl.png"
45 ],
46 "2": [
47 [
48 "plugins/find/icons/find-rtl.png",
49 "plugins/find/icons/find.png"
50 ],
51 "plugins/find/icons/replace.png",
52 "plugins/selectall/icons/selectall.png",
53 [
54 "plugins/wsc/icons/spellchecker.png",
55 "plugins/scayt/icons/scayt.png"
56 ]
57 ],
58 "3": [
59 "plugins/forms/icons/form.png",
60 "plugins/forms/icons/checkbox.png",
61 "plugins/forms/icons/radio.png",
62 [
63 "plugins/forms/icons/textfield-rtl.png",
64 "plugins/forms/icons/textfield.png"
65 ],
66 "plugins/forms/icons/textarea.png",
67 "plugins/forms/icons/textarea-rtl.png",
68 "plugins/forms/icons/select.png",
69 "plugins/forms/icons/select-rtl.png",
70 "plugins/forms/icons/button.png",
71 "plugins/forms/icons/imagebutton.png",
72 "plugins/forms/icons/hiddenfield.png"
73 ],
74 "4": [
75 "plugins/basicstyles/icons/bold.png",
76 "plugins/basicstyles/icons/italic.png",
77 "plugins/basicstyles/icons/underline.png",
78 "plugins/basicstyles/icons/strike.png",
79 "plugins/basicstyles/icons/superscript.png",
80 "plugins/basicstyles/icons/subscript.png",
81 "plugins/removeformat/icons/removeformat.png"
82 ],
83 "5": [
84 "plugins/list/icons/numberedlist.png",
85 "plugins/list/icons/numberedlist-rtl.png",
86 "plugins/list/icons/bulletedlist.png",
87 "plugins/list/icons/bulletedlist-rtl.png",
88 "plugins/indent/icons/outdent.png",
89 "plugins/indent/icons/indent.png",
90 "plugins/indent/icons/indent-rtl.png",
91 "plugins/indent/icons/outdent-rtl.png",
92 "plugins/blockquote/icons/blockquote.png",
93 "plugins/div/icons/creatediv.png",
94 "plugins/justify/icons/justifyleft.png",
95 "plugins/justify/icons/justifycenter.png",
96 "plugins/justify/icons/justifyright.png",
97 "plugins/justify/icons/justifyblock.png",
98 "plugins/bidi/icons/bidiltr.png",
99 "plugins/bidi/icons/bidirtl.png"
100 ],
101 "6": [
102 "plugins/link/icons/link.png",
103 "plugins/link/icons/unlink.png",
104 "plugins/link/icons/anchor.png",
105 "plugins/link/icons/anchor-rtl.png"
106 ],
107 "7": [
108 [
109 "plugins/image/icons/image.png",
110 "plugins/image2/icons/image.png"
111 ],
112 "plugins/flash/icons/flash.png",
113 "plugins/table/icons/table.png",
114 "plugins/horizontalrule/icons/horizontalrule.png",
115 "plugins/smiley/icons/smiley.png",
116 "plugins/specialchar/icons/specialchar.png",
117 "plugins/pagebreak/icons/pagebreak.png",
118 "plugins/pagebreak/icons/pagebreak-rtl.png",
119 "plugins/iframe/icons/iframe.png"
120 ],
121 "8": [
122 "plugins/colorbutton/icons/textcolor.png",
123 "plugins/colorbutton/icons/bgcolor.png"
124 ],
125 "9": [
126 "plugins/maximize/icons/maximize.png",
127 "plugins/showblocks/icons/showblocks.png",
128 "plugins/showblocks/icons/showblocks-rtl.png"
129 ],
130 "10": [
131 "plugins/about/icons/about.png",
132 "plugins/uicolor/icons/uicolor.png",
133 "plugins/placeholder/icons/placeholder.png",
134 "plugins/language/icons/language.png",
135 "plugins/codesnippet/icons/codesnippet.png"
136 ],
137 "11": [
138 "plugins/link/images/anchor.png",
139 "skins/moono/images/close.png",
140 "skins/moono/images/lock.png",
141 "skins/moono/images/lock-open.png",
142 "skins/moono/images/refresh.png"
143 ]
144} \ No newline at end of file
diff --git a/sources/skins/moono/dialog.css b/sources/skins/moono/dialog.css
new file mode 100644
index 0000000..1f3704b
--- /dev/null
+++ b/sources/skins/moono/dialog.css
@@ -0,0 +1,1060 @@
1/*
2Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6/*
7dialog.css
8============
9
10This file styles dialogs and all widgets available inside of it (tabs, buttons,
11fields, etc.).
12
13Dialogs are a complex system because they're very flexible. The CKEditor API
14makes it easy to create and customize dialogs by code, by making use of several
15different widgets inside its contents.
16
17All dialogs share a main dialog strucuture, which can be visually represented
18as follows:
19
20+-- .cke_dialog -------------------------------------------------+
21| +-- .cke_dialog_body ----------------------------------------+ |
22| | +-- .cke_dialog_title --+ +-- .cke_dialog_close_button --+ | |
23| | | | | | | |
24| | +-----------------------+ +------------------------------+ | |
25| | +-- .cke_dialog_tabs ------------------------------------+ | |
26| | | | | |
27| | +--------------------------------------------------------+ | |
28| | +-- .cke_dialog_contents --------------------------------+ | |
29| | | +-- .cke_dialog_contents_body -----------------------+ | | |
30| | | | | | | |
31| | | +----------------------------------------------------+ | | |
32| | | +-- .cke_dialog_footer ------------------------------+ | | |
33| | | | | | | |
34| | | +----------------------------------------------------+ | | |
35| | +--------------------------------------------------------+ | |
36| +------------------------------------------------------------+ |
37+----------------------------------------------------------------+
38
39Comments in this file will give more details about each of the above blocks.
40*/
41
42/* The outer container of the dialog. */
43.cke_dialog
44{
45 /* Mandatory: Because the dialog.css file is loaded on demand, we avoid
46 showing an unstyled dialog by hidding it. Here, we restore its visibility. */
47 visibility: visible;
48}
49
50/* The inner boundary container. */
51.cke_dialog_body
52{
53 z-index: 1;
54 background: #eaeaea;
55 border: 1px solid #b2b2b2;
56 border-bottom-color: #999;
57 border-radius: 3px;
58 box-shadow: 0 0 3px rgba(0, 0, 0, .15);
59}
60
61/* Due to our reset we have to recover the styles of some elements. */
62.cke_dialog strong
63{
64 font-weight: bold;
65}
66
67/* The dialog title. */
68.cke_dialog_title
69{
70 font-weight: bold;
71 font-size: 13px;
72 cursor: move;
73 position: relative;
74
75 color: #474747;
76 text-shadow: 0 1px 0 rgba(255,255,255,.75);
77
78 border-bottom: 1px solid #999;
79 padding: 6px 10px;
80
81 border-radius: 2px 2px 0 0;
82 box-shadow: 0 1px 0 #fff inset;
83
84 background: #cfd1cf;
85 background-image: linear-gradient(to bottom, #f5f5f5, #cfd1cf);
86 filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#f5f5f5', endColorstr='#cfd1cf');
87}
88
89.cke_dialog_spinner
90{
91 border-radius: 50%;
92
93 width: 12px;
94 height: 12px;
95 overflow: hidden;
96
97 text-indent: -9999em;
98
99 border-top: 2px solid rgba(102, 102, 102, 0.2);
100 border-right: 2px solid rgba(102, 102, 102, 0.2);
101 border-bottom: 2px solid rgba(102, 102, 102, 0.2);
102 border-left: 2px solid rgba(102, 102, 102, 1);
103
104 -webkit-animation: dialog_spinner 1s infinite linear;
105 animation: dialog_spinner 1s infinite linear;
106}
107
108/* A GIF fallback for IE8 and IE9 which does not support CSS animations. */
109.cke_browser_ie8 .cke_dialog_spinner,
110.cke_browser_ie9 .cke_dialog_spinner
111{
112 background: url(images/spinner.gif) center top no-repeat;
113 width: 16px;
114 height: 16px;
115 border: 0;
116}
117
118@-webkit-keyframes dialog_spinner
119{
120 0% {
121 -webkit-transform: rotate(0deg);
122 transform: rotate(0deg);
123 }
124 100% {
125 -webkit-transform: rotate(360deg);
126 transform: rotate(360deg);
127 }
128}
129
130@keyframes dialog_spinner
131{
132 0% {
133 -webkit-transform: rotate(0deg);
134 transform: rotate(0deg);
135 }
136 100% {
137 -webkit-transform: rotate(360deg);
138 transform: rotate(360deg);
139 }
140}
141
142/* The outer part of the dialog contants, which contains the contents body
143 and the footer. */
144.cke_dialog_contents
145{
146 background-color: #fff;
147 overflow: auto;
148 padding: 15px 10px 5px 10px;
149 margin-top: 30px;
150 border-top: 1px solid #bfbfbf;
151 border-radius: 0 0 3px 3px;
152}
153
154/* The contents body part, which will hold all elements available in the dialog. */
155.cke_dialog_contents_body
156{
157 overflow: auto;
158 padding: 17px 10px 5px 10px;
159 margin-top: 22px;
160}
161
162/* The dialog footer, which usually contains the "Ok" and "Cancel" buttons as
163 well as a resize handler. */
164.cke_dialog_footer
165{
166 text-align: right;
167 position: relative;
168 border: none;
169 outline: 1px solid #bfbfbf;
170 box-shadow: 0 1px 0 #fff inset;
171 border-radius: 0 0 2px 2px;
172 background: #cfd1cf;
173 background-image: linear-gradient(to bottom, #ebebeb, #cfd1cf);
174 filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#ebebeb', endColorstr='#cfd1cf');
175}
176
177.cke_rtl .cke_dialog_footer
178{
179 text-align: left;
180}
181
182.cke_hc .cke_dialog_footer
183{
184 outline: none;
185 border-top: 1px solid #fff;
186}
187
188.cke_dialog .cke_resizer
189{
190 margin-top: 22px;
191}
192
193.cke_dialog .cke_resizer_rtl
194{
195 margin-left: 5px;
196}
197
198.cke_dialog .cke_resizer_ltr
199{
200 margin-right: 5px;
201}
202
203/*
204Dialog tabs
205-------------
206
207Tabs are presented on some of the dialogs to make it possible to have its
208contents split on different groups, visible one after the other.
209
210The main element that holds the tabs can be made hidden, in case of no tabs
211available.
212
213The following is the visual representation of the tabs block:
214
215+-- .cke_dialog_tabs ------------------------------------+
216| +-- .cke_dialog_tab --+ +-- .cke_dialog_tab --+ ... |
217| | | | | |
218| +---------------------+ +---------------------+ |
219+--------------------------------------------------------+
220
221The .cke_dialog_tab_selected class is appended to the active tab.
222*/
223
224/* The main tabs container. */
225.cke_dialog_tabs
226{
227 height: 24px;
228 display: inline-block;
229 margin: 5px 0 0;
230 position: absolute;
231 z-index: 2;
232 left: 10px;
233}
234
235.cke_rtl .cke_dialog_tabs
236{
237 right: 10px;
238}
239
240/* A single tab (an <a> element). */
241a.cke_dialog_tab
242{
243
244 height: 16px;
245 padding: 4px 8px;
246 margin-right: 3px;
247 display: inline-block;
248 cursor: pointer;
249 line-height: 16px;
250 outline: none;
251 color: #595959;
252 border: 1px solid #bfbfbf;
253
254 border-radius: 3px 3px 0 0;
255
256 background: #d4d4d4;
257 background-image: linear-gradient(to bottom, #fafafa, #ededed);
258 filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#fafafa', endColorstr='#ededed');
259}
260
261.cke_rtl a.cke_dialog_tab
262{
263 margin-right: 0;
264 margin-left: 3px;
265}
266
267/* A hover state of a regular inactive tab. */
268a.cke_dialog_tab:hover,
269a.cke_dialog_tab:focus
270{
271 background: #ebebeb;
272 background: linear-gradient(to bottom, #ebebeb 0%,#dfdfdf 100%);
273 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebebeb', endColorstr='#dfdfdf',GradientType=0 );
274}
275
276a.cke_dialog_tab_selected
277{
278 background: #fff;
279 color: #383838;
280 border-bottom-color: #fff;
281 cursor: default;
282 filter: none;
283}
284
285/* A hover state for selected tab. */
286a.cke_dialog_tab_selected:hover,
287a.cke_dialog_tab_selected:focus,
288{
289 background: #ededed;
290 background: linear-gradient(to bottom, #ededed 0%,#ffffff 100%);
291 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#ffffff',GradientType=0 );
292}
293
294.cke_hc a.cke_dialog_tab:hover,
295.cke_hc a.cke_dialog_tab:focus,
296.cke_hc a.cke_dialog_tab_selected
297{
298 border: 3px solid;
299 padding: 2px 6px;
300}
301
302a.cke_dialog_tab_disabled
303{
304 color: #bababa;
305 cursor: default;
306}
307
308/* The .cke_single_page class is appended to the dialog outer element in case
309 of dialogs that has no tabs. */
310.cke_single_page .cke_dialog_tabs
311{
312 display: none;
313}
314
315.cke_single_page .cke_dialog_contents
316{
317 padding-top: 5px;
318 margin-top: 0;
319 border-top: none;
320}
321
322/* The close button at the top of the dialog. */
323
324a.cke_dialog_close_button
325{
326 background-image: url(images/close.png);
327 background-repeat: no-repeat;
328 background-position: 50%;
329 position: absolute;
330 cursor: pointer;
331 text-align: center;
332 height: 20px;
333 width: 20px;
334 top: 4px;
335 z-index: 5;
336 opacity: 0.8;
337 filter: alpha(opacity = 80);
338}
339
340.cke_dialog_close_button:hover
341{
342 opacity: 1;
343 filter: alpha(opacity = 100);
344}
345
346.cke_hidpi .cke_dialog_close_button
347{
348 background-image: url(images/hidpi/close.png);
349 background-size: 16px;
350}
351
352.cke_dialog_close_button span
353{
354 display: none;
355}
356
357.cke_hc .cke_dialog_close_button span
358{
359 display: inline;
360 cursor: pointer;
361 font-weight: bold;
362 position: relative;
363 top: 3px;
364}
365
366.cke_ltr .cke_dialog_close_button
367{
368 right: 5px;
369}
370
371.cke_rtl .cke_dialog_close_button
372{
373 left: 6px;
374}
375
376.cke_dialog_close_button
377{
378 top: 4px;
379}
380
381/*
382Dialog UI Elements
383--------------------
384
385The remaining styles define the UI elements that can be used inside dialog
386contents.
387
388Most of the UI elements on dialogs contain a textual label. All of them share
389the same labelling structure, having the label text inside an element with
390.cke_dialog_ui_labeled_label and the element specific part inside the
391.cke_dialog_ui_labeled_content class.
392*/
393
394/* If an element is supposed to be disabled, the .cke_disabled class is
395 appended to it. */
396div.cke_disabled .cke_dialog_ui_labeled_content div *
397{
398 background-color: #ddd;
399 cursor: default;
400}
401
402/*
403Horizontal-Box and Vertical-Box
404---------------------------------
405
406There are basic layou element used by the editor to properly align elements in
407the dialog. They're basically tables that have each cell filled by UI elements.
408
409The following is the visual representation of a H-Box:
410
411+-- .cke_dialog_ui_hbox --------------------------------------------------------------------------------+
412| +-- .cke_dialog_ui_hbox_first --+ +-- .cke_dialog_ui_hbox_child --+ +-- .cke_dialog_ui_hbox_last --+ |
413| + + + + + + |
414| +-------------------------------+ +-------------------------------+ +------------------------------+ |
415+-------------------------------------------------------------------------------------------------------+
416
417It is possible to have nested V/H-Boxes.
418*/
419
420.cke_dialog_ui_vbox table,
421.cke_dialog_ui_hbox table
422{
423 margin: auto;
424}
425
426.cke_dialog_ui_vbox_child
427{
428 padding: 5px 0px;
429}
430
431.cke_dialog_ui_hbox
432{
433 width: 100%;
434}
435
436.cke_dialog_ui_hbox_first,
437.cke_dialog_ui_hbox_child,
438.cke_dialog_ui_hbox_last
439{
440 vertical-align: top;
441}
442
443.cke_ltr .cke_dialog_ui_hbox_first,
444.cke_ltr .cke_dialog_ui_hbox_child
445{
446 padding-right: 10px;
447}
448
449.cke_rtl .cke_dialog_ui_hbox_first,
450.cke_rtl .cke_dialog_ui_hbox_child
451{
452 padding-left: 10px;
453}
454
455.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,
456.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child
457{
458 padding-right: 5px;
459}
460
461.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,
462.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child
463{
464 padding-left: 5px;
465 padding-right: 0;
466}
467
468/* Applies to all labeled dialog fields */
469.cke_hc div.cke_dialog_ui_input_text,
470.cke_hc div.cke_dialog_ui_input_password,
471.cke_hc div.cke_dialog_ui_input_textarea,
472.cke_hc div.cke_dialog_ui_input_select,
473.cke_hc div.cke_dialog_ui_input_file
474{
475 border: 1px solid;
476}
477
478/*
479Text Input
480------------
481
482The basic text field to input text.
483
484+-- .cke_dialog_ui_text --------------------------+
485| +-- .cke_dialog_ui_labeled_label ------------+ |
486| | | |
487| +--------------------------------------------+ |
488| +-- .cke_dialog_ui_labeled_content ----------+ |
489| | +-- div.cke_dialog_ui_input_text --------+ | |
490| | | +-- input.cke_dialog_ui_input_text --+ | | |
491| | | | | | | |
492| | | +------------------------------------+ | | |
493| | +----------------------------------------+ | |
494| +--------------------------------------------+ |
495+-------------------------------------------------+
496*/
497
498/*
499Textarea
500----------
501
502The textarea field to input larger text.
503
504+-- .cke_dialog_ui_textarea --------------------------+
505| +-- .cke_dialog_ui_labeled_label ----------------+ |
506| | | |
507| +------------------------------------------------+ |
508| +-- .cke_dialog_ui_labeled_content --------------+ |
509| | +-- div.cke_dialog_ui_input_textarea --------+ | |
510| | | +-- input.cke_dialog_ui_input_textarea --+ | | |
511| | | | | | | |
512| | | +----------------------------------------+ | | |
513| | +--------------------------------------------+ | |
514| +------------------------------------------------+ |
515+-----------------------------------------------------+
516*/
517
518textarea.cke_dialog_ui_input_textarea
519{
520 overflow: auto;
521 resize: none;
522}
523
524input.cke_dialog_ui_input_text,
525input.cke_dialog_ui_input_password,
526textarea.cke_dialog_ui_input_textarea
527{
528 background-color: #fff;
529 border: 1px solid #c9cccf;
530 border-top-color: #aeb3b9;
531 padding: 4px 6px;
532 outline: none;
533 width: 100%;
534 *width: 95%;
535
536 box-sizing: border-box;
537
538 border-radius: 3px;
539
540 box-shadow: 0 1px 2px rgba(0,0,0,.15) inset;
541}
542
543input.cke_dialog_ui_input_text:hover,
544input.cke_dialog_ui_input_password:hover,
545textarea.cke_dialog_ui_input_textarea:hover
546{
547 border: 1px solid #aeb3b9;
548 border-top-color: #a0a6ad;
549}
550
551input.cke_dialog_ui_input_text:focus,
552input.cke_dialog_ui_input_password:focus,
553textarea.cke_dialog_ui_input_textarea:focus,
554select.cke_dialog_ui_input_select:focus
555{
556 outline: none;
557 border: 1px solid #139ff7;
558 border-top-color: #1392e9;
559}
560
561/*
562Button
563--------
564
565The buttons used in the dialog footer or inside the contents.
566
567+-- a.cke_dialog_ui_button -----------+
568| +-- span.cke_dialog_ui_button --+ |
569| | | |
570| +-------------------------------+ |
571+-------------------------------------+
572*/
573
574/* The outer part of the button. */
575a.cke_dialog_ui_button
576{
577 display: inline-block;
578 *display: inline;
579 *zoom: 1;
580
581 padding: 4px 0;
582 margin: 0;
583
584 text-align: center;
585 color: #333;
586 vertical-align: middle;
587 cursor: pointer;
588
589 border: 1px solid #b6b6b6;
590 border-bottom-color: #999;
591 border-radius: 3px;
592 box-shadow: 0 1px 0 rgba(255,255,255,.5), 0 0 2px rgba(255,255,255,.15) inset, 0 1px 0 rgba(255,255,255,.15) inset;
593
594 background: #e4e4e4;
595 background-image: linear-gradient(to bottom, #ffffff, #e4e4e4);
596 filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#ffffff', endColorstr='#e4e4e4');
597
598}
599
600span.cke_dialog_ui_button
601{
602 padding: 0 10px;
603}
604
605a.cke_dialog_ui_button:hover
606{
607 border-color: #9e9e9e;
608
609 background: #ccc;
610 background-image: linear-gradient(to bottom, #f2f2f2, #ccc);
611 filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#f2f2f2', endColorstr='#cccccc');
612}
613
614/* :focus/:active styles for dialog buttons: regular and footer. */
615a.cke_dialog_ui_button:focus,
616a.cke_dialog_ui_button:active
617{
618 border-color: #969696;
619 outline: none;
620 box-shadow: 0 0 6px rgba(0,0,0,.4) inset;
621}
622
623.cke_hc a.cke_dialog_ui_button:hover,
624.cke_hc a.cke_dialog_ui_button:focus,
625.cke_hc a.cke_dialog_ui_button:active
626{
627 border: 3px solid;
628 padding-top: 1px;
629 padding-bottom: 1px;
630}
631
632.cke_hc a.cke_dialog_ui_button:hover span,
633.cke_hc a.cke_dialog_ui_button:focus span,
634.cke_hc a.cke_dialog_ui_button:active span
635{
636 padding-left: 10px;
637 padding-right: 10px;
638}
639
640/*
641a.cke_dialog_ui_button[style*="width"]
642{
643 display: block !important;
644 width: auto !important;
645}
646*/
647/* The inner part of the button (both in dialog tabs and dialog footer). */
648.cke_dialog_footer_buttons a.cke_dialog_ui_button span
649{
650 color: inherit;
651 font-size: 12px;
652 font-weight: bold;
653 line-height: 18px;
654 padding: 0 12px;
655}
656
657/* Special class appended to the Ok button. */
658a.cke_dialog_ui_button_ok
659{
660 color: #fff;
661 text-shadow: 0 -1px 0 #55830c;
662 border-color: #62a60a #62a60a #4d9200;
663
664 background: #69b10b;
665 background-image: linear-gradient(to bottom, #9ad717, #69b10b);
666 filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#9ad717', endColorstr='#69b10b');
667}
668
669a.cke_dialog_ui_button_ok:hover
670{
671 border-color: #5b9909 #5b9909 #478500;
672
673 background: #88be14;
674 background: linear-gradient(to bottom, #88be14 0%,#5d9c0a 100%);
675 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#88be14', endColorstr='#5d9c0a',GradientType=0 );
676}
677
678a.cke_dialog_ui_button_ok.cke_disabled {
679 border-color: #7D9F51;
680
681 background: #8DAD62;
682 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#B3D271), to(#8DAD62));
683 background-image: -webkit-linear-gradient(top, #B3D271, #8DAD62);
684 background-image: -o-linear-gradient(top, #B3D271, #8DAD62);
685 background-image: linear-gradient(to bottom, #B3D271, #8DAD62);
686 background-image: -moz-linear-gradient(top, #B3D271, #8DAD62);
687 filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#B3D271', endColorstr='#8DAD62');
688}
689
690a.cke_dialog_ui_button_ok.cke_disabled span {
691 color: #E0E8D1;
692}
693
694/* Default text shadow used for inner parts of all dialog buttons (both in dialog tabs and dialog footer). */
695a.cke_dialog_ui_button span
696{
697 text-shadow: 0 1px 0 #fff;
698}
699
700/* Text shadow used for inner part of OK dialog button in footer. */
701a.cke_dialog_ui_button_ok span
702{
703 text-shadow: 0 -1px 0 #55830c;
704}
705
706span.cke_dialog_ui_button
707{
708 cursor: pointer;
709}
710
711/* :focus/:active styles for dialog footer buttons (ok & cancel) */
712a.cke_dialog_ui_button_ok:focus,
713a.cke_dialog_ui_button_ok:active,
714a.cke_dialog_ui_button_cancel:focus,
715a.cke_dialog_ui_button_cancel:active
716{
717 border-width: 2px;
718 padding: 3px 0;
719}
720
721a.cke_dialog_ui_button_ok:focus,
722a.cke_dialog_ui_button_ok:active
723{
724 border-color: #568C0A;
725}
726
727a.cke_dialog_ui_button_ok.cke_disabled:focus,
728a.cke_dialog_ui_button_ok.cke_disabled:active
729{
730 border-color: #6F8C49;
731}
732
733/* :focus/:active styles for dialog footer buttons (ok & cancel) spans */
734a.cke_dialog_ui_button_ok:focus span,
735a.cke_dialog_ui_button_ok:active span,
736a.cke_dialog_ui_button_cancel:focus span,
737a.cke_dialog_ui_button_cancel:active span
738{
739 padding: 0 11px; /* Thick button border must be compensated. */
740}
741
742/* A special container that holds the footer buttons. */
743.cke_dialog_footer_buttons
744{
745 display: inline-table;
746 margin: 5px;
747 width: auto;
748 position: relative;
749 vertical-align: middle;
750}
751
752/*
753Styles for other dialog element types.
754*/
755
756div.cke_dialog_ui_input_select
757{
758 display: table;
759}
760
761select.cke_dialog_ui_input_select
762{
763 height: 25px;
764 line-height: 25px;
765
766 background-color: #fff;
767 border: 1px solid #c9cccf;
768 border-top-color: #aeb3b9;
769 padding: 3px 3px 3px 6px;
770 outline: none;
771 border-radius: 3px;
772 box-shadow: 0 1px 2px rgba(0,0,0,.15) inset;
773}
774
775.cke_dialog_ui_input_file
776{
777 width: 100%;
778 height: 25px;
779}
780
781.cke_hc .cke_dialog_ui_labeled_content input:focus,
782.cke_hc .cke_dialog_ui_labeled_content select:focus,
783.cke_hc .cke_dialog_ui_labeled_content textarea:focus
784{
785 outline: 1px dotted;
786}
787
788/*
789 * Some utility CSS classes for dialog authors.
790 */
791.cke_dialog .cke_dark_background
792{
793 background-color: #DEDEDE;
794}
795
796.cke_dialog .cke_light_background
797{
798 background-color: #EBEBEB;
799}
800
801.cke_dialog .cke_centered
802{
803 text-align: center;
804}
805
806.cke_dialog a.cke_btn_reset
807{
808 float: right;
809 background: url(images/refresh.png) top left no-repeat;
810 width: 16px;
811 height: 16px;
812 border: 1px none;
813 font-size: 1px;
814}
815
816.cke_hidpi .cke_dialog a.cke_btn_reset {
817 background-size: 16px;
818 background-image: url(images/hidpi/refresh.png);
819}
820
821.cke_rtl .cke_dialog a.cke_btn_reset
822{
823 float: left;
824}
825
826.cke_dialog a.cke_btn_locked,
827.cke_dialog a.cke_btn_unlocked
828{
829 float: left;
830 width: 16px;
831 height: 16px;
832 background-repeat: no-repeat;
833 border: none 1px;
834 font-size: 1px;
835}
836
837.cke_dialog a.cke_btn_locked .cke_icon
838{
839 display: none;
840}
841
842.cke_rtl .cke_dialog a.cke_btn_locked,
843.cke_rtl .cke_dialog a.cke_btn_unlocked
844{
845 float: right;
846}
847
848.cke_dialog a.cke_btn_locked
849{
850 background-image: url(images/lock.png);
851}
852
853.cke_dialog a.cke_btn_unlocked
854{
855 background-image: url(images/lock-open.png);
856}
857
858.cke_hidpi .cke_dialog a.cke_btn_unlocked,
859.cke_hidpi .cke_dialog a.cke_btn_locked {
860 background-size: 16px;
861}
862
863.cke_hidpi .cke_dialog a.cke_btn_locked {
864 background-image: url(images/hidpi/lock.png);
865}
866
867.cke_hidpi .cke_dialog a.cke_btn_unlocked {
868 background-image: url(images/hidpi/lock-open.png);
869}
870
871.cke_dialog .cke_btn_over
872{
873 border: outset 1px;
874 cursor: pointer;
875}
876
877/*
878The rest of the file contains style used on several common plugins. There is a
879tendency that these will be moved to the plugins code in the future.
880*/
881
882.cke_dialog .ImagePreviewBox
883{
884 border: 2px ridge black;
885 overflow: scroll;
886 height: 200px;
887 width: 300px;
888 padding: 2px;
889 background-color: white;
890}
891
892.cke_dialog .ImagePreviewBox table td
893{
894 white-space: normal;
895}
896
897.cke_dialog .ImagePreviewLoader
898{
899 position: absolute;
900 white-space: normal;
901 overflow: hidden;
902 height: 160px;
903 width: 230px;
904 margin: 2px;
905 padding: 2px;
906 opacity: 0.9;
907 filter: alpha(opacity = 90);
908
909 background-color: #e4e4e4;
910}
911
912.cke_dialog .FlashPreviewBox
913{
914 white-space: normal;
915 border: 2px ridge black;
916 overflow: auto;
917 height: 160px;
918 width: 390px;
919 padding: 2px;
920 background-color: white;
921}
922
923.cke_dialog .cke_pastetext
924{
925 width: 346px;
926 height: 170px;
927}
928
929.cke_dialog .cke_pastetext textarea
930{
931 width: 340px;
932 height: 170px;
933 resize: none;
934}
935
936.cke_dialog iframe.cke_pasteframe
937{
938 width: 346px;
939 height: 130px;
940 background-color: white;
941 border: 1px solid #aeb3b9;
942 border-radius: 3px;
943}
944
945.cke_dialog .cke_hand
946{
947 cursor: pointer;
948}
949
950.cke_disabled
951{
952 color: #a0a0a0;
953}
954
955.cke_dialog_body .cke_label
956{
957 display: none;
958}
959
960.cke_dialog_body label
961{
962 display: inline;
963 margin-bottom: auto;
964 cursor: default;
965}
966
967.cke_dialog_body label.cke_required
968{
969 font-weight: bold;
970}
971
972a.cke_smile
973{
974 overflow: hidden;
975 display: block;
976 text-align: center;
977 padding: 0.3em 0;
978}
979
980a.cke_smile img
981{
982 vertical-align: middle;
983}
984
985a.cke_specialchar
986{
987 cursor: inherit;
988 display: block;
989 height: 1.25em;
990 padding: 0.2em 0.3em;
991 text-align: center;
992}
993
994a.cke_smile,
995a.cke_specialchar
996{
997 border: 1px solid transparent;
998}
999
1000a.cke_smile:hover,
1001a.cke_smile:focus,
1002a.cke_smile:active,
1003a.cke_specialchar:hover,
1004a.cke_specialchar:focus,
1005a.cke_specialchar:active
1006{
1007 background: #fff;
1008 outline: 0;
1009}
1010
1011a.cke_smile:hover,
1012a.cke_specialchar:hover
1013{
1014 border-color: #888;
1015}
1016
1017a.cke_smile:focus,
1018a.cke_smile:active,
1019a.cke_specialchar:focus,
1020a.cke_specialchar:active
1021{
1022 border-color: #139FF7;
1023}
1024
1025/**
1026 * Styles specific to "cellProperties" dialog.
1027 */
1028
1029.cke_dialog_contents a.colorChooser
1030{
1031 display: block;
1032 margin-top: 6px;
1033 margin-left: 10px;
1034 width: 80px;
1035}
1036
1037.cke_rtl .cke_dialog_contents a.colorChooser
1038{
1039 margin-right: 10px;
1040}
1041
1042/* Compensate focus outline for some input elements. (#6200) */
1043.cke_dialog_ui_checkbox_input:focus,
1044.cke_dialog_ui_radio_input:focus,
1045.cke_btn_over
1046{
1047 outline: 1px dotted #696969;
1048}
1049
1050.cke_iframe_shim
1051{
1052 display: block;
1053 position: absolute;
1054 top: 0;
1055 left: 0;
1056 z-index: -1;
1057 filter: alpha(opacity = 0);
1058 width: 100%;
1059 height: 100%;
1060}
diff --git a/sources/skins/moono/dialog_ie.css b/sources/skins/moono/dialog_ie.css
new file mode 100644
index 0000000..16480b7
--- /dev/null
+++ b/sources/skins/moono/dialog_ie.css
@@ -0,0 +1,62 @@
1/*
2Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6/*
7dialog_ie.css
8===============
9
10This file contains styles to used by all versions of Internet Explorer only.
11*/
12
13/* Base it on dialog.css, overriding it with styles defined in this file. */
14@import url("dialog.css");
15
16/* IE doesn't leave enough padding in text input for cursor to blink in RTL. (#6087) */
17.cke_rtl input.cke_dialog_ui_input_text,
18.cke_rtl input.cke_dialog_ui_input_password
19{
20 padding-right: 2px;
21}
22/* Compensate the padding added above on container. */
23.cke_rtl div.cke_dialog_ui_input_text,
24.cke_rtl div.cke_dialog_ui_input_password
25{
26 padding-left: 2px;
27}
28.cke_rtl div.cke_dialog_ui_input_text {
29 padding-right: 1px;
30}
31
32.cke_rtl .cke_dialog_ui_vbox_child,
33.cke_rtl .cke_dialog_ui_hbox_child,
34.cke_rtl .cke_dialog_ui_hbox_first,
35.cke_rtl .cke_dialog_ui_hbox_last
36{
37 padding-right: 2px !important;
38}
39
40
41/* Disable filters for HC mode. */
42.cke_hc .cke_dialog_title,
43.cke_hc .cke_dialog_footer,
44.cke_hc a.cke_dialog_tab,
45.cke_hc a.cke_dialog_ui_button,
46.cke_hc a.cke_dialog_ui_button:hover,
47.cke_hc a.cke_dialog_ui_button_ok,
48.cke_hc a.cke_dialog_ui_button_ok:hover
49{
50 filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
51}
52
53/* Remove border from dialog field wrappers in HC
54 to avoid double borders. */
55.cke_hc div.cke_dialog_ui_input_text,
56.cke_hc div.cke_dialog_ui_input_password,
57.cke_hc div.cke_dialog_ui_input_textarea,
58.cke_hc div.cke_dialog_ui_input_select,
59.cke_hc div.cke_dialog_ui_input_file
60{
61 border: 0;
62}
diff --git a/sources/skins/moono/dialog_ie7.css b/sources/skins/moono/dialog_ie7.css
new file mode 100644
index 0000000..e4eba12
--- /dev/null
+++ b/sources/skins/moono/dialog_ie7.css
@@ -0,0 +1,68 @@
1/*
2Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6/*
7dialog_ie7.css
8===============
9
10This file contains styles to used by Internet Explorer 7 only.
11*/
12
13/* Base it on dialog_ie.css, overriding it with styles defined in this file. */
14@import url("dialog_ie.css");
15
16.cke_dialog_title
17{
18 /* gradient fix */
19 zoom: 1;
20}
21
22.cke_dialog_footer
23{
24 /* IE7 ignores footer's outline. Use border instead. */
25 border-top: 1px solid #bfbfbf;
26}
27
28/* IE7 needs position static #6806 */
29.cke_dialog_footer_buttons
30{
31 position: static;
32}
33
34/* IE7 crops the bottom pixels of footer buttons (#9491) */
35.cke_dialog_footer_buttons a.cke_dialog_ui_button
36{
37 vertical-align: top;
38}
39
40/* IE7 margin loose on float. */
41.cke_dialog .cke_resizer_ltr
42{
43 padding-left: 4px;
44}
45.cke_dialog .cke_resizer_rtl
46{
47 padding-right: 4px;
48}
49
50/* IE7 doesn't support box-sizing and therefore we cannot
51 have sexy inputs which go well with the layout. */
52.cke_dialog_ui_input_text,
53.cke_dialog_ui_input_password,
54.cke_dialog_ui_input_textarea,
55.cke_dialog_ui_input_select
56{
57 padding: 0 !important;
58}
59
60/* Predefined border to avoid visual size change impact. */
61.cke_dialog_ui_checkbox_input,
62.cke_dialog_ui_ratio_input,
63.cke_btn_reset,
64.cke_btn_locked,
65.cke_btn_unlocked
66{
67 border: 1px solid transparent !important;
68}
diff --git a/sources/skins/moono/dialog_ie8.css b/sources/skins/moono/dialog_ie8.css
new file mode 100644
index 0000000..cf642eb
--- /dev/null
+++ b/sources/skins/moono/dialog_ie8.css
@@ -0,0 +1,24 @@
1/*
2Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6/*
7dialog_ie8.css
8===============
9
10This file contains styles to used by Internet Explorer 8 only.
11*/
12
13/* Base it on dialog_ie.css, overriding it with styles defined in this file. */
14@import url("dialog_ie.css");
15
16/* Without the following, IE8 cannot compensate footer button thick borders
17 on :focus/:active. */
18a.cke_dialog_ui_button_ok:focus span,
19a.cke_dialog_ui_button_ok:active span,
20a.cke_dialog_ui_button_cancel:focus span,
21a.cke_dialog_ui_button_cancel:active span
22{
23 display: block;
24}
diff --git a/sources/skins/moono/dialog_iequirks.css b/sources/skins/moono/dialog_iequirks.css
new file mode 100644
index 0000000..daa0afa
--- /dev/null
+++ b/sources/skins/moono/dialog_iequirks.css
@@ -0,0 +1,21 @@
1/*
2Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6/*
7dialog_ie7.css
8===============
9
10This file contains styles to used by Internet Explorer in
11Quirks mode only.
12*/
13
14/* Base it on dialog_ie.css, overriding it with styles defined in this file. */
15@import url("dialog_ie.css");
16
17/* [IE7-8] Filter on footer causes background artifacts when opening dialog. */
18.cke_dialog_footer
19{
20 filter: "";
21}
diff --git a/sources/skins/moono/editor.css b/sources/skins/moono/editor.css
new file mode 100644
index 0000000..9f96036
--- /dev/null
+++ b/sources/skins/moono/editor.css
@@ -0,0 +1,69 @@
1/*
2Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6/*
7editor.css
8============
9
10This is he heart of the skin system. This is the file loaded by the editor to
11style all elements inside its main interface.
12
13To make it easier to maintain, instead of including all styles here, we import
14other files.
15*/
16
17/* "Reset" styles, necessary to avoid the editor UI being broken by external CSS. */
18@import url("reset.css");
19
20/* Styles the main interface structure (holding box). */
21@import url("mainui.css");
22
23/* Styles all "panels", which are the floating elements that appear when
24 opening toolbar combos, menu buttons, context menus, etc. */
25@import url("panel.css");
26
27/* Styles the color panel displayed by the color buttons. */
28@import url("colorpanel.css");
29
30/* Styles to toolbar. */
31@import url("toolbar.css");
32
33/* Styles menus, which are lists of selectable items (context menu, menu button). */
34@import url("menu.css");
35
36/* Styles toolbar combos. */
37@import url("richcombo.css");
38
39/* Styles the elements path bar, available at the bottom of the editor UI.*/
40@import url("elementspath.css");
41
42/* Contains hard-coded presets for "configurable-like" options of the UI
43 (e.g. display labels on specific buttons) */
44@import url("presets.css");
45
46/* Styles for notifications. */
47@import url("notification.css");
48
49/* Important!
50 To avoid showing the editor UI while its styles are still not available, the
51 editor creates it with visibility:hidden. Here, we restore the UI visibility. */
52.cke_chrome
53{
54 visibility: inherit;
55}
56
57/* For accessibility purposes, several "voice labels" are present in the UI.
58 These are usually <span> elements that show not be visible, but that are
59 used by screen-readers to announce other elements. Here, we hide these
60 <spans>, in fact. */
61.cke_voice_label
62{
63 display: none;
64}
65
66legend.cke_voice_label
67{
68 display: none;
69}
diff --git a/sources/skins/moono/editor_gecko.css b/sources/skins/moono/editor_gecko.css
new file mode 100644
index 0000000..c3f3398
--- /dev/null
+++ b/sources/skins/moono/editor_gecko.css
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6/*
7editor_gecko.css
8==================
9
10This file contains styles to used by all Gecko based browsers (Firefox) only.
11*/
12
13/* Base it on editor.css, overriding it with styles defined in this file. */
14@import url("editor.css");
15
16.cke_bottom
17{
18 padding-bottom: 3px;
19}
20
21.cke_combo_text
22{
23 margin-bottom: -1px;
24 margin-top: 1px;
25}
diff --git a/sources/skins/moono/editor_ie.css b/sources/skins/moono/editor_ie.css
new file mode 100644
index 0000000..19df7fd
--- /dev/null
+++ b/sources/skins/moono/editor_ie.css
@@ -0,0 +1,71 @@
1/*
2Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6/*
7editor_ie.css
8===============
9
10This file contains styles to used by all versions of Internet Explorer only.
11*/
12
13/* Base it on editor.css, overriding it with styles defined in this file. */
14@import url("editor.css");
15
16a.cke_button_disabled,
17
18/* Those two are to overwrite the gradient filter since we cannot have both of them. */
19a.cke_button_disabled:hover,
20a.cke_button_disabled:focus,
21a.cke_button_disabled:active
22{
23 filter: alpha(opacity = 30);
24}
25
26/* PNG Alpha Transparency Fix For IE<9 */
27.cke_button_disabled .cke_button_icon
28{
29 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff, endColorstr=#00ffffff);
30}
31
32.cke_button_off:hover,
33.cke_button_off:focus,
34.cke_button_off:active
35{
36 filter: alpha(opacity = 100);
37}
38
39.cke_combo_disabled .cke_combo_inlinelabel,
40.cke_combo_disabled .cke_combo_open
41{
42 filter: alpha(opacity = 30);
43}
44
45.cke_toolbox_collapser
46{
47 border: 1px solid #a6a6a6;
48}
49
50.cke_toolbox_collapser .cke_arrow
51{
52 margin-top: 1px;
53}
54
55/* Gradient filters must be removed for HC mode to reveal the background. */
56.cke_hc .cke_top,
57.cke_hc .cke_bottom,
58.cke_hc .cke_combo_button,
59.cke_hc a.cke_combo_button:hover,
60.cke_hc a.cke_combo_button:focus,
61.cke_hc .cke_toolgroup,
62.cke_hc .cke_button_on,
63.cke_hc a.cke_button_off:hover,
64.cke_hc a.cke_button_off:focus,
65.cke_hc a.cke_button_off:active,
66.cke_hc .cke_toolbox_collapser,
67.cke_hc .cke_toolbox_collapser:hover,
68.cke_hc .cke_panel_grouptitle
69{
70 filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
71}
diff --git a/sources/skins/moono/editor_ie7.css b/sources/skins/moono/editor_ie7.css
new file mode 100644
index 0000000..e2c3c6c
--- /dev/null
+++ b/sources/skins/moono/editor_ie7.css
@@ -0,0 +1,213 @@
1/*
2Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6/*
7editor_ie7.css
8===============
9
10This file contains styles to used by Internet Explorer 7 only.
11*/
12
13/* Base it on editor_ie.css, overriding it with styles defined in this file. */
14@import url("editor_ie.css");
15
16.cke_rtl .cke_toolgroup,
17.cke_rtl .cke_toolbar_separator,
18.cke_rtl .cke_button,
19.cke_rtl .cke_button *,
20.cke_rtl .cke_combo,
21.cke_rtl .cke_combo *,
22.cke_rtl .cke_path_item,
23.cke_rtl .cke_path_item *,
24.cke_rtl .cke_path_empty
25{
26 float: none;
27}
28
29.cke_rtl .cke_toolgroup,
30.cke_rtl .cke_toolbar_separator,
31.cke_rtl .cke_combo_button,
32.cke_rtl .cke_combo_button *,
33.cke_rtl .cke_button,
34.cke_rtl .cke_button_icon
35{
36 display: inline-block;
37 vertical-align: top;
38}
39
40.cke_toolbox
41{
42 display:inline-block;
43 padding-bottom: 5px;
44 height: 100%;
45}
46.cke_rtl .cke_toolbox
47{
48 padding-bottom: 0;
49}
50
51.cke_toolbar
52{
53 margin-bottom: 5px;
54}
55.cke_rtl .cke_toolbar
56{
57 margin-bottom: 0;
58}
59
60/* IE7: toolgroup must be adapted to toolbar items height. */
61.cke_toolgroup
62{
63 height: 26px;
64}
65
66/* Avoid breaking elements that use background gradient when page zoom > 1 (#9548) */
67.cke_toolgroup,
68.cke_combo
69{
70 position: relative;
71}
72
73a.cke_button
74{
75 /* IE7: buttons must not float to wrap the toolbar in a whole. */
76 float:none;
77
78 /* IE7: buttons have to be aligned to top. Otherwise, some buttons like
79 * source and scayt are displayed a few pixels below the base line.
80 */
81 vertical-align:top;
82}
83
84.cke_toolbar_separator
85{
86 display: inline-block;
87 float: none;
88 vertical-align: top;
89 background-color: #c0c0c0;
90}
91
92.cke_toolbox_collapser .cke_arrow
93{
94 margin-top: 0;
95}
96.cke_toolbox_collapser .cke_arrow
97{
98 border-width:4px;
99}
100.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow
101{
102 border-width:3px;
103}
104
105.cke_rtl .cke_button_arrow
106{
107 padding-top: 8px;
108 margin-right: 2px;
109}
110
111.cke_rtl .cke_combo_inlinelabel
112{
113 display: table-cell;
114 vertical-align: middle;
115}
116
117/*
118 * Editor menus are display:table-driven. IE7 doesn't support this approach,
119 * hence this position&float hybrid fall-back.
120 */
121.cke_menubutton
122{
123 display: block;
124 height: 24px;
125}
126
127.cke_menubutton_inner
128{
129 display: block;
130 position: relative;
131}
132
133.cke_menubutton_icon
134{
135 height: 16px;
136 width: 16px;
137}
138
139.cke_menubutton_icon,
140.cke_menubutton_label,
141.cke_menuarrow
142{
143 display: inline-block;
144}
145
146.cke_menubutton_label
147{
148 width: auto;
149 vertical-align: top;
150 line-height: 24px;
151 height: 24px;
152 margin: 0 10px 0 0;
153}
154
155.cke_menuarrow
156{
157 width: 5px;
158 height: 6px;
159 padding: 0;
160 position: absolute;
161 right: 8px;
162 top: 10px;
163
164 background-position: 0 0;
165}
166
167/* Menus in RTL mode. */
168.cke_rtl .cke_menubutton_icon
169{
170 position: absolute;
171 right: 0px;
172 top: 0px;
173}
174
175.cke_rtl .cke_menubutton_label
176{
177 float: right;
178 clear: both;
179 margin: 0 24px 0 10px;
180}
181
182.cke_hc .cke_rtl .cke_menubutton_label
183{
184 margin-right: 0;
185}
186
187
188.cke_rtl .cke_menuarrow
189{
190 left: 8px;
191 right: auto;
192 background-position: 0 -24px;
193}
194
195.cke_hc .cke_menuarrow
196{
197 top: 5px;
198 padding: 0 5px;
199}
200
201.cke_rtl input.cke_dialog_ui_input_text,
202.cke_rtl input.cke_dialog_ui_input_password
203{
204 /* Positioning is required for IE7 on text inputs not to stretch dialog horizontally. (#8971)*/
205 position: relative;
206}
207
208/* Reset vertical paddings which put editing area under bottom UI space. (#9721) */
209.cke_wysiwyg_div
210{
211 padding-top: 0 !important;
212 padding-bottom: 0 !important;
213}
diff --git a/sources/skins/moono/editor_ie8.css b/sources/skins/moono/editor_ie8.css
new file mode 100644
index 0000000..902a9da
--- /dev/null
+++ b/sources/skins/moono/editor_ie8.css
@@ -0,0 +1,27 @@
1/*
2Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6/*
7editor_ie8.css
8===============
9
10This file contains styles to used by Internet Explorer 8 only.
11*/
12
13/* Base it on editor_ie.css, overriding it with styles defined in this file. */
14@import url("editor_ie.css");
15
16.cke_toolbox_collapser .cke_arrow
17{
18 border-width:4px;
19}
20.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow
21{
22 border-width:3px;
23}
24.cke_toolbox_collapser .cke_arrow
25{
26 margin-top: 0;
27}
diff --git a/sources/skins/moono/editor_iequirks.css b/sources/skins/moono/editor_iequirks.css
new file mode 100644
index 0000000..06bcb60
--- /dev/null
+++ b/sources/skins/moono/editor_iequirks.css
@@ -0,0 +1,79 @@
1/*
2Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6/*
7editor_iequirks.css
8===============
9
10This file contains styles to used by all versions of Internet Explorer
11in Quirks mode only.
12*/
13
14/* Base it on editor_ie.css, overriding it with styles defined in this file. */
15@import url("editor_ie.css");
16
17.cke_top,
18.cke_contents,
19.cke_bottom
20{
21 width: 100%; /* hasLayout = true */
22}
23
24.cke_button_arrow
25{
26 font-size: 0; /* Set minimal font size, so arrow won't be streched by the text that doesn't exist. */
27}
28
29/* Bring back toolbar buttons in RTL. */
30
31.cke_rtl .cke_toolgroup,
32.cke_rtl .cke_toolbar_separator,
33.cke_rtl .cke_button,
34.cke_rtl .cke_button *,
35.cke_rtl .cke_combo,
36.cke_rtl .cke_combo *,
37.cke_rtl .cke_path_item,
38.cke_rtl .cke_path_item *,
39.cke_rtl .cke_path_empty
40{
41 float: none;
42}
43
44.cke_rtl .cke_toolgroup,
45.cke_rtl .cke_toolbar_separator,
46.cke_rtl .cke_combo_button,
47.cke_rtl .cke_combo_button *,
48.cke_rtl .cke_button,
49.cke_rtl .cke_button_icon
50{
51 display: inline-block;
52 vertical-align: top;
53}
54
55/* Otherwise formatting toolbar breaks when editing a mixed content (#9893). */
56.cke_rtl .cke_button_icon
57{
58 float: none;
59}
60
61.cke_resizer
62{
63 width: 10px;
64}
65
66.cke_source
67{
68 white-space: normal;
69}
70
71.cke_bottom
72{
73 position: static; /* Without this bottom space doesn't move when resizing editor. */
74}
75
76.cke_colorbox
77{
78 font-size: 0; /* Set minimal font size, so button won't be streched by the text that doesn't exist. */
79}
diff --git a/sources/skins/moono/elementspath.css b/sources/skins/moono/elementspath.css
new file mode 100644
index 0000000..c8e12fe
--- /dev/null
+++ b/sources/skins/moono/elementspath.css
@@ -0,0 +1,76 @@
1/*
2Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6/*
7elementspath.css (part of editor.css)
8=======================================
9
10This file styles the "Elements Path", whith is the list of element names
11present at the the bottom bar of the CKEditor interface.
12
13The following is a visual representation of its main elements:
14
15+-- .cke_path ---------------------------------------------------------------+
16| +-- .cke_path_item ----+ +-- .cke_path_item ----+ +-- .cke_path_empty ---+ |
17| | | | | | | |
18| +----------------------+ +----------------------+ +----------------------+ |
19+----------------------------------------------------------------------------+
20*/
21
22/* The box that holds the entire elements path. */
23.cke_path
24{
25 float: left;
26 margin: -2px 0 2px;
27}
28
29/* Each item of the elements path. */
30a.cke_path_item,
31/* Empty element available at the end of the elements path, to help us keeping
32 the proper box size when the elements path is empty. */
33span.cke_path_empty
34{
35 display: inline-block;
36 float: left;
37 padding: 3px 4px;
38 margin-right: 2px;
39 cursor: default;
40 text-decoration: none;
41 outline: 0;
42 border: 0;
43 color: #4c4c4c;
44 text-shadow: 0 1px 0 #fff;
45 font-weight: bold;
46 font-size: 11px;
47}
48
49.cke_rtl .cke_path,
50.cke_rtl .cke_path_item,
51.cke_rtl .cke_path_empty
52{
53 float: right;
54}
55
56/* The items are <a> elements, so we define its hover states here. */
57a.cke_path_item:hover,
58a.cke_path_item:focus,
59a.cke_path_item:active
60{
61 background-color: #bfbfbf;
62 color: #333;
63 text-shadow: 0 1px 0 rgba(255,255,255,.5);
64
65 border-radius: 2px;
66
67 box-shadow: 0 0 4px rgba(0,0,0,.5) inset, 0 1px 0 rgba(255,255,255,.5);
68}
69
70.cke_hc a.cke_path_item:hover,
71.cke_hc a.cke_path_item:focus,
72.cke_hc a.cke_path_item:active
73{
74 border: 2px solid;
75 padding: 1px 2px;
76}
diff --git a/sources/skins/moono/images/arrow.png b/sources/skins/moono/images/arrow.png
new file mode 100644
index 0000000..d72b5f3
--- /dev/null
+++ b/sources/skins/moono/images/arrow.png
Binary files differ
diff --git a/sources/skins/moono/images/close.png b/sources/skins/moono/images/close.png
new file mode 100644
index 0000000..6a04ab5
--- /dev/null
+++ b/sources/skins/moono/images/close.png
Binary files differ
diff --git a/sources/skins/moono/images/hidpi/close.png b/sources/skins/moono/images/hidpi/close.png
new file mode 100644
index 0000000..e406c2c
--- /dev/null
+++ b/sources/skins/moono/images/hidpi/close.png
Binary files differ
diff --git a/sources/skins/moono/images/hidpi/lock-open.png b/sources/skins/moono/images/hidpi/lock-open.png
new file mode 100644
index 0000000..edbd12f
--- /dev/null
+++ b/sources/skins/moono/images/hidpi/lock-open.png
Binary files differ
diff --git a/sources/skins/moono/images/hidpi/lock.png b/sources/skins/moono/images/hidpi/lock.png
new file mode 100644
index 0000000..1b87bbb
--- /dev/null
+++ b/sources/skins/moono/images/hidpi/lock.png
Binary files differ
diff --git a/sources/skins/moono/images/hidpi/refresh.png b/sources/skins/moono/images/hidpi/refresh.png
new file mode 100644
index 0000000..c6c2b86
--- /dev/null
+++ b/sources/skins/moono/images/hidpi/refresh.png
Binary files differ
diff --git a/sources/skins/moono/images/lock-open.png b/sources/skins/moono/images/lock-open.png
new file mode 100644
index 0000000..0476987
--- /dev/null
+++ b/sources/skins/moono/images/lock-open.png
Binary files differ
diff --git a/sources/skins/moono/images/lock.png b/sources/skins/moono/images/lock.png
new file mode 100644
index 0000000..c5a1440
--- /dev/null
+++ b/sources/skins/moono/images/lock.png
Binary files differ
diff --git a/sources/skins/moono/images/refresh.png b/sources/skins/moono/images/refresh.png
new file mode 100644
index 0000000..1ff63c3
--- /dev/null
+++ b/sources/skins/moono/images/refresh.png
Binary files differ
diff --git a/sources/skins/moono/images/spinner.gif b/sources/skins/moono/images/spinner.gif
new file mode 100644
index 0000000..d898d41
--- /dev/null
+++ b/sources/skins/moono/images/spinner.gif
Binary files differ
diff --git a/sources/skins/moono/mainui.css b/sources/skins/moono/mainui.css
new file mode 100644
index 0000000..57bc309
--- /dev/null
+++ b/sources/skins/moono/mainui.css
@@ -0,0 +1,214 @@
1/*
2Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6/*
7mainui.css (part of editor.css)
8=================================
9
10This file styles the basic structure of the CKEditor user interface - the box
11that holds everything.
12
13CKEditor offers two main editing modes. The main UI blocks that compose these
14modes are:
15
16 For "Theme UI" mode, the one most generally used:
17
18 +-- .cke_chrome ----------------------+
19 |+-- .cke_inner ---------------------+|
20 || +-- .cke_top -------------------+ ||
21 || | | ||
22 || +-------------------------------+ ||
23 || +-- .cke_contents --------------+ ||
24 || | | ||
25 || +-------------------------------+ ||
26 || +-- .cke_bottom ----------------+ ||
27 || | | ||
28 || +-------------------------------+ ||
29 |+-----------------------------------+|
30 +-------------------------------------+
31
32 For "Inline Editing" mode:
33
34 +-- .cke_chrome .cke_float------------+
35 |+-- .cke_inner ---------------------+|
36 || +-- .cke_top -------------------+ ||
37 || | | ||
38 || +-------------------------------+ ||
39 |+-----------------------------------+|
40 +-------------------------------------+
41
42Special outer level classes used in this file:
43
44 .cke_hc: Available when the editor is rendered on "High Contrast".
45
46*/
47
48/* The outer boundary of the interface. */
49.cke_chrome
50{
51 /* This is <span>, so transform it into a block.*/
52 display: block;
53 border: 1px solid #b6b6b6;
54 padding: 0;
55
56 box-shadow: 0 0 3px rgba(0,0,0,.15);
57}
58
59/* The inner boundary of the interface. */
60.cke_inner
61{
62 /* This is <span>, so transform it into a block.*/
63 display: block;
64
65 -webkit-touch-callout: none;
66
67 background: #fff;
68 padding: 0;
69}
70
71/* Added to the outer boundary of the UI when in inline editing,
72 when the UI is floating. */
73.cke_float
74{
75 /* Make white the space between the outer and the inner borders. */
76 border: none;
77}
78
79.cke_float .cke_inner
80{
81 /* As we don't have blocks following top (toolbar) we suppress the padding
82 as the toolbar defines its own margin. */
83 padding-bottom: 0;
84}
85
86/* Make the main spaces enlarge to hold potentially floated content. */
87.cke_top,
88.cke_contents,
89.cke_bottom
90{
91 /* These are <span>s, so transform them into blocks.*/
92 display: block;
93
94 /* Ideally this should be "auto", but it shows scrollbars in IE7. */
95 overflow: hidden;
96}
97
98.cke_top
99{
100 /*border: 1px solid #b2b2b2;*/
101 border-bottom: 1px solid #b6b6b6;
102 padding: 6px 8px 2px;
103
104 /* Allow breaking toolbars when in a narrow editor. (#9947) */
105 white-space: normal;
106
107 box-shadow: 0 1px 0 #fff inset;
108
109 background: #cfd1cf;
110 background-image: linear-gradient(to bottom, #f5f5f5, #cfd1cf);
111 filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#f5f5f5', endColorstr='#cfd1cf');
112}
113
114.cke_float .cke_top
115{
116 border: 1px solid #b6b6b6;
117 border-bottom-color: #999;
118}
119
120.cke_bottom
121{
122 padding: 6px 8px 2px;
123 position: relative;
124
125 border-top: 1px solid #bfbfbf;
126
127 box-shadow: 0 1px 0 #fff inset;
128
129 background: #cfd1cf;
130 background-image: linear-gradient(to bottom, #ebebeb, #cfd1cf);
131 filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#ebebeb', endColorstr='#cfd1cf');
132}
133
134/* On iOS we need to manually enable scrolling in the contents block. (#9945) */
135.cke_browser_ios .cke_contents
136{
137 overflow-y: auto;
138 -webkit-overflow-scrolling: touch;
139}
140
141/* The resizer is the small UI element that is rendered at the bottom right
142 part of the editor. It makes is possible to resize the editor UI. */
143.cke_resizer
144{
145 /* To avoid using images for the resizer, we create a small triangle,
146 using some CSS magic. */
147 width: 0;
148 height: 0;
149 overflow: hidden;
150 width: 0;
151 height: 0;
152 overflow: hidden;
153 border-width: 10px 10px 0 0;
154 border-color: transparent #666 transparent transparent;
155 border-style: dashed solid dashed dashed;
156
157 font-size: 0;
158 vertical-align: bottom;
159
160 margin-top: 6px;
161
162 /* A margin in case of no other element in the same container
163 to keep a distance to the bottom edge. */
164 margin-bottom: 2px;
165
166 box-shadow: 0 1px 0 rgba(255,255,255,.3);
167}
168
169.cke_hc .cke_resizer
170{
171 font-size: 15px;
172 width: auto;
173 height: auto;
174 border-width: 0;
175}
176
177.cke_resizer_ltr
178{
179 cursor: se-resize;
180
181 float: right;
182 margin-right: -4px;
183}
184
185/* This class is added in RTL mode. This is a special case for the resizer
186 (usually the .cke_rtl class is used), because it may not necessarily be in
187 RTL mode if the main UI is RTL. It depends instead on the context where the
188 editor is inserted on. */
189.cke_resizer_rtl
190{
191 border-width: 10px 0 0 10px;
192 border-color: transparent transparent transparent #A5A5A5;
193 border-style: dashed dashed dashed solid;
194
195 cursor: sw-resize;
196
197 float: left;
198 margin-left: -4px;
199 right: auto;
200}
201
202/* The editing area (where users type) can be rendered as an editable <div>
203 element (e.g. divarea plugin). In that case, this is the class applied to
204 that element. */
205.cke_wysiwyg_div
206{
207 display: block;
208 height: 100%;
209 overflow: auto;
210 padding: 0 8px;
211 outline-style: none;
212
213 box-sizing: border-box;
214}
diff --git a/sources/skins/moono/menu.css b/sources/skins/moono/menu.css
new file mode 100644
index 0000000..671e01e
--- /dev/null
+++ b/sources/skins/moono/menu.css
@@ -0,0 +1,201 @@
1/*
2Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6/*
7menu.css (part of editor.css)
8===============================
9
10This file styles menus used in the editor UI. These menus are the list of
11options available inside some "floating panels", like menu buttons of the
12toolbar or the context menu.
13
14Note that the menu itself doesn't include the floating element that holds it.
15That element is styles in the panel.css file.
16
17The following is a visual representation of the main elements of a menu:
18
19+-- .cke_menu -----------------+
20| +-- .cke_menuitem --------+ |
21| | +-- .cke_menubutton ---+ | |
22| | | | | |
23| | +----------------------+ | |
24| +--------------------------+ |
25| +-- .cke_menuseparator ----+ |
26| ... |
27+------------------------------+
28
29This is the .cke_menubutton structure:
30(Note that the menu button icon shares with toolbar button the common class .cke_button_icon to achieve the same outlook.)
31
32+-- .cke_menubutton -------------------------------------------------------------------------+
33| +-- .cke_menubutton_inner ---------------------------------------------------------------+ |
34| | +-- .cke_menubutton_icon ---+ +-- .cke_menubutton_label --+ +-- .cke_cke_menuarrow --+ | |
35| | | +-- .cke_button_icon ---+ | | | | | | |
36| | | | | | | | | | | |
37| | | +-----------------------+ | | | | | | |
38| | +---------------------------+ +---------------------------+ +------------------------+ | |
39| +----------------------------------------------------------------------------------------+ |
40+--------------------------------------------------------------------------------------------+
41
42Special outer level classes used in this file:
43
44 .cke_hc: Available when the editor is rendered on "High Contrast".
45 .cke_rtl: Available when the editor UI is on RTL.
46*/
47
48/* .cke_menuitem is the element that holds the entire structure of each of the
49 menu items. */
50
51.cke_menubutton
52{
53 /* The "button" inside a menu item is a <a> element.
54 Transforms it into a block. */
55 display: block;
56}
57
58.cke_menuitem span
59{
60 /* Avoid the text selection cursor inside menu items. */
61 cursor: default;
62}
63
64.cke_menubutton:hover,
65.cke_menubutton:focus,
66.cke_menubutton:active
67{
68 background-color: #D3D3D3;
69 display: block;
70}
71
72.cke_hc .cke_menubutton
73{
74 padding: 2px;
75}
76
77.cke_hc .cke_menubutton:hover,
78.cke_hc .cke_menubutton:focus,
79.cke_hc .cke_menubutton:active
80{
81 border: 2px solid;
82 padding: 0;
83}
84
85.cke_menubutton_inner {
86 display: table-row;
87}
88
89.cke_menubutton_icon,
90.cke_menubutton_label,
91.cke_menuarrow {
92 display: table-cell;
93}
94
95/* The menu item icon. */
96.cke_menubutton_icon
97{
98 background-color: #D7D8D7;
99 opacity: 0.70; /* Safari, Opera and Mozilla */
100 filter: alpha(opacity=70); /* IE */
101 padding: 4px;
102}
103
104.cke_hc .cke_menubutton_icon
105{
106 height: 16px;
107 width: 0;
108 padding: 4px 0;
109}
110
111.cke_menubutton:hover .cke_menubutton_icon,
112.cke_menubutton:focus .cke_menubutton_icon,
113.cke_menubutton:active .cke_menubutton_icon
114{
115 background-color: #D0D2D0;
116}
117
118.cke_menubutton_disabled:hover .cke_menubutton_icon,
119.cke_menubutton_disabled:focus .cke_menubutton_icon,
120.cke_menubutton_disabled:active .cke_menubutton_icon
121{
122 /* The icon will get opacity as well when hovered. */
123 opacity: 0.3;
124 filter: alpha(opacity=30);
125}
126
127/* The textual part of each menu item. */
128.cke_menubutton_label
129{
130 padding: 0 5px;
131 background-color: transparent;
132 width: 100%;
133 vertical-align: middle;
134}
135
136.cke_menubutton_disabled .cke_menubutton_label
137{
138 /* Greyed label text indicates a disabled menu item. */
139 opacity: 0.3;
140 filter: alpha(opacity=30);
141}
142
143.cke_menubutton_on
144{
145 border: 1px solid #dedede;
146 background-color: #f2f2f2;
147
148 box-shadow: 0 0 2px rgba(0,0,0,.1) inset;
149}
150
151.cke_menubutton_on .cke_menubutton_icon
152{
153 padding-right: 3px;
154}
155
156.cke_menubutton:hover,
157.cke_menubutton:focus,
158.cke_menubutton:active
159{
160 background-color: #EFF0EF;
161}
162
163.cke_panel_frame .cke_menubutton_label
164{
165 display: none;
166}
167
168/* The separator used to separate menu item groups. */
169.cke_menuseparator
170{
171 background-color: #D3D3D3;
172 height: 1px;
173 filter: alpha(opacity=70); /* IE */
174 opacity: 0.70; /* Safari, Opera and Mozilla */
175}
176
177/* The small arrow shown for item with sub-menus. */
178.cke_menuarrow
179{
180 background-image: url(images/arrow.png);
181 background-position: 0 10px;
182 background-repeat: no-repeat;
183 padding: 0 5px;
184}
185
186.cke_rtl .cke_menuarrow
187{
188 background-position: 5px -13px;
189 background-repeat: no-repeat;
190}
191
192.cke_menuarrow span
193{
194 display: none;
195}
196
197.cke_hc .cke_menuarrow span
198{
199 vertical-align: middle;
200 display: inline;
201}
diff --git a/sources/skins/moono/notification.css b/sources/skins/moono/notification.css
new file mode 100644
index 0000000..9a25f76
--- /dev/null
+++ b/sources/skins/moono/notification.css
@@ -0,0 +1,168 @@
1/*
2Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6/**
7 * Progress notification structure:
8 *
9 * +---div.cke_notification cke_notification_info--------------------------+
10 * | |
11 * | +---div.cke_notification_progress-----------------------------------+ |
12 * | | | |
13 * | +-------------------------------------------------------------------+ |
14 * | |
15 * | +---p.cke_notification_message--------------------------------------+ |
16 * | | Foo | |
17 * | +-------------------------------------------------------------------+ |
18 * | |
19 * | +---a.cke_notification_close----------------------------------------+ |
20 * | | +---span.cke_label----------------------------------------------+ | |
21 * | | | X | | |
22 * | | +---------------------------------------------------------------+ | |
23 * | +-------------------------------------------------------------------+ |
24 * | |
25 * +-----------------------------------------------------------------------+
26 *
27 *
28 * Warning notification structure:
29 *
30 * +---div.cke_notification cke_notification_warning-----------------------+
31 * | |
32 * | +---p.cke_notification_message--------------------------------------+ |
33 * | | Foo | |
34 * | +-------------------------------------------------------------------+ |
35 * | |
36 * | +---a.cke_notification_close----------------------------------------+ |
37 * | | +---span.cke_label----------------------------------------------+ | |
38 * | | | X | | |
39 * | | +---------------------------------------------------------------+ | |
40 * | +-------------------------------------------------------------------+ |
41 * | |
42 * +-----------------------------------------------------------------------+
43 *
44 * Success and info notifications have the same structure as warning, but use
45 * `cke_notification_success` and `cke_notification_info` instead of `cke_notification_warning`.
46 */
47.cke_notifications_area
48{
49 /* Prevent notification margin capture clicking. */
50 pointer-events: none;
51}
52.cke_notification
53{
54 pointer-events: auto;
55 position: relative;
56 margin: 10px;
57 width: 300px;
58 color: white;
59 border-radius: 3px;
60 text-align: center;
61 opacity: 0.95;
62 filter: alpha(opacity = 95);
63 box-shadow: 2px 2px 3px 0px rgba(50, 50, 50, 0.3);
64
65 -webkit-animation: fadeIn 0.7s;
66 animation: fadeIn 0.7s;
67}
68
69.cke_notification_message a
70{
71 color: #12306F;
72}
73
74@-webkit-keyframes fadeIn
75{
76 from { opacity: 0.4; }
77 to { opacity: 0.95; }
78}
79
80@keyframes fadeIn
81{
82 from { opacity: 0.4; }
83 to { opacity: 0.95; }
84}
85
86.cke_notification_success
87{
88 background: #72B572;
89 border: 1px solid #63A563;
90}
91
92.cke_notification_warning
93{
94 background: #C83939;
95 border: 1px solid #902B2B;
96}
97
98.cke_notification_info
99{
100 background: #2E9AD0;
101 border: 1px solid #0F74A8;
102}
103
104.cke_notification_info span.cke_notification_progress
105{
106 background-color: #0F74A8;
107 display: block;
108 padding: 0;
109 margin: 0;
110 height: 100%;
111 overflow: hidden;
112 position: absolute;
113 z-index: 1;
114}
115
116.cke_notification_message
117{
118 position: relative;
119 margin: 4px 23px 3px;
120 font-family: Arial, Helvetica, sans-serif;
121 font-size: 12px;
122 line-height: 18px;
123 z-index: 4;
124 text-overflow: ellipsis;
125 overflow: hidden;
126}
127
128.cke_notification_close
129{
130 background-image: url(images/close.png);
131 background-repeat: no-repeat;
132 background-position: 50%;
133 position: absolute;
134 cursor: pointer;
135 text-align: center;
136 height: 20px;
137 width: 20px;
138 top: 1px;
139 right: 1px;
140 padding: 0;
141 margin: 0;
142 z-index: 5;
143 opacity: 0.6;
144 filter: alpha(opacity = 60);
145}
146
147.cke_notification_close:hover
148{
149 opacity: 1;
150 filter: alpha(opacity = 100);
151}
152
153.cke_notification_close span
154{
155 display: none;
156}
157
158.cke_notification_warning a.cke_notification_close
159{
160 opacity: 0.8;
161 filter: alpha(opacity = 80);
162}
163
164.cke_notification_warning a.cke_notification_close:hover
165{
166 opacity: 1;
167 filter: alpha(opacity = 100);
168}
diff --git a/sources/skins/moono/panel.css b/sources/skins/moono/panel.css
new file mode 100644
index 0000000..e38702a
--- /dev/null
+++ b/sources/skins/moono/panel.css
@@ -0,0 +1,237 @@
1/*
2Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6/*
7panel.css (part of editor.css)
8================================
9
10Panels are floating elements that can hold different types of contents.
11The following are common uses of it:
12
13 - The element that toolbar combos display when opening them.
14 - The context menu.
15 - The list of items displayed by "menu buttons" (e.g. scayt).
16 - The panel shown when opening "panel buttons" (e.g. color buttons).
17
18Panel contents are wrapped into an iframe, so it is possible to have additional
19CSS loaded inside them (e.g. to have more accurate preview on the styles combo).
20
21The following is a visual representation of the outer elements of a panel:
22
23+-- .cke_panel(*) ---------------------+
24| +-- IFRAME.cke_panel_frame --------+ |
25| | +-- HTML.cke_panel_container --+ | |
26| | | +-- .cke_panel_block ------+ | | |
27| | | | | | | |
28| | | | (contents here) | | | |
29| | | | | | | |
30| | | +--------------------------+ | | |
31| | +------------------------------+ | |
32| +----------------------------------+ |
33+--------------------------------------+
34
35(*) All kinds of panel share the above structure. Menu panels adds the
36 .cke_menu_panel class to the outer element, while toolbar combos add the
37 .cke_combopanel class.
38
39This file also defines styles for panel lists (used by combos). For menu-like
40panel contents and color panels check menu.css and colorpanel.css.
41*/
42
43/* The box that holds an IFRAME. It's inserted into a host document and positioned
44 absolutely by the application. It floats above the host document/editor. */
45.cke_panel
46{
47 /* Restore the loading hide */
48 visibility: visible;
49 width: 120px;
50 height: 100px;
51 overflow: hidden;
52
53 background-color: #fff;
54 border: 1px solid #b6b6b6;
55 border-bottom-color: #999;
56
57 border-radius: 3px;
58
59 box-shadow: 0 0 3px rgba(0,0,0,.15);
60}
61
62/* This class represents panels which are used as context menus. */
63.cke_menu_panel
64{
65 padding: 0;
66 margin: 0;
67}
68
69/* This class represents panels which are used by rich combos. */
70.cke_combopanel
71{
72 width: 150px;
73 height: 170px;
74}
75
76/* The IFRAME the panel is wrapped into. */
77.cke_panel_frame
78{
79 width: 100%;
80 height: 100%;
81 font-size: 12px;
82
83 overflow: auto;
84 overflow-x: hidden;
85}
86
87/* The HTML document which is a direct descendant of the IFRAME */
88.cke_panel_container
89{
90 overflow-y: auto;
91 overflow-x: hidden;
92}
93
94/*
95Here we start the definition of panel lists (e.g. combo panels). The following
96is its visual representation:
97
98+-- .cke_panel_block -----------------+
99| +-- .cke_panel_grouptitle --------+ |
100| | | |
101| +---------------------------------+ |
102| +-- .cke_panel_list --------------+ |
103| | +-- .cke_panel_listItem ------+ | |
104| | | +-- a --------------------+ | | |
105| | | | +-- span -------------+ | | | |
106| | | | | | | | | |
107| | | | +---------------------+ | | | |
108| | | +-------------------------+ | | |
109| | +-----------------------------+ | |
110| | +-- .cke_panel_listItem ------+ | |
111| | | +-- a --------------------+ | | |
112| | | | +-- span -------------+ | | | |
113| | | | | | | | | |
114| | | | +---------------------+ | | | |
115| | | +-------------------------+ | | |
116| | +-----------------------------+ | |
117| | ... | |
118| +---------------------------------+ |
119+-------------------------------------+
120*/
121
122
123/* The list of panel items. */
124.cke_panel_list
125{
126 list-style-type: none;
127 margin: 3px;
128 padding: 0;
129 white-space: nowrap;
130}
131
132/* The item of .cke_panel_list */
133.cke_panel_listItem
134{
135 margin: 0;
136 padding-bottom: 1px;
137}
138
139/* The child of .cke_panel_listItem. These elements contain spans which are
140 to display a real name of the property which is visible for an end-user. */
141.cke_panel_listItem a
142{
143 padding: 3px 4px;
144 display: block;
145 border: 1px solid #fff;
146 color: inherit !important;
147 text-decoration: none;
148 overflow: hidden;
149 text-overflow: ellipsis;
150
151 border-radius: 2px;
152}
153
154/* IE6 */
155* html .cke_panel_listItem a
156{
157 width : 100%;
158
159 /* IE is not able to inherit the color, so we must force it to black */
160 color: #000;
161}
162
163/* IE7 */
164*:first-child+html .cke_panel_listItem a
165{
166 /* IE is not able to inherit the color, so we must force it to black */
167 color: #000;
168}
169
170.cke_panel_listItem.cke_selected a
171{
172 border: 1px solid #dedede;
173 background-color: #f2f2f2;
174
175 box-shadow: 0 0 2px rgba(0,0,0,.1) inset;
176}
177
178.cke_panel_listItem a:hover,
179.cke_panel_listItem a:focus,
180.cke_panel_listItem a:active
181{
182 border-color: #dedede;
183 background-color: #f2f2f2;
184
185 box-shadow: 0 0 2px rgba(0,0,0,.1) inset;
186}
187
188.cke_hc .cke_panel_listItem a
189{
190 border-style: none;
191}
192
193.cke_hc .cke_panel_listItem a:hover,
194.cke_hc .cke_panel_listItem a:focus,
195.cke_hc .cke_panel_listItem a:active
196{
197 border: 2px solid;
198 padding: 1px 2px;
199}
200
201/* The title of the entire panel which is visible on top of the list. */
202.cke_panel_grouptitle
203{
204 cursor: default;
205 font-size: 11px;
206 font-weight: bold;
207 white-space: nowrap;
208 margin: 0;
209 padding: 4px 6px;
210
211 color: #474747;
212 text-shadow: 0 1px 0 rgba(255,255,255,.75);
213 border-bottom: 1px solid #b6b6b6;
214
215 border-radius: 2px 2px 0 0;
216
217 box-shadow: 0 1px 0 #fff inset;
218
219 background: #cfd1cf;
220 background-image: linear-gradient(to bottom, #f5f5f5, #cfd1cf);
221 filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#f5f5f5', endColorstr='#cfd1cf');
222}
223
224/* The following styles set defaults of the elements used by the Paragraph
225 Format panel. */
226.cke_panel_listItem p,
227.cke_panel_listItem h1,
228.cke_panel_listItem h2,
229.cke_panel_listItem h3,
230.cke_panel_listItem h4,
231.cke_panel_listItem h5,
232.cke_panel_listItem h6,
233.cke_panel_listItem pre
234{
235 margin-top: 0px;
236 margin-bottom: 0px;
237}
diff --git a/sources/skins/moono/presets.css b/sources/skins/moono/presets.css
new file mode 100644
index 0000000..3f4881e
--- /dev/null
+++ b/sources/skins/moono/presets.css
@@ -0,0 +1,41 @@
1/*
2Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6/* "Source" button label */
7.cke_button__source_label,
8.cke_button__sourcedialog_label
9{
10 display: inline;
11}
12
13/* "Font Size" combo width */
14.cke_combo__fontsize .cke_combo_text
15{
16 width: 30px;
17}
18
19/* "Font Size" panel size */
20.cke_combopanel__fontsize
21{
22 width: 120px;
23}
24
25/* Editable regions */
26textarea.cke_source
27{
28 font-family: 'Courier New', Monospace;
29 font-size: small;
30 background-color: #fff;
31 white-space: pre-wrap;
32 border: none;
33 padding: 0;
34 margin: 0;
35 display: block;
36}
37
38.cke_wysiwyg_frame, .cke_wysiwyg_div
39{
40 background-color: #fff;
41}
diff --git a/sources/skins/moono/readme.md b/sources/skins/moono/readme.md
new file mode 100644
index 0000000..fc9a544
--- /dev/null
+++ b/sources/skins/moono/readme.md
@@ -0,0 +1,49 @@
1"Moono" Skin
2====================
3
4This skin has been chosen for the **default skin** of CKEditor 4.x, elected from the CKEditor
5[skin contest](http://ckeditor.com/blog/new_ckeditor_4_skin) and further shaped by
6the CKEditor team. "Moono" is maintained by the core developers.
7
8For more information about skins, please check the [CKEditor Skin SDK](http://docs.cksource.com/CKEditor_4.x/Skin_SDK)
9documentation.
10
11Features
12-------------------
13"Moono" is a monochromatic skin, which offers a modern look coupled with gradients and transparency.
14It comes with the following features:
15
16- Chameleon feature with brightness,
17- high-contrast compatibility,
18- graphics source provided in SVG.
19
20Directory Structure
21-------------------
22
23CSS parts:
24- **editor.css**: the main CSS file. It's simply loading several other files, for easier maintenance,
25- **mainui.css**: the file contains styles of entire editor outline structures,
26- **toolbar.css**: the file contains styles of the editor toolbar space (top),
27- **richcombo.css**: the file contains styles of the rich combo ui elements on toolbar,
28- **panel.css**: the file contains styles of the rich combo drop-down, it's not loaded
29until the first panel open up,
30- **elementspath.css**: the file contains styles of the editor elements path bar (bottom),
31- **menu.css**: the file contains styles of all editor menus including context menu and button drop-down,
32it's not loaded until the first menu open up,
33- **dialog.css**: the CSS files for the dialog UI, it's not loaded until the first dialog open,
34- **reset.css**: the file defines the basis of style resets among all editor UI spaces,
35- **preset.css**: the file defines the default styles of some UI elements reflecting the skin preference,
36- **editor_XYZ.css** and **dialog_XYZ.css**: browser specific CSS hacks.
37
38Other parts:
39- **skin.js**: the only JavaScript part of the skin that registers the skin, its browser specific files and its icons and defines the Chameleon feature,
40- **icons/**: contains all skin defined icons,
41- **images/**: contains a fill general used images,
42- **dev/**: contains SVG source of the skin icons.
43
44License
45-------
46
47Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
48
49For licensing, see LICENSE.md or [http://ckeditor.com/license](http://ckeditor.com/license)
diff --git a/sources/skins/moono/reset.css b/sources/skins/moono/reset.css
new file mode 100644
index 0000000..169308d
--- /dev/null
+++ b/sources/skins/moono/reset.css
@@ -0,0 +1,115 @@
1/*
2Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6/*
7reset.css (part of editor.css)
8================================
9
10This file holds the "reset" requirements of CKEditor, as well as define the
11default interface styles.
12
13CKEditor includes two main "reset" class names in the DOM structure created for
14editors:
15
16 * .cke_reset: Intended to reset a specific element, but not its children.
17 Because of this, only styles that will not be inherited can be defined.
18
19 * .cke_reset_all: Intended to reset not only the element holding it, but
20 also its child elements.
21
22To understand why "reset" is needed, check the CKEditor Skin SDK:
23http://docs.cksource.com/CKEditor_4.x/Skin_SDK/Reset
24*/
25
26/* Reset for single elements, not their children. */
27.cke_reset
28{
29 /* Do not include inheritable rules here. */
30 margin: 0;
31 padding: 0;
32 border: 0;
33 background: transparent;
34 text-decoration: none;
35 width: auto;
36 height: auto;
37 vertical-align: baseline;
38 box-sizing: content-box;
39 position: static;
40 transition: none;
41}
42
43/* Reset for elements and their children. */
44.cke_reset_all, .cke_reset_all *,
45.cke_reset_all a, .cke_reset_all textarea
46{
47 /* The following must be identical to .cke_reset. */
48 margin: 0;
49 padding: 0;
50 border: 0;
51 background: transparent;
52 text-decoration: none;
53 width: auto;
54 height: auto;
55 vertical-align: baseline;
56 box-sizing: content-box;
57 position: static;
58 transition: none;
59
60 /* These are rule inherited by all children elements. */
61 border-collapse: collapse;
62 font: normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;
63 color: #000;
64 text-align: left;
65 white-space: nowrap;
66 cursor: auto;
67 float: none;
68}
69
70.cke_reset_all .cke_rtl *
71{
72 text-align: right;
73}
74
75/* Defaults for some elements. */
76
77.cke_reset_all iframe
78{
79 vertical-align: inherit; /** For IE */
80}
81
82.cke_reset_all textarea
83{
84 white-space: pre-wrap;
85}
86
87.cke_reset_all textarea,
88.cke_reset_all input[type="text"],
89.cke_reset_all input[type="password"]
90{
91 cursor: text;
92}
93
94.cke_reset_all textarea[disabled],
95.cke_reset_all input[type="text"][disabled],
96.cke_reset_all input[type="password"][disabled]
97{
98 cursor: default;
99}
100
101.cke_reset_all fieldset
102{
103 padding: 10px;
104 border: 2px groove #E0DFE3;
105}
106
107.cke_reset_all select
108{
109 box-sizing: border-box;
110}
111
112.cke_reset_all table
113{
114 table-layout: auto;
115}
diff --git a/sources/skins/moono/richcombo.css b/sources/skins/moono/richcombo.css
new file mode 100644
index 0000000..103225e
--- /dev/null
+++ b/sources/skins/moono/richcombo.css
@@ -0,0 +1,210 @@
1/*
2Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6/*
7richcombo.css (part of editor.css)
8=================================
9
10This file holds the style set of the "Rich Combo" widget which is commonly used
11in the toolbar. It doesn't, however, styles the panel that is displayed when
12clicking on the combo, which is instead styled by panel.css.
13
14The visual representation of a rich combo widget looks as follows:
15
16+-- .cke_combo----------------------------------------------------------------------+
17| +-- .cke_combo_label --+ +-- .cke_combo_button ---------------------------------+ |
18| | | | +-- .cke_combo_text --+ +-- .cke_combo_open -------+ | |
19| | | | | | | +-- .cke_combo_arrow --+ | | |
20| | | | | | | | | | | |
21| | | | | | | +----------------------+ | | |
22| | | | +---------------------+ +--------------------------+ | |
23| +----------------------+ +------------------------------------------------------+ |
24+-----------------------------------------------------------------------------------+
25*/
26
27/* The box that hold the entire combo widget */
28.cke_combo
29{
30 display: inline-block;
31 float: left;
32}
33
34.cke_rtl .cke_combo
35{
36 float: right;
37}
38
39.cke_hc .cke_combo
40{
41 margin-top: -2px;
42}
43
44/* The label of the combo widget. It is invisible by default, yet
45 it's important for semantics and accessibility. */
46.cke_combo_label
47{
48 display: none;
49 float: left;
50 line-height: 26px;
51 vertical-align: top;
52 margin-right: 5px;
53}
54
55.cke_rtl .cke_combo_label
56{
57 float: right;
58 margin-left: 5px;
59 margin-right: 0;
60}
61
62/* The container for combo text and arrow. */
63a.cke_combo_button
64{
65 cursor: default;
66 display: inline-block;
67 float: left;
68 margin: 0 6px 5px 0;
69
70 border: 1px solid #a6a6a6;
71 border-bottom-color: #979797;
72
73 border-radius: 3px;
74
75 box-shadow: 0 1px 0 rgba(255,255,255,.5), 0 0 2px rgba(255,255,255,.15) inset, 0 1px 0 rgba(255,255,255,.15) inset;
76
77 background: #e4e4e4;
78 background-image: linear-gradient(to bottom, #ffffff, #e4e4e4);
79 filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#ffffff', endColorstr='#e4e4e4');
80}
81
82/* Different states of the container. */
83.cke_combo_off a.cke_combo_button:hover,
84.cke_combo_off a.cke_combo_button:focus
85{
86 background: #ccc;
87 background-image: linear-gradient(to bottom, #f2f2f2, #ccc);
88 filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#f2f2f2', endColorstr='#cccccc');
89
90 outline: none;
91}
92
93.cke_combo_off a.cke_combo_button:active,
94.cke_combo_on a.cke_combo_button
95{
96 border: 1px solid #777;
97
98 box-shadow: 0 1px 0 rgba(255,255,255,.5), 0 1px 5px rgba(0,0,0,.6) inset;
99
100 background: #b5b5b5;
101 background-image: linear-gradient(to bottom, #aaa, #cacaca);
102 filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#aaaaaa', endColorstr='#cacaca');
103}
104
105.cke_combo_on a.cke_combo_button:hover,
106.cke_combo_on a.cke_combo_button:focus,
107.cke_combo_on a.cke_combo_button:active
108{
109 box-shadow: 0 1px 6px rgba(0,0,0,.7) inset, 0 1px 0 rgba(0,0,0,.2);
110}
111
112.cke_rtl .cke_combo_button
113{
114 float: right;
115 margin-left: 5px;
116 margin-right: 0;
117}
118
119.cke_hc a.cke_combo_button
120{
121 padding: 3px;
122}
123
124.cke_hc .cke_combo_on a.cke_combo_button,
125.cke_hc .cke_combo_off a.cke_combo_button:hover,
126.cke_hc .cke_combo_off a.cke_combo_button:focus,
127.cke_hc .cke_combo_off a.cke_combo_button:active
128{
129 border-width: 3px;
130 padding: 1px;
131}
132
133/* The label that shows the current value of the rich combo.
134 By default, it holds the name of the property.
135 See: .cke_combo_inlinelabel */
136.cke_combo_text
137{
138 line-height: 26px;
139 padding-left: 10px;
140 text-overflow: ellipsis;
141 overflow: hidden;
142 float: left;
143 cursor: default;
144 color: #474747;
145 text-shadow: 0 1px 0 rgba(255,255,255,.5);
146 width: 60px;
147}
148
149.cke_rtl .cke_combo_text
150{
151 float: right;
152 text-align: right;
153 padding-left: 0;
154 padding-right: 10px;
155}
156
157.cke_hc .cke_combo_text
158{
159 line-height: 18px;
160 font-size: 12px;
161}
162
163/* The handler which opens the panel of rich combo properties.
164 It holds an arrow as a visual indicator. */
165.cke_combo_open
166{
167 cursor: default;
168 display: inline-block;
169 font-size: 0;
170 height: 19px;
171 line-height: 17px;
172 margin: 1px 7px 1px;
173 width: 5px;
174}
175
176.cke_hc .cke_combo_open
177{
178 height: 12px;
179}
180
181/* The arrow which is displayed inside of the .cke_combo_open handler. */
182.cke_combo_arrow
183{
184 cursor: default;
185 margin: 11px 0 0;
186 float: left;
187
188 /* Pure CSS Arrow */
189 height: 0;
190 width: 0;
191 font-size: 0;
192 border-left: 3px solid transparent;
193 border-right: 3px solid transparent;
194 border-top: 3px solid #474747;
195}
196
197.cke_hc .cke_combo_arrow
198{
199 font-size: 10px;
200 width: auto;
201 border: 0;
202 margin-top: 3px;
203}
204
205/* Disabled combo button styles. */
206.cke_combo_disabled .cke_combo_inlinelabel,
207.cke_combo_disabled .cke_combo_open
208{
209 opacity: 0.3;
210}
diff --git a/sources/skins/moono/skin.js b/sources/skins/moono/skin.js
new file mode 100644
index 0000000..6dbdaa9
--- /dev/null
+++ b/sources/skins/moono/skin.js
@@ -0,0 +1,319 @@
1/**
2 * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3 * For licensing, see LICENSE.md or http://ckeditor.com/license
4 */
5
6/*
7skin.js
8=========
9
10In this file we interact with the CKEditor JavaScript API to register the skin
11and enable additional skin related features.
12
13The level of complexity of this file depends on the features available in the
14skin. There is only one mandatory line of code to be included here, which is
15setting CKEDITOR.skin.name. All the rest is optional, but recommended to be
16implemented as they make higher quality skins.
17
18For this skin, the following tasks are achieved in this file:
19
20 1. Register the skin.
21 2. Register browser specific skin files.
22 3. Define the "Chameleon" feature.
23 4. Register the skin icons, to have them used on the development version of
24 the skin.
25*/
26
27// 1. Register the skin
28// ----------------------
29// The CKEDITOR.skin.name property must be set to the skin name. This is a
30// lower-cased name, which must match the skin folder name as well as the value
31// used on config.skin to tell the editor to use the skin.
32//
33// This is the only mandatory property to be defined in this file.
34CKEDITOR.skin.name = 'moono';
35
36// 2. Register browser specific skin files
37// -----------------------------------------
38// (http://docs.cksource.com/CKEditor_4.x/Skin_SDK/Browser_Hacks)
39//
40// To help implementing browser specific "hacks" to the skin files and have it
41// easy to maintain, it is possible to have dedicated files for such browsers,
42// for both the main skin CSS files: editor.css and dialog.css.
43//
44// The browser files must be named after the main file names, appended by an
45// underscore and the browser name (e.g. editor_ie.css, dialog_ie8.css).
46//
47// The accepted browser names must match the CKEDITOR.env properties. The most
48// common names are: ie, webkit and gecko. Check the documentation for the complete
49// list:
50// http://docs.ckeditor.com/#!/api/CKEDITOR.env
51//
52// Internet explorer is an expection and the browser version is also accepted
53// (ie7, ie8, ie9, ie10), as well as a special name for IE in Quirks mode (iequirks).
54//
55// The available browser specific files must be set separately for editor.css
56// and dialog.css.
57CKEDITOR.skin.ua_editor = 'ie,iequirks,ie7,ie8,gecko';
58CKEDITOR.skin.ua_dialog = 'ie,iequirks,ie7,ie8';
59
60// 3. Define the "Chameleon" feature
61// -----------------------------------
62// (http://docs.cksource.com/CKEditor_4.x/Skin_SDK/Chameleon)
63//
64// "Chameleon" is a unique feature available in CKEditor. It makes it possible
65// to end users to specify which color to use as the basis for the editor UI.
66// It is enough to set config.uiColor to any color value and voila, the UI is
67// colored.
68//
69// The only detail here is that the skin itself must be compatible with the
70// Chameleon feature. That's because the skin CSS files are the responsible to
71// apply colors in the UI and each skin do that in different way and on
72// different places.
73//
74// Implementing the Chameleon feature requires a bit of JavaScript programming.
75// The CKEDITOR.skin.chameleon function must be defined. It must return the CSS
76// "template" to be used to change the color of a specific CKEditor instance
77// available in the page. When a color change is required, this template is
78// appended to the page holding the editor, overriding styles defined in the
79// skin files.
80//
81// The "$color" placeholder can be used in the returned string. It'll be
82// replaced with the desired color.
83CKEDITOR.skin.chameleon = ( function() {
84 // This method can be used to adjust colour brightness of various element.
85 // Colours are accepted in 7-byte hex format, for example: #00ff00.
86 // Brightness ratio must be a float number within [-1, 1],
87 // where -1 is black, 1 is white and 0 is the original colour.
88 var colorBrightness = ( function() {
89 function channelBrightness( channel, ratio ) {
90 var brighten = ratio < 0 ? (
91 0 | channel * ( 1 + ratio )
92 ) : (
93 0 | channel + ( 255 - channel ) * ratio
94 );
95
96 return ( '0' + brighten.toString( 16 ) ).slice( -2 );
97 }
98
99 return function( hexColor, ratio ) {
100 var channels = hexColor.match( /[^#]./g );
101
102 for ( var i = 0 ; i < 3 ; i++ )
103 channels[ i ] = channelBrightness( parseInt( channels[ i ], 16 ), ratio );
104
105 return '#' + channels.join( '' );
106 };
107 } )(),
108
109 // Use this function just to avoid having to repeat all these rules on
110 // several places of our template.
111 verticalGradient = ( function() {
112 var template = new CKEDITOR.template( 'background:#{to};' +
113 'background-image:linear-gradient(to bottom,{from},{to});' +
114 'filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr=\'{from}\',endColorstr=\'{to}\');' );
115
116 return function( from, to ) {
117 return template.output( { from: from, to: to } );
118 };
119 } )(),
120
121 // Style templates for various user interface parts:
122 // * Default editor template.
123 // * Default panel template.
124 templates = {
125 editor: new CKEDITOR.template(
126 '{id}.cke_chrome [border-color:{defaultBorder};] ' +
127 '{id} .cke_top [ ' +
128 '{defaultGradient}' +
129 'border-bottom-color:{defaultBorder};' +
130 '] ' +
131 '{id} .cke_bottom [' +
132 '{defaultGradient}' +
133 'border-top-color:{defaultBorder};' +
134 '] ' +
135 '{id} .cke_resizer [border-right-color:{ckeResizer}] ' +
136
137 // Dialogs.
138 '{id} .cke_dialog_title [' +
139 '{defaultGradient}' +
140 'border-bottom-color:{defaultBorder};' +
141 '] ' +
142 '{id} .cke_dialog_footer [' +
143 '{defaultGradient}' +
144 'outline-color:{defaultBorder};' +
145 'border-top-color:{defaultBorder};' + // IE7 doesn't use outline.
146 '] ' +
147 '{id} .cke_dialog_tab [' +
148 '{lightGradient}' +
149 'border-color:{defaultBorder};' +
150 '] ' +
151 '{id} .cke_dialog_tab:hover [' +
152 '{mediumGradient}' +
153 '] ' +
154 '{id} .cke_dialog_contents [' +
155 'border-top-color:{defaultBorder};' +
156 '] ' +
157 '{id} .cke_dialog_tab_selected, {id} .cke_dialog_tab_selected:hover [' +
158 'background:{dialogTabSelected};' +
159 'border-bottom-color:{dialogTabSelectedBorder};' +
160 '] ' +
161 '{id} .cke_dialog_body [' +
162 'background:{dialogBody};' +
163 'border-color:{defaultBorder};' +
164 '] ' +
165
166 // Toolbars, buttons.
167 '{id} .cke_toolgroup [' +
168 '{lightGradient}' +
169 'border-color:{defaultBorder};' +
170 '] ' +
171 '{id} a.cke_button_off:hover, {id} a.cke_button_off:focus, {id} a.cke_button_off:active [' +
172 '{mediumGradient}' +
173 '] ' +
174 '{id} .cke_button_on [' +
175 '{ckeButtonOn}' +
176 '] ' +
177 '{id} .cke_toolbar_separator [' +
178 'background-color: {ckeToolbarSeparator};' +
179 '] ' +
180
181 // Combo buttons.
182 '{id} .cke_combo_button [' +
183 'border-color:{defaultBorder};' +
184 '{lightGradient}' +
185 '] ' +
186 '{id} a.cke_combo_button:hover, {id} a.cke_combo_button:focus, {id} .cke_combo_on a.cke_combo_button [' +
187 'border-color:{defaultBorder};' +
188 '{mediumGradient}' +
189 '] ' +
190
191 // Elementspath.
192 '{id} .cke_path_item [' +
193 'color:{elementsPathColor};' +
194 '] ' +
195 '{id} a.cke_path_item:hover, {id} a.cke_path_item:focus, {id} a.cke_path_item:active [' +
196 'background-color:{elementsPathBg};' +
197 '] ' +
198
199 '{id}.cke_panel [' +
200 'border-color:{defaultBorder};' +
201 '] '
202 ),
203 panel: new CKEDITOR.template(
204 // Panel drop-downs.
205 '.cke_panel_grouptitle [' +
206 '{lightGradient}' +
207 'border-color:{defaultBorder};' +
208 '] ' +
209
210 // Context menus.
211 '.cke_menubutton_icon [' +
212 'background-color:{menubuttonIcon};' +
213 '] ' +
214 '.cke_menubutton:hover .cke_menubutton_icon, .cke_menubutton:focus .cke_menubutton_icon, .cke_menubutton:active .cke_menubutton_icon [' +
215 'background-color:{menubuttonIconHover};' +
216 '] ' +
217 '.cke_menuseparator [' +
218 'background-color:{menubuttonIcon};' +
219 '] ' +
220
221 // Color boxes.
222 'a:hover.cke_colorbox, a:focus.cke_colorbox, a:active.cke_colorbox [' +
223 'border-color:{defaultBorder};' +
224 '] ' +
225 'a:hover.cke_colorauto, a:hover.cke_colormore, a:focus.cke_colorauto, a:focus.cke_colormore, a:active.cke_colorauto, a:active.cke_colormore [' +
226 'background-color:{ckeColorauto};' +
227 'border-color:{defaultBorder};' +
228 '] '
229 )
230 };
231
232 return function( editor, part ) {
233 var uiColor = editor.uiColor,
234 // The following are CSS styles used in templates.
235 // Styles are generated according to current editor.uiColor.
236 templateStyles = {
237 // CKEditor instances have a unique ID, which is used as class name into
238 // the outer container of the editor UI (e.g. ".cke_1").
239 //
240 // The Chameleon feature is available for each CKEditor instance,
241 // independently. Because of this, we need to prefix all CSS selectors with
242 // the unique class name of the instance.
243 id: '.' + editor.id,
244
245 // These styles are used by various UI elements.
246 defaultBorder: colorBrightness( uiColor, -0.1 ),
247 defaultGradient: verticalGradient( colorBrightness( uiColor, 0.9 ), uiColor ),
248 lightGradient: verticalGradient( colorBrightness( uiColor, 1 ), colorBrightness( uiColor, 0.7 ) ),
249 mediumGradient: verticalGradient( colorBrightness( uiColor, 0.8 ), colorBrightness( uiColor, 0.5 ) ),
250
251 // These are for specific UI elements.
252 ckeButtonOn: verticalGradient( colorBrightness( uiColor, 0.6 ), colorBrightness( uiColor, 0.7 ) ),
253 ckeResizer: colorBrightness( uiColor, -0.4 ),
254 ckeToolbarSeparator: colorBrightness( uiColor, 0.5 ),
255 ckeColorauto: colorBrightness( uiColor, 0.8 ),
256 dialogBody: colorBrightness( uiColor, 0.7 ),
257 // Use gradient instead of simple hex to avoid further filter resetting in IE.
258 dialogTabSelected: verticalGradient( '#FFFFFF', '#FFFFFF' ),
259 dialogTabSelectedBorder: '#FFF',
260 elementsPathColor: colorBrightness( uiColor, -0.6 ),
261 elementsPathBg: uiColor,
262 menubuttonIcon: colorBrightness( uiColor, 0.5 ),
263 menubuttonIconHover: colorBrightness( uiColor, 0.3 )
264 };
265
266 return templates[ part ]
267 .output( templateStyles )
268 .replace( /\[/g, '{' ) // Replace brackets with braces.
269 .replace( /\]/g, '}' );
270 };
271} )();
272
273// %REMOVE_START%
274
275// 4. Register the skin icons for development purposes only
276// ----------------------------------------------------------
277// (http://docs.cksource.com/CKEditor_4.x/Skin_SDK/Icons)
278//
279// Note: As "moono" is the default CKEditor skin, it provides no custom icons,
280// thus this code is commented out.
281//
282// This code is here just to make the skin work fully when using its "source"
283// version. Without this, the skin will still work, but its icons will not be
284// used (again, on source version only).
285//
286// This block of code is not necessary on the release version of the skin.
287// Because of this it is very important to include it inside the REMOVE_START
288// and REMOVE_END comment markers, so the skin builder will properly clean
289// things up.
290//
291// If a required icon is not available here, the plugin defined icon will be
292// used instead. This means that a skin is not required to provide all icons.
293// Actually, it is not required to provide icons at all.
294//
295// (function() {
296// // The available icons. This list must match the file names (without
297// // extension) available inside the "icons" folder.
298// var icons = ( 'about,anchor-rtl,anchor,bgcolor,bidiltr,bidirtl,blockquote,' +
299// 'bold,bulletedlist-rtl,bulletedlist,button,checkbox,copy-rtl,copy,' +
300// 'creatediv,cut-rtl,cut,docprops-rtl,docprops,find-rtl,find,flash,form,' +
301// 'hiddenfield,horizontalrule,icons,iframe,image,imagebutton,indent-rtl,' +
302// 'indent,italic,justifyblock,justifycenter,justifyleft,justifyright,' +
303// 'link,maximize,newpage-rtl,newpage,numberedlist-rtl,numberedlist,' +
304// 'outdent-rtl,outdent,pagebreak-rtl,pagebreak,paste-rtl,paste,' +
305// 'pastefromword-rtl,pastefromword,pastetext-rtl,pastetext,preview-rtl,' +
306// 'preview,print,radio,redo-rtl,redo,removeformat,replace,save,scayt,' +
307// 'select-rtl,select,selectall,showblocks-rtl,showblocks,smiley,' +
308// 'source-rtl,source,specialchar,spellchecker,strike,subscript,' +
309// 'superscript,table,templates-rtl,templates,textarea-rtl,textarea,' +
310// 'textcolor,textfield-rtl,textfield,uicolor,underline,undo-rtl,undo,unlink' ).split( ',' );
311//
312// var iconsFolder = CKEDITOR.getUrl( CKEDITOR.skin.path() + 'icons/' + ( CKEDITOR.env.hidpi ? 'hidpi/' : '' ) );
313//
314// for ( var i = 0; i < icons.length; i++ ) {
315// CKEDITOR.skin.addIcon( icons[ i ], iconsFolder + icons[ i ] + '.png' );
316// }
317// })();
318
319// %REMOVE_END%
diff --git a/sources/skins/moono/toolbar.css b/sources/skins/moono/toolbar.css
new file mode 100644
index 0000000..013afa0
--- /dev/null
+++ b/sources/skins/moono/toolbar.css
@@ -0,0 +1,387 @@
1/*
2Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5
6/*
7toolbar.css (part of editor.css)
8==================================
9
10This files styles the CKEditor toolbar and its buttons. For toolbar combo
11styles, check richcombo.css.
12
13The toolbar is rendered as a big container (called toolbox), which contains
14smaller "toolbars". Each toolbar represents a group of items that cannot be
15separated. The following is the visual representation of the toolbox.
16
17+-- .cke_toolbox ----------------------------------------------------------+
18| +-- .cke_toolbar --+ +-- .cke_toolbar --+ ... +-- .cke_toolbar_break --+ |
19| | | | | | | |
20| +------------------+ +------------------+ +------------------------+ |
21| +-- .cke_toolbar --+ +-- .cke_toolbar --+ ... |
22| | | | | |
23| +------------------+ +------------------+ |
24+--------------------------------------------------------------------------+
25
26The following instead is the visual representation of a single toolbar:
27
28+-- .cke_toolbar ----------------------------------------------------------------+
29| +-- .cke_toolbar_start --+ +-- .cke_toolgroup (*) --+ +-- .cke_toolbar_end --+ |
30| | | | | | | |
31| +------------------------+ +------------------------+ +----------------------+ |
32+--------------------------------------------------------------------------------+
33(*) .cke_toolgroup is available only when the toolbar items can be grouped
34 (buttons). If the items can't be group (combos), this box is not available
35 and the items are rendered straight in that place.
36
37This file also styles toolbar buttons, which are rendered inside the above
38.cke_toolgroup containers. This is the visual representation of a button:
39
40+-- .cke_button -------------------------------------+
41| +-- .cke_button_icon --+ +-- .cke_button_label --+ |
42| | | | | |
43| +----------------------+ +-----------------------+ |
44+----------------------------------------------------+
45
46Special outer level classes used in this file:
47
48 .cke_hc: Available when the editor is rendered on "High Contrast".
49 .cke_rtl: Available when the editor UI is on RTL.
50*/
51
52/* The box that holds each toolbar. */
53.cke_toolbar
54{
55 float: left;
56}
57
58.cke_rtl .cke_toolbar
59{
60 float: right;
61}
62
63/* The box that holds buttons. */
64.cke_toolgroup
65{
66 float: left;
67 margin: 0 6px 5px 0;
68 border: 1px solid #a6a6a6;
69 border-bottom-color: #979797;
70
71 border-radius: 3px;
72
73 box-shadow: 0 1px 0 rgba(255,255,255,.5), 0 0 2px rgba(255,255,255,.15) inset, 0 1px 0 rgba(255,255,255,.15) inset;
74
75 background: #e4e4e4;
76 background-image: linear-gradient(to bottom, #ffffff, #e4e4e4);
77 filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#ffffff', endColorstr='#e4e4e4');
78}
79
80.cke_hc .cke_toolgroup
81{
82 border: 0;
83 margin-right: 10px;
84 margin-bottom: 10px;
85}
86
87.cke_rtl .cke_toolgroup
88{
89 float: right;
90 margin-left: 6px;
91 margin-right: 0;
92}
93
94/* A toolbar button . */
95a.cke_button
96{
97 display: inline-block;
98 height: 18px;
99 padding: 4px 6px;
100 outline: none;
101 cursor: default;
102 float: left;
103 border: 0;
104}
105
106.cke_ltr .cke_button:last-child,
107.cke_rtl .cke_button:first-child
108{
109 /* Don't distort parent's rounded border. */
110 border-radius: 0 2px 2px 0;
111}
112
113.cke_ltr .cke_button:first-child,
114.cke_rtl .cke_button:last-child
115{
116 /* Don't distort parent's rounded border. */
117 border-radius: 2px 0 0 2px;
118}
119
120.cke_rtl .cke_button
121{
122 float: right;
123}
124
125.cke_hc .cke_button
126{
127 border: 1px solid black;
128
129 /* Compensate the added border */
130 padding: 3px 5px;
131 margin: -2px 4px 0 -2px;
132}
133
134/* This class is applied to the button when it is "active" (pushed).
135 This style indicates that the feature associated with the button is active
136 i.e. currently writing in bold or when spell checking is enabled. */
137a.cke_button_on
138{
139 box-shadow: 0 1px 5px rgba(0,0,0,.6) inset, 0 1px 0 rgba(0,0,0,.2);
140
141 background: #b5b5b5;
142 background-image: linear-gradient(to bottom, #aaa, #cacaca);
143 filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#aaaaaa', endColorstr='#cacaca');
144}
145
146.cke_hc .cke_button_on,
147.cke_hc a.cke_button_off:hover,
148.cke_hc a.cke_button_off:focus,
149.cke_hc a.cke_button_off:active,
150.cke_hc a.cke_button_disabled:hover,
151.cke_hc a.cke_button_disabled:focus,
152.cke_hc a.cke_button_disabled:active
153{
154 border-width: 3px;
155
156 /* Compensate the border change */
157 padding: 1px 3px;
158}
159
160/* This class is applied to the button when the feature associated with the
161 button cannot be used (grayed-out).
162 i.e. paste button remains disabled when there is nothing in the clipboard to
163 be pasted. */
164.cke_button_disabled .cke_button_icon
165{
166 opacity: 0.3;
167}
168
169.cke_hc .cke_button_disabled
170{
171 opacity: 0.5;
172}
173
174a.cke_button_on:hover,
175a.cke_button_on:focus,
176a.cke_button_on:active
177{
178 box-shadow: 0 1px 6px rgba(0,0,0,.7) inset, 0 1px 0 rgba(0,0,0,.2);
179}
180
181a.cke_button_off:hover,
182a.cke_button_off:focus,
183a.cke_button_off:active,
184a.cke_button_disabled:hover,
185a.cke_button_disabled:focus,
186a.cke_button_disabled:active
187{
188 box-shadow: 0 0 1px rgba(0,0,0,.3) inset;
189
190 background: #ccc;
191 background-image: linear-gradient(to bottom, #f2f2f2, #ccc);
192 filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#f2f2f2', endColorstr='#cccccc');
193}
194
195/* The icon which is a visual representation of the button. */
196.cke_button_icon
197{
198 cursor: inherit;
199 background-repeat: no-repeat;
200 margin-top: 1px;
201 width: 16px;
202 height: 16px;
203 float: left;
204 display: inline-block;
205}
206
207.cke_rtl .cke_button_icon
208{
209 float: right;
210}
211
212.cke_hc .cke_button_icon
213{
214 display: none;
215}
216
217/* The label of the button that stores the name of the feature. By default,
218 labels are invisible. They can be revealed on demand though. */
219.cke_button_label
220{
221 display: none;
222 padding-left: 3px;
223 margin-top: 1px;
224 line-height: 17px;
225 vertical-align: middle;
226 float: left;
227 cursor: default;
228 color: #474747;
229 text-shadow: 0 1px 0 rgba(255,255,255,.5);
230}
231
232.cke_rtl .cke_button_label
233{
234 padding-right: 3px;
235 padding-left: 0;
236 float: right;
237}
238
239.cke_hc .cke_button_label
240{
241 padding: 0;
242 display: inline-block;
243 font-size: 12px;
244}
245
246/* The small arrow available on buttons that can be expanded
247 (e.g. the color buttons). */
248.cke_button_arrow
249{
250 /* Arrow in CSS */
251 display: inline-block;
252 margin: 8px 0 0 1px;
253 width: 0;
254 height: 0;
255 cursor: default;
256 vertical-align: top;
257 border-left: 3px solid transparent;
258 border-right: 3px solid transparent;
259 border-top: 3px solid #474747;
260}
261
262.cke_rtl .cke_button_arrow
263{
264 margin-right: 5px;
265 margin-left: 0;
266}
267
268.cke_hc .cke_button_arrow
269{
270 font-size: 10px;
271 margin: 3px -2px 0 3px;
272 width: auto;
273 border: 0;
274}
275
276/* The vertical separator which is used within a single toolbar to split
277 buttons into sub-groups. */
278.cke_toolbar_separator
279{
280 float: left;
281 background-color: #c0c0c0;
282 background-color: rgba(0,0,0,.2);
283 margin: 5px 2px 0;
284 height: 18px;
285 width: 1px;
286
287 box-shadow: 1px 0 1px rgba(255,255,255,.5);
288}
289
290.cke_rtl .cke_toolbar_separator
291{
292 float: right;
293
294 box-shadow: -1px 0 1px rgba(255,255,255,.1);
295}
296
297.cke_hc .cke_toolbar_separator
298{
299 width: 0;
300 border-left: 1px solid;
301 margin: 1px 5px 0 0px;
302}
303
304/* The dummy element that breaks toolbars.
305 Once it is placed, the very next toolbar is moved to the new row. */
306.cke_toolbar_break
307{
308 display: block;
309 clear: left;
310}
311
312.cke_rtl .cke_toolbar_break
313{
314 clear: right;
315}
316
317/* The button, which when clicked hides (collapses) all the toolbars. */
318a.cke_toolbox_collapser
319{
320 width: 12px;
321 height: 11px;
322 float: right;
323 margin: 11px 0 0;
324 font-size: 0;
325 cursor: default;
326 text-align: center;
327
328 border: 1px solid #a6a6a6;
329 border-bottom-color: #979797;
330
331 border-radius: 3px;
332
333 box-shadow: 0 1px 0 rgba(255,255,255,.5), 0 0 2px rgba(255,255,255,.15) inset, 0 1px 0 rgba(255,255,255,.15) inset;
334
335 background: #e4e4e4;
336 background-image: linear-gradient(to bottom, #ffffff, #e4e4e4);
337 filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#ffffff', endColorstr='#e4e4e4');
338}
339
340.cke_toolbox_collapser:hover
341{
342 background: #ccc;
343 background-image: linear-gradient(to bottom, #f2f2f2, #ccc);
344 filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#f2f2f2', endColorstr='#cccccc');
345}
346
347.cke_toolbox_collapser.cke_toolbox_collapser_min
348{
349 margin: 0 2px 4px;
350}
351
352.cke_rtl .cke_toolbox_collapser
353{
354 float: left;
355}
356
357/* The CSS arrow, which belongs to the toolbar collapser. */
358.cke_toolbox_collapser .cke_arrow
359{
360 display: inline-block;
361
362 /* Pure CSS Arrow */
363 height: 0;
364 width: 0;
365 font-size: 0;
366 margin-top: 1px;
367 border-left: 3px solid transparent;
368 border-right: 3px solid transparent;
369 border-bottom: 3px solid #474747;
370 border-top: 3px solid transparent;
371}
372
373.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow
374{
375 margin-top: 4px;
376 border-bottom-color: transparent;
377 border-top-color: #474747;
378}
379
380.cke_hc .cke_toolbox_collapser .cke_arrow
381{
382 font-size: 8px;
383 width: auto;
384 border: 0;
385 margin-top: 0;
386 margin-right: 2px;
387}