Merge lp:~kaijanmaki/unity-action-api/no-hud-update into lp:~unity-team/unity-action-api/nohud

Proposed by Antti Kaijanmäki
Status: Merged
Approved by: Antti Kaijanmäki
Approved revision: 24
Merged at revision: 24
Proposed branch: lp:~kaijanmaki/unity-action-api/no-hud-update
Merge into: lp:~unity-team/unity-action-api/nohud
Diff against target: 18371 lines (+16697/-705)
74 files modified
.bzr-builddeb/default.conf (+2/-0)
CMakeLists.txt (+12/-3)
debian/changelog (+5/-1)
debian/control (+41/-30)
debian/copyright (+1/-7)
debian/libunity-action-qt1-dev.install (+2/-1)
debian/rules (+6/-21)
debian/unity-action-doc.install (+1/-1)
documentation/CMakeLists.txt (+1/-1)
documentation/cpp/CMakeLists.txt (+7/-0)
documentation/cpp/Doxyfile.in (+10/-9)
documentation/cpp/css/base.css (+638/-0)
documentation/cpp/css/qtquick.css (+772/-0)
documentation/cpp/css/reset.css (+8/-0)
documentation/cpp/css/scratch.css (+61/-0)
documentation/cpp/pages/context.dox (+61/-0)
documentation/cpp/pages/future-plans.dox (+29/-0)
documentation/cpp/pages/mainpage.dox (+36/-0)
documentation/cpp/pages/offline-actions.dox (+31/-0)
documentation/cpp/pages/platform-integration.dox (+15/-0)
documentation/cpp/pages/preview-actions.dox (+62/-0)
documentation/cpp/pages/using-cpp.dox (+23/-0)
documentation/cpp/ubuntu-appdev-site-footer.html (+53/-0)
documentation/cpp/ubuntu-appdev-site-header.html (+35/-0)
documentation/images/context_overview.svg (+2851/-0)
documentation/images/dots.svg (+1313/-0)
documentation/images/multiple_context.svg (+2943/-0)
documentation/images/platform_integration.svg (+2819/-0)
documentation/images/preview_action_signals.svg (+3110/-0)
documentation/qml/CMakeLists.txt (+7/-0)
documentation/qml/pages/context.qdoc (+76/-159)
documentation/qml/pages/future-plans.qdoc (+0/-35)
documentation/qml/pages/mainpage.qdoc (+38/-57)
documentation/qml/pages/offline-actions.qdoc (+45/-0)
documentation/qml/pages/platform-integration.qdoc (+18/-0)
documentation/qml/pages/preview-actions.qdoc (+71/-60)
documentation/qml/qml-api/Action.qml (+94/-19)
documentation/qml/qml-api/ActionContext.qml (+80/-0)
documentation/qml/qml-api/ActionManager.qml (+97/-0)
documentation/qml/qml-api/PreviewAction.qml (+84/-0)
documentation/qml/qml-api/PreviewParameter.qml (+33/-0)
documentation/qml/qml-api/PreviewRangeParameter.qml (+60/-0)
documentation/qml/unity-action-qml.qdocconf.in (+3/-3)
examples/CMakeLists.txt (+3/-8)
examples/action-context/CMakeLists.txt (+8/-0)
examples/action-context/action-context.cpp (+100/-0)
examples/example.cpp (+0/-28)
examples/mail-app/CMakeLists.txt (+7/-0)
examples/mail-app/mail-app.cpp (+91/-0)
examples/mail-app/mail-app.desktop (+15/-0)
examples/mainwindow.cpp (+0/-137)
examples/mainwindow.h (+0/-32)
examples/preview-action/CMakeLists.txt (+8/-0)
examples/preview-action/preview-action.cpp (+106/-0)
include/unity/action/unity-action-context.h (+0/-3)
include/unity/action/unity-action-manager.h (+0/-10)
include/unity/action/unity-action.h (+46/-49)
include/unity/action/unity-menu-item.h (+3/-1)
include/unity/action/unity-preview-action.h (+0/-3)
include/unity/action/unity-preview-range-parameter.h (+0/-1)
qml/Ubuntu/Unity/Action/plugin.cpp (+2/-1)
src/CMakeLists.txt (+23/-5)
src/unity-action-context.cpp (+80/-0)
src/unity-action-manager.cpp (+108/-6)
src/unity-action-qt.pc.in (+10/-0)
src/unity-action.cpp (+227/-10)
src/unity-menu-item.cpp (+0/-1)
src/unity-preview-action.cpp (+111/-0)
src/unity-preview-parameter.cpp (+11/-0)
src/unity-preview-range-parameter.cpp (+68/-0)
test/cpp/CMakeLists.txt (+1/-1)
test/cpp/main.cpp (+4/-2)
test/cpp/tst_action.cpp (+9/-0)
test/qml/tst_api.qml (+2/-0)
To merge this branch: bzr merge lp:~kaijanmaki/unity-action-api/no-hud-update
Reviewer Review Type Date Requested Status
PS Jenkins bot (community) continuous-integration Approve
Unity Team Pending
Review via email: mp+174844@code.launchpad.net

Commit message

merge from upstream.

Description of the change

merge from upstream.

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :

FAILED: Continuous integration, rev:24
No commit message was specified in the merge proposal. Click on the following link and set the commit message (if you want a jenkins rebuild you need to trigger it yourself):
https://code.launchpad.net/~kaijanmaki/unity-action-api/no-hud-update/+merge/174844/+edit-commit-message

http://jenkins.qa.ubuntu.com/job/unity-team-unity-action-api-nohud-ci/14/
Executed test runs:
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity-team-unity-action-api-nohud-precise-amd64-ci/13

Click here to trigger a rebuild:
http://s-jenkins:8080/job/unity-team-unity-action-api-nohud-ci/14/rebuild

review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added directory '.bzr-builddeb'
2=== added file '.bzr-builddeb/default.conf'
3--- .bzr-builddeb/default.conf 1970-01-01 00:00:00 +0000
4+++ .bzr-builddeb/default.conf 2013-07-15 19:54:23 +0000
5@@ -0,0 +1,2 @@
6+[BUILDDEB]
7+split = True
8
9=== modified file 'CMakeLists.txt'
10--- CMakeLists.txt 2013-07-09 20:37:43 +0000
11+++ CMakeLists.txt 2013-07-15 19:54:23 +0000
12@@ -70,9 +70,15 @@
13 include_directories(include)
14 add_subdirectory(src)
15 add_subdirectory(qml)
16-add_subdirectory(documentation)
17+
18 #add_subdirectory(examples)
19
20+option(GENERATE_DOCUMENTATION "Generate documenation for C++ and QML" OFF)
21+if(${GENERATE_DOCUMENTATION})
22+ add_subdirectory(documentation)
23+endif()
24+
25+
26 find_program(qmltestrunner_exe qmltestrunner)
27
28 if(NOT qmltestrunner_exe)
29@@ -129,8 +135,11 @@
30 endif("${qmltest_NO_TARGETS}" STREQUAL "FALSE")
31 endmacro(add_qml_test)
32
33-enable_testing()
34-add_subdirectory(test)
35+option(ENABLE_TESTING "Enable testing." ON)
36+if(${ENABLE_TESTING})
37+ enable_testing()
38+ add_subdirectory(test)
39+endif()
40
41 include(EnableCoverageReport)
42 #####################################################################
43
44=== modified file 'debian/changelog'
45--- debian/changelog 2013-06-06 14:34:12 +0000
46+++ debian/changelog 2013-07-15 19:54:23 +0000
47@@ -1,5 +1,9 @@
48-unity-action (1.0.0) UNRELEASED; urgency=low
49+unity-action (1.0.0-0ubuntu1) UNRELEASED; urgency=low
50
51+ [ Antti Kaijanmäki ]
52 * Initial packaging.
53
54+ [ Didier Roche ]
55+ * Clean packaging for daily release
56+
57 -- Antti Kaijanmäki <antti.kaijanmaki@canonical.com> Thu, 06 Jun 2013 15:56:04 +0300
58
59=== modified file 'debian/control'
60--- debian/control 2013-07-09 14:27:03 +0000
61+++ debian/control 2013-07-15 19:54:23 +0000
62@@ -1,55 +1,66 @@
63 Source: unity-action
64 Section: libs
65-Priority: extra
66+Priority: optional
67 Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
68 XSBC-Original-Maintainer: Antti Kaijanmäki <antti.kaijanmaki@canonical.com>
69-Build-Depends:
70- cmake,
71- debhelper (>= 9),
72- pkg-config,
73- qt5-default,
74- qt5-qmake,
75- qtbase5-dev,
76- qtbase5-dev-tools,
77- qtdeclarative5-dev,
78- qtdeclarative5-dev-tools,
79- qtdeclarative5-qtquick2-plugin,
80- qtdeclarative5-test-plugin,
81- libglib2.0-dev,
82- dbus-test-runner
83-Standards-Version: 3.9.2
84+Build-Depends: cmake,
85+ debhelper (>= 9),
86+ pkg-config,
87+ libglib2.0-dev,
88+ qt5-default,
89+ qt5-qmake,
90+ qtbase5-dev,
91+ qtbase5-dev-tools,
92+ qtdeclarative5-dev,
93+ qtdeclarative5-dev-tools,
94+ qtdeclarative5-qtquick2-plugin,
95+ qtdeclarative5-test-plugin,
96+ dbus-test-runner,
97+ doxygen,
98+ graphviz,
99+Standards-Version: 3.9.4
100 Homepage: https://launchpad.net/unity-action-api
101+# If you aren't a member of ~unity-team but need to upload packaging changes,
102+# just go ahead. ~unity-team will notice and sync up the code again.
103 Vcs-Bzr: lp:unity-action-api
104 Vcs-Browser: https://code.launchpad.net/unity-action-api
105
106 Package: libunity-action-qt1
107-Section: libs
108-Architecture: amd64 armhf i386
109+Architecture: any
110 Pre-Depends: ${misc:Pre-Depends}
111+Multi-Arch: same
112 Depends: ${misc:Depends},
113 ${shlibs:Depends},
114 Description: Unity Action Qt API
115 Unity Common Action API
116
117-Package: libunity-action-qt-dev
118-Section: libs
119-Architecture: amd64 armhf i386
120+Package: libunity-action-qt1-dev
121+Section: libdevel
122+Architecture: any
123 Pre-Depends: ${misc:Pre-Depends}
124-Depends: libunity-action-qt1
125- ${misc:Depends},
126+Multi-Arch: same
127+Depends: ${misc:Depends},
128 ${shlibs:Depends},
129+ libunity-action-qt1 (= ${binary:Version}),
130+ qtbase5-dev,
131+ libhud2-dev,
132+Suggests: unity-action-doc,
133 Description: Unity Action Qt API - development files
134 Unity Common Action API
135-
136-
137-Package: qtdeclarative5-unity-action1.0
138-Section: libs
139-Architecture: amd64 armhf i386
140-Depends: libunity-action-qt1,
141- ${misc:Depends},
142+ .
143+ This package contains development files to develop against the library.
144+
145+Package: qtdeclarative5-unity-action-plugin
146+Architecture: any
147+Pre-Depends: ${misc:Pre-Depends}
148+Multi-Arch: same
149+Depends: ${misc:Depends},
150 ${shlibs:Depends},
151+ libunity-action-qt1 (= ${binary:Version}),
152 Description: Unity Action QML Components
153 Unity Common Action API
154+ .
155+ This package contains the qtdeclarative binding for the unity-action library.
156
157 Package: unity-action-doc
158 Section: doc
159
160=== modified file 'debian/copyright'
161--- debian/copyright 2013-06-06 14:34:12 +0000
162+++ debian/copyright 2013-07-15 19:54:23 +0000
163@@ -1,16 +1,10 @@
164-Format: http://dep.debian.net/deps/dep5
165+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
166 Upstream-Name: unity-action
167 Source: lp:unity-action
168
169 Files: *
170 Copyright: 2013 Canonical Ltd.
171 License: LGPL-3
172-
173-Files: debian/*
174-Copyright: 2013 Canonical Ltd.
175-License: LGPL-3
176-
177-License: LGPL-3
178 This package is free software; you can redistribute it and/or modify
179 it under the terms of the GNU Lesser General Public License, version 3
180 as published by the Free Software Foundation.
181
182=== renamed file 'debian/libunity-action-qt-dev.install' => 'debian/libunity-action-qt1-dev.install'
183--- debian/libunity-action-qt-dev.install 2013-06-11 13:53:21 +0000
184+++ debian/libunity-action-qt1-dev.install 2013-07-15 19:54:23 +0000
185@@ -1,2 +1,3 @@
186 usr/lib/*/libunity-action-qt.so
187-#usr/include/*
188+usr/include/*
189+usr/lib/*/pkgconfig/*
190
191=== renamed file 'debian/qtdeclarative5-unity-action1.0.install' => 'debian/qtdeclarative5-unity-action-plugin.install'
192=== modified file 'debian/rules'
193--- debian/rules 2013-06-06 15:43:34 +0000
194+++ debian/rules 2013-07-15 19:54:23 +0000
195@@ -1,31 +1,16 @@
196 #!/usr/bin/make -f
197 # -*- makefile -*-
198-# Sample debian/rules that uses debhelper.
199-# This file was originally written by Joey Hess and Craig Small.
200-# As a special exception, when this file is copied by dh-make into a
201-# dh-make output file, you may use that output file without restriction.
202-# This special exception was added by Craig Small in version 0.37 of dh-make.
203
204 # Comment this to turn off verbose mode.
205-export DH_VERBOSE=1
206+#export DH_VERBOSE=1
207
208-export DPKG_GENSYMBOLS_CHECK_ARGS=4
209 export DPKG_GENSYMBOLS_CHECK_LEVEL=4
210-export G_MESSAGES_DEBUG=all
211-export DEBIAN_TARGET_DIR="${CURDIR}/debian/tmp"
212
213 %:
214- dh $@ --parallel
215+ dh $@ --parallel --fail-missing
216
217 override_dh_auto_configure:
218- dh_auto_configure -- -DDEBIAN_TARGET_DIR="${DEBIAN_TARGET_DIR}"
219-
220-override_dh_install:
221- dh_install --fail-missing
222-
223-override_dh_install:
224-# execute dh_install and fail if something was not packaged
225- dh_install --fail-missing
226-
227-%:
228- dh $@
229+ dh_auto_configure -- -DGENERATE_DOCUMENTATION=ON
230+
231+override_dh_makeshlibs:
232+ dh_makeshlibs -Nqtdeclarative5-unity-action-plugin
233
234=== renamed file 'debian/libunity-action-doc.install' => 'debian/unity-action-doc.install'
235--- debian/libunity-action-doc.install 2013-06-06 14:34:12 +0000
236+++ debian/unity-action-doc.install 2013-07-15 19:54:23 +0000
237@@ -1,1 +1,1 @@
238-usr/share/libunity-action/doc/
239+usr/share/doc/unity-action/*
240
241=== modified file 'documentation/CMakeLists.txt'
242--- documentation/CMakeLists.txt 2013-06-06 12:32:33 +0000
243+++ documentation/CMakeLists.txt 2013-07-15 19:54:23 +0000
244@@ -1,5 +1,5 @@
245 add_subdirectory(cpp)
246 add_subdirectory(qml)
247
248-add_custom_target(doc)
249+add_custom_target(doc ALL)
250 add_dependencies(doc cppdoc qmldoc)
251
252=== modified file 'documentation/cpp/CMakeLists.txt'
253--- documentation/cpp/CMakeLists.txt 2013-06-06 12:32:33 +0000
254+++ documentation/cpp/CMakeLists.txt 2013-07-15 19:54:23 +0000
255@@ -7,5 +7,12 @@
256 WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
257 COMMENT "Generating C++ API documentation with Doxygen" VERBATIM
258 )
259+
260+
261+install(
262+ DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html/
263+ DESTINATION ${CMAKE_INSTALL_DOCDIR}/cpp/
264+)
265+
266 endif(DOXYGEN_FOUND)
267
268
269=== modified file 'documentation/cpp/Doxyfile.in'
270--- documentation/cpp/Doxyfile.in 2013-06-10 18:59:03 +0000
271+++ documentation/cpp/Doxyfile.in 2013-07-15 19:54:23 +0000
272@@ -119,7 +119,7 @@
273 # path before files name in the file list and in the header files. If set
274 # to NO the shortest path that makes the file name unique will be used.
275
276-FULL_PATH_NAMES = YES
277+FULL_PATH_NAMES = NO
278
279 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
280 # can be used to strip a user-defined part of the path. Stripping is
281@@ -195,7 +195,7 @@
282 # will result in a user-defined paragraph with heading "Side Effects:".
283 # You can put \n's in the value part of an alias to insert newlines.
284
285-ALIASES =
286+ALIASES = "accessors=\par Accessors:\n" "initvalue=\par Initial Value:\n" "notify=\par Notify:\n"
287
288 # This tag can be used to specify a number of word-keyword mappings (TCL only).
289 # A mapping has the form "name=value". For example adding
290@@ -365,7 +365,7 @@
291 # Private class members and static file members will be hidden unless
292 # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
293
294-EXTRACT_ALL = YES
295+EXTRACT_ALL = NO
296
297 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class
298 # will be included in the documentation.
299@@ -457,7 +457,7 @@
300 # will put a list of the files that are included by a file in the documentation
301 # of that file.
302
303-SHOW_INCLUDE_FILES = YES
304+SHOW_INCLUDE_FILES = NO
305
306 # If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen
307 # will list include files with double quotes in the documentation
308@@ -482,7 +482,7 @@
309 # by member name. If set to NO (the default) the members will appear in
310 # declaration order.
311
312-SORT_BRIEF_DOCS = NO
313+SORT_BRIEF_DOCS = YES
314
315 # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen
316 # will sort the (brief and detailed) documentation of class members so that
317@@ -492,7 +492,7 @@
318 # This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO
319 # and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO.
320
321-SORT_MEMBERS_CTORS_1ST = NO
322+SORT_MEMBERS_CTORS_1ST = YES
323
324 # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the
325 # hierarchy of group names into alphabetical order. If set to NO (the default)
326@@ -668,7 +668,8 @@
327 # directories like "/usr/src/myproject". Separate the files or directories
328 # with spaces.
329
330-INPUT = @CMAKE_SOURCE_DIR@/include/ @CMAKE_SOURCE_DIR@/src/
331+INPUT = @CMAKE_SOURCE_DIR@/include/ @CMAKE_SOURCE_DIR@/src/ @CMAKE_SOURCE_DIR@/documentation/cpp/pages
332+
333
334 # This tag can be used to specify the character encoding of the source files
335 # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
336@@ -728,7 +729,7 @@
337 # directories that contain example code fragments that are included (see
338 # the \include command).
339
340-EXAMPLE_PATH =
341+EXAMPLE_PATH = @CMAKE_SOURCE_DIR@/examples/
342
343 # If the value of the EXAMPLE_PATH tag contains directories, you can use the
344 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
345@@ -748,7 +749,7 @@
346 # directories that contain image that are included in the documentation (see
347 # the \image command).
348
349-IMAGE_PATH =
350+IMAGE_PATH = @CMAKE_SOURCE_DIR@/documentation/images
351
352 # The INPUT_FILTER tag can be used to specify a program that doxygen should
353 # invoke to filter for each input file. Doxygen will invoke the filter program
354
355=== added directory 'documentation/cpp/css'
356=== added file 'documentation/cpp/css/base.css'
357--- documentation/cpp/css/base.css 1970-01-01 00:00:00 +0000
358+++ documentation/cpp/css/base.css 2013-07-15 19:54:23 +0000
359@@ -0,0 +1,638 @@
360+/**
361+* Ubuntu Developer base stylesheet
362+*
363+* A base stylesheet containing site-wide styles
364+*
365+* @project Ubuntu Developer
366+* @version 1.0
367+* @author Canonical Web Team: Steve Edwards
368+* @copyright 2011 Canonical Ltd.
369+*/
370+
371+/**
372+* @section Global
373+*/
374+
375+body {
376+ font-family: 'Ubuntu', 'Ubuntu Beta', UbuntuBeta, Ubuntu, 'Bitstream Vera Sans', 'DejaVu Sans', Tahoma, sans-serif;
377+ font-size: 13px;
378+ line-height: 1.4;
379+ color: #333;
380+}
381+a {
382+ color: #dd4814;
383+ text-decoration: none;
384+ outline: 0;
385+}
386+p, dl {
387+ margin-bottom: 10px;
388+}
389+strong {
390+ font-weight: bold;
391+}
392+em {
393+ font-style: italic;
394+}
395+code{
396+ padding: 10px;
397+ font-family: 'Ubuntu Mono', 'Consolas', 'Monaco', 'DejaVu Sans Mono', Courier, monospace;
398+ background-color: #fdf6f2;
399+ display: block;
400+ margin-bottom: 10px;
401+ -moz-border-radius: 4px;
402+ -webkit-border-radius: 4px;
403+ border-radius: 4px;
404+}
405+h1 {
406+ font-size: 36px;
407+ line-height: 1.1;
408+ margin-bottom: 20px;
409+}
410+article h1,
411+h2 {
412+ font-size: 24px;
413+ line-height: 1.2;
414+ margin-bottom: 14px;
415+}
416+h3 {
417+ font-size: 16px;
418+ line-height: 1.3;
419+ margin-bottom: 8px;
420+}
421+h4 {
422+ font-weight: bold;
423+}
424+
425+time {
426+ color:#999;
427+}
428+
429+/**
430+* @section Structure
431+*/
432+
433+.header-login,
434+.header-navigation div,
435+.header-content div {
436+ margin: 0 auto;
437+ width: 940px;
438+}
439+
440+.header-content h1{
441+ background-color:#ffffff;
442+ display:inline-block;
443+}
444+
445+.header-content h2{
446+ background-color:#ffffff;
447+ display:table;
448+}
449+
450+.header-login ul {
451+ margin: 4px 0;
452+ float: right;
453+}
454+.header-login li {
455+ margin-right: 10px;
456+ float: left;
457+}
458+.header-login a {
459+ color: #333;
460+}
461+.header-navigation {
462+ border-top: 2px solid #dd4814;
463+ border-bottom: 2px solid #dd4814;
464+ background-color: #fff;
465+ height: 54px;
466+ clear: right;
467+ overflow: hidden;
468+}
469+.header-navigation nav ul {
470+ border-right: 1px solid #dd4814;
471+ float: right;
472+}
473+.header-navigation nav li {
474+ border-left: 1px solid #dd4814;
475+ float: left;
476+ height: 54px;
477+}
478+.header-navigation nav a {
479+ padding: 18px 14px 0;
480+ font-size: 14px;
481+ display: block;
482+ height: 36px;
483+}
484+.header-navigation nav a:hover {
485+ background-color: #fcece7;
486+}
487+.header-navigation nav .current_page_item a,
488+.header-navigation nav .current_page_parent a,
489+.header-navigation nav .current_page_ancestor a {
490+ background-color: #dd4814;
491+ color: #fff;
492+}
493+.header-navigation input {
494+ margin: 12px 10px 0 10px;
495+ padding: 5px;
496+ border-top: 1px solid #a1a1a1;
497+ border-right: 1px solid #e0e0e0;
498+ border-bottom: 1px solid #fff;
499+ border-left: 1px solid #e0e0e0;
500+ width: 90px;
501+ font-style: italic;
502+ color: #ccc;
503+ -moz-border-radius: 3px;
504+ -webkit-border-radius: 3px;
505+ border-radius: 3px;
506+ -moz-box-shadow: inset 0 1px 1px #e0e0e0;
507+ -webkit-box-shadow: inset 0 1px 1px #e0e0e0;
508+ box-shadow: inset 0 1px 1px #e0e0e0;
509+}
510+.header-navigation h2 {
511+ margin: 18px 0 0 6px;
512+ text-transform: lowercase;
513+ font-size: 22px;
514+ color: #dd4814;
515+ float: left;
516+}
517+.header-navigation .logo-ubuntu {
518+ margin-top: 12px;
519+ float: left;
520+}
521+.header-content .header-navigation-secondary {
522+ margin-bottom: 40px;
523+ padding: 0;
524+ position: relative;
525+ z-index: 2;
526+}
527+.header-navigation-secondary div {
528+ padding: 0;
529+ border: 2px solid #dd4814;
530+ -moz-border-radius: 0px 0px 4px 4px;
531+ -webkit-border-radius: 0px 0px 4px 4px;
532+ border-radius: 0px 0px 4px 4px;
533+ background: #fff;
534+ border-top: 0px;
535+ width: 936px;
536+}
537+.header-navigation-secondary nav li {
538+ float: left;
539+}
540+.header-navigation-secondary nav li a {
541+ color: #333;
542+ display: block;
543+ height: 25px;
544+ padding: 8px 8px 0;
545+}
546+.header-navigation-secondary nav li:hover,
547+.header-navigation-secondary nav .current_page_item a {
548+ background: url("../img/sec-nav-hover.gif");
549+}
550+.header-content {
551+ padding-bottom: 30px;
552+ border-bottom: 1px solid #e0e0e0;
553+ -moz-box-shadow: 0 1px 3px #e0e0e0;
554+ -webkit-box-shadow: 0 1px 3px #e0e0e0;
555+ box-shadow: 0 1px 3px #e0e0e0;
556+ margin-bottom: 3px;
557+ position: relative;
558+ overflow: hidden;
559+}
560+footer {
561+ padding: 10px 10px 40px 10px;
562+ position: relative;
563+ -moz-border-radius: 0 0 4px 4px;
564+ -webkit-border-radius: 0 0 4px 4px;
565+ border-radius: 0 0 4px 4px;
566+ font-size: 12px;
567+ background: url("../img/background-footer.png") repeat scroll 0 0 #f7f6f5;
568+}
569+footer div {
570+ margin: 0 auto;
571+ padding: 0 10px;
572+ width: 940px;
573+}
574+footer a {
575+ color: #000;
576+}
577+footer nav ul {
578+ margin: 10px 17px 30px 0;
579+ width: 172px;
580+ display: inline-block;
581+ vertical-align: top;
582+ height: auto;
583+ zoom: 1;
584+ *display: inline;
585+}
586+footer nav ul.last {
587+ margin-right: 0;
588+}
589+footer nav li {
590+ margin-bottom: 8px;
591+}
592+footer nav li:first-child {
593+ font-weight: bold;
594+}
595+footer p {
596+ margin-bottom: 0;
597+}
598+#content {
599+ padding-top: 35px;
600+}
601+.arrow-nav {
602+ display: none;
603+ position: absolute;
604+ top: -1px;
605+ z-index: 3;
606+}
607+.shadow {
608+ margin: 30px 0 3px 0;
609+ border-bottom: 1px solid #e0e0e0;
610+ -moz-box-shadow: 0 2px 3px #e0e0e0;
611+ -webkit-box-shadow: 0 2px 3px #e0e0e0;
612+ box-shadow: 0 2px 3px #e0e0e0;
613+ height: 3px;
614+}
615+
616+/**
617+* @section Site-wide
618+*/
619+
620+#content h2{
621+ font-size:24px;
622+}
623+
624+.box-orange {
625+ padding: 10px;
626+ border: 3px solid #dd4814;
627+ -moz-border-radius: 4px;
628+ -webkit-border-radius: 4px;
629+ border-radius: 4px;
630+}
631+.box-orange .link-action-small {
632+ float: right;
633+ margin: 0 0 0 20px;
634+}
635+.link-bug {
636+ margin-left: 10px;
637+ color: #999;
638+}
639+.link-action {
640+ float: left;
641+ margin-bottom: 20px;
642+ padding: 8px 12px;
643+ display: block;
644+ background-color: #dd4814;
645+ color: #fff;
646+ -moz-border-radius: 20px;
647+ -webkit-border-radius: 20px;
648+ border-radius: 20px;
649+ font-size: 16px;
650+ line-height: 1.3;
651+ border-top: 3px solid #e6633a;
652+ border-bottom: 3px solid #c03d14;
653+}
654+.link-action2 {
655+ float: left;
656+ display: block;
657+ color: #fff;
658+ font-size: 16px;
659+ line-height: 1.3;
660+}
661+.link-action2 span{
662+ display:block;
663+ float:left;
664+}
665+.link-action2 .cta-left{
666+ background:url(../img/button-cta-left.png) no-repeat;
667+ width:22px;
668+ height:48px;
669+}
670+.link-action2 .cta-center{
671+ background:url(../img/button-cta-slice.png) repeat-x;
672+ line-height:45px;
673+ height:48px;
674+}
675+.link-action2 .cta-right{
676+ background:url(../img/button-cta-right.png) no-repeat;
677+ width:22px;
678+ height:48px;
679+}
680+
681+.link-action-small {
682+ float: left;
683+ display: block;
684+ color: #fff;
685+ font-size: 16px;
686+}
687+.link-action-small span{
688+ display:block;
689+ float:left;
690+ height:42px;
691+}
692+.link-action-small .cta-left{
693+ background:url(../img/button-cta-left-small.png) no-repeat;
694+ width:19px;
695+}
696+.link-action-small .cta-center{
697+ background:url(../img/button-cta-slice-small.png) repeat-x;
698+ line-height:42px;
699+}
700+.link-action-small .cta-right{
701+ background:url(../img/button-cta-right-small.png) no-repeat;
702+ width:19px;
703+}
704+
705+.link-action:active {
706+ position: relative;
707+ top: 1px;
708+}
709+.link-action2:active {
710+ position: relative;
711+ top: 1px;
712+}
713+.link-action-small:active {
714+ position: relative;
715+ top: 1px;
716+}
717+.list-bullets li {
718+ margin-bottom: 10px;
719+ list-style: disc;
720+ list-style-position: inside;
721+}
722+.box {
723+ margin-bottom: 30px;
724+ padding: 15px;
725+ border: 1px solid #aea79f;
726+ -moz-border-radius: 4px;
727+ -webkit-border-radius: 4px;
728+ border-radius: 4px;
729+}
730+.box-padded {
731+ margin-bottom: 30px;
732+ padding: 5px;
733+ border: 2px solid #aea79f;
734+ -moz-border-radius: 4px;
735+ -webkit-border-radius: 4px;
736+ border-radius: 4px;
737+ background: url("../img/pattern-featured.gif") repeat scroll 0 0 #ebe9e7;
738+ overflow: hidden;
739+}
740+.box-padded h3 {
741+ margin: 5px 0 10px 5px;
742+}
743+.box-padded div {
744+ padding: 10px;
745+ border: 1px solid #aea79f;
746+ -moz-border-radius: 4px;
747+ -webkit-border-radius: 4px;
748+ border-radius: 4px;
749+ background-color: #fff;
750+ overflow: hidden;
751+}
752+.box-padded li {
753+ padding: 0 10px;
754+ float: left;
755+ width: 211px;
756+ border-right: 1px dotted #aea79f;
757+}
758+.box-padded li.first {
759+ padding: 0;
760+ margin-bottom: 0;
761+}
762+.box-padded li.last {
763+ border: 0;
764+ width: 217px;
765+}
766+.box-padded img {
767+ margin: 0 10px 50px 0;
768+ float: left;
769+ -moz-border-radius: 8px;
770+ -webkit-border-radius: 8px;
771+ border-radius: 8px;
772+}
773+.box-clear {
774+ margin-bottom: 40px;
775+}
776+.box-clear .grid-4.first {
777+ margin-right: 15px;
778+ padding-right: 15px;
779+}
780+.box-clear .grid-4 {
781+ margin-left: 0;
782+ margin-right: 10px;
783+ padding-right: 10px;
784+ width: 298px;
785+}
786+.box-clear time {
787+ display: block;
788+ border-bottom: 1px dotted #aea79f;
789+ padding-bottom: 10px;
790+ margin-bottom: 10px;
791+}
792+.box-clear div.first {
793+ border-right: 1px dotted #aea79f;
794+}
795+.box-clear a {
796+ display: block;
797+}
798+.box-clear .rss {
799+ background: url("../img/rss.jpg") no-repeat scroll 0 center;
800+ padding-left: 20px;
801+}
802+.box-clear .location {
803+ display: block;
804+ margin-bottom: 1px;
805+}
806+.box-clear .last {
807+ margin: 0;
808+ padding-right: 0;
809+ -moz-border-radius: 4px;
810+ -webkit-border-radius: 4px;
811+ border-radius: 4px;
812+ width: 293px;
813+}
814+
815+/* Widgets */
816+
817+.ui-state-focus {
818+ outline: none;
819+}
820+.ui-accordion {
821+ border-bottom: 1px dotted #aea79f;
822+}
823+.ui-accordion a {
824+ display: block;
825+}
826+.ui-accordion h3 {
827+ margin-bottom: 0;
828+ border-top: 1px dotted #aea79f;
829+ position: relative;
830+ font-size: 13px;
831+ font-weight: bold;
832+}
833+.ui-accordion h3 a {
834+ padding: 10px 0;
835+ color: #333;
836+}
837+.ui-accordion h4 {
838+ margin-bottom: 5px;
839+}
840+.ui-accordion div fieldset {
841+ padding-bottom: 5px;
842+}
843+.ui-accordion div li,
844+.ui-accordion div input {
845+ margin-bottom: 10px;
846+}
847+.ui-accordion .ui-icon {
848+ position: absolute;
849+ top: 15px;
850+ right: 0;
851+ display: block;
852+ width: 8px;
853+ height: 8px;
854+ background: url("../img/icon-accordion-inactive.png") 0 0 no-repeat transparent;
855+}
856+.ui-accordion .ui-state-active .ui-icon {
857+ background-image: url("../img/icon-accordion-active.png");
858+}
859+.ui-accordion .current_page_item a {
860+ color: #333;
861+}
862+.container-tweet {
863+ -moz-border-radius: 4px 4px 4px 4px;
864+ -webkit-border-radius: 4px 4px 4px 4px;
865+ border-radius: 4px 4px 4px 4px;
866+ padding: 10px 10px 10px;
867+ background-color: #f7f7f7;
868+}
869+.container-tweet .tweet-follow {
870+ margin-top: 10px;
871+ margin-bottom: -10px;
872+ padding-left: 55px;
873+ padding-bottom: 6px;
874+ background: url("../img/tweet-follow.png") 0 5px no-repeat;
875+ display: block;
876+}
877+.container-tweet .tweet-follow span {
878+ font-size: 16px;
879+ font-weight: bold;
880+ line-height: 1.2;
881+ display: block;
882+}
883+.tweet a {
884+ display: inline;
885+}
886+.tweet .tweet_text {
887+ padding: 10px;
888+ background-color: #fff;
889+ -moz-border-radius: 4px 4px 4px 4px;
890+ -webkit-border-radius: 4px 4px 4px 4px;
891+ border-radius: 4px 4px 4px 4px;
892+ border: 1px solid #dd4814;
893+ font-size: 16px;
894+ display: block;
895+ clear: both;
896+}
897+.tweet.tweet-small .tweet_text {
898+ font-size: inherit;
899+}
900+.tweet .tweet_text a {
901+ color: #333;
902+}
903+.tweet .tweet_time,
904+.tweet .tweet_user_and_time {
905+ padding: 15px 0 10px 0;
906+ position: relative;
907+ top: -2px;
908+ background: url("../img/tweet-arrow.png") no-repeat;
909+ display: block;
910+}
911+.tweet .tweet_odd .tweet_time,
912+.tweet .tweet_odd .tweet_user_and_time {
913+ background-position: right 0;
914+ float: right;
915+}
916+.tweet .tweet_even .tweet_time,
917+.tweet .tweet_even .tweet_user_and_time {
918+ background-position: left 0;
919+ float: left;
920+}
921+
922+/* Search */
923+
924+#content .list-search li {
925+ list-style-type:none;
926+ border:0px;
927+ margin-bottom: 15px;
928+ padding-top: 15px;
929+}
930+
931+/* Blog */
932+
933+.blog-article #nav-single {
934+ margin-top: 30px;
935+ margin-bottom: 30px;
936+}
937+.blog-article #nav-single .nav-next {
938+ float: right;
939+}
940+.blog-article article header .entry-meta {
941+ margin-bottom: 20px;
942+}
943+.blog-article article .entry-meta {
944+ color: #999;
945+}
946+.blog-article #respond form input[type="submit"] {
947+ float: left;
948+ cursor: pointer;
949+ margin-bottom: 20px;
950+ padding: 8px 12px;
951+ display: block;
952+ background-color: #dd4814;
953+ color: #fff;
954+ -moz-border-radius: 20px;
955+ -webkit-border-radius: 20px;
956+ border-radius: 20px;
957+ font-size: 16px;
958+ line-height: 1.3;
959+ border-top: 3px solid #e6633a;
960+ border-left: 3px solid #e6633a;
961+ border-right: 3px solid #e6633a;
962+ border-bottom: 3px solid #c03d14;
963+}
964+.blog-article #respond form input[type="submit"]:active {
965+ position: relative;
966+ top: 1px;
967+}
968+
969+.alignnone{
970+ float:left;
971+ margin:10px 20px 10px 0;
972+}
973+.alignleft{
974+ float:left;
975+ margin:10px 20px 10px 0;
976+}
977+.alignright{
978+ float:right;
979+ margin:10px 0 10px 20px;
980+}
981+
982+.aligncenter{
983+ float:left;
984+ margin:10px 20px 10px 0;
985+}
986+.entry-content h2, .entry-content h3{
987+ margin-top:20px;
988+}
989+.entry-content ul li{
990+ list-style-type: circle;
991+ margin-left:16px;
992+}
993+
994+.entry-content hr{
995+ border:none;
996+ border-top: 1px dotted #AEA79F;
997+}
998
999=== added file 'documentation/cpp/css/qtquick.css'
1000--- documentation/cpp/css/qtquick.css 1970-01-01 00:00:00 +0000
1001+++ documentation/cpp/css/qtquick.css 2013-07-15 19:54:23 +0000
1002@@ -0,0 +1,772 @@
1003+@media screen
1004+{
1005+
1006+/* basic elements */
1007+ html
1008+ {
1009+ color: #000000;
1010+ background: #FFFFFF;
1011+ }
1012+ table
1013+ {
1014+ border-collapse: collapse;
1015+ border-spacing: 0;
1016+ }
1017+ fieldset, img
1018+ {
1019+ border: 0;
1020+ max-width:100%;
1021+ }
1022+ address, caption, cite, code, dfn, em, strong, th, var, optgroup
1023+ {
1024+ font-style: inherit;
1025+ font-weight: inherit;
1026+ }
1027+ del, ins
1028+ {
1029+ text-decoration: none;
1030+ }
1031+ ol li
1032+ {
1033+ list-style: decimal;
1034+ }
1035+ ul li
1036+ {
1037+ list-style: none;
1038+ }
1039+ caption, th
1040+ {
1041+ text-align: left;
1042+ }
1043+ h1.title
1044+ {
1045+ font-weight: bold;
1046+ font-size: 150%;
1047+ }
1048+ h0
1049+ {
1050+ font-weight: bold;
1051+ font-size: 130%;
1052+ }
1053+ h1, h2, h3, h4, h5, h6
1054+ {
1055+ font-size: 100%;
1056+ }
1057+ q:before, q:after
1058+ {
1059+ content: '';
1060+ }
1061+ abbr, acronym
1062+ {
1063+ border: 0;
1064+ font-variant: normal;
1065+ }
1066+ sup, sub
1067+ {
1068+ vertical-align: baseline;
1069+ }
1070+ tt, .qmlreadonly span, .qmldefault span
1071+ {
1072+ word-spacing:0.5em;
1073+ }
1074+ legend
1075+ {
1076+ color: #000000;
1077+ }
1078+ strong
1079+ {
1080+ font-weight: bold;
1081+ }
1082+ em
1083+ {
1084+ font-style: italic;
1085+ }
1086+
1087+ body
1088+ {
1089+ margin: 0 1.5em 0 1.5em;
1090+ font-family: ubuntu;
1091+ line-height: normal
1092+ }
1093+ a
1094+ {
1095+ color: #00732F;
1096+ text-decoration: none;
1097+ }
1098+ hr
1099+ {
1100+ background-color: #E6E6E6;
1101+ border: 1px solid #E6E6E6;
1102+ height: 1px;
1103+ width: 100%;
1104+ text-align: left;
1105+ margin: 1.5em 0 1.5em 0;
1106+ }
1107+
1108+ pre
1109+ {
1110+ border: 1px solid #DDDDDD;
1111+ -moz-border-radius: 0.7em 0.7em 0.7em 0.7em;
1112+ -webkit-border-radius: 0.7em 0.7em 0.7em 0.7em;
1113+ border-radius: 0.7em 0.7em 0.7em 0.7em;
1114+ padding: 1em 1em 1em 1em;
1115+ overflow-x: auto;
1116+ }
1117+ table, pre
1118+ {
1119+ -moz-border-radius: 0.7em 0.7em 0.7em 0.7em;
1120+ -webkit-border-radius: 0.7em 0.7em 0.7em 0.7em;
1121+ border-radius: 0.7em 0.7em 0.7em 0.7em;
1122+ background-color: #F6F6F6;
1123+ border: 1px solid #E6E6E6;
1124+ border-collapse: separate;
1125+ margin-bottom: 2.5em;
1126+ }
1127+ pre {
1128+ font-size: 90%;
1129+ display: block;
1130+ overflow:hidden;
1131+ }
1132+ thead
1133+ {
1134+ margin-top: 0.5em;
1135+ font-weight: bold
1136+ }
1137+ th
1138+ {
1139+ padding: 0.5em 1.5em 0.5em 1em;
1140+ background-color: #E1E1E1;
1141+ border-left: 1px solid #E6E6E6;
1142+ }
1143+ td
1144+ {
1145+ padding: 0.25em 1.5em 0.25em 1em;
1146+ }
1147+
1148+ td.rightAlign
1149+ {
1150+ padding: 0.25em 0.5em 0.25em 1em;
1151+ }
1152+ table tr.odd
1153+ {
1154+ border-left: 1px solid #E6E6E6;
1155+ background-color: #F6F6F6;
1156+ color: black;
1157+ }
1158+ table tr.even
1159+ {
1160+ border-left: 1px solid #E6E6E6;
1161+ background-color: #ffffff;
1162+ color: #202020;
1163+ }
1164+
1165+ div.float-left
1166+ {
1167+ float: left; margin-right: 2em
1168+ }
1169+ div.float-right
1170+ {
1171+ float: right; margin-left: 2em
1172+ }
1173+
1174+ span.comment
1175+ {
1176+ color: #008B00;
1177+ }
1178+ span.string, span.char
1179+ {
1180+ color: #000084;
1181+ }
1182+ span.number
1183+ {
1184+ color: #a46200;
1185+ }
1186+ span.operator
1187+ {
1188+ color: #202020;
1189+ }
1190+ span.keyword
1191+ {
1192+ color: #840000;
1193+ }
1194+ span.name
1195+ {
1196+ color: black
1197+ }
1198+ span.type
1199+ {
1200+ font-weight: bold
1201+ }
1202+ span.type a:visited
1203+ {
1204+ color: #0F5300;
1205+ }
1206+ span.preprocessor
1207+ {
1208+ color: #404040
1209+ }
1210+/* end basic elements */
1211+
1212+/* font style elements */
1213+ .heading
1214+ {
1215+ font-weight: bold;
1216+ font-size: 125%;
1217+ }
1218+ .subtitle
1219+ {
1220+ font-size: 110%
1221+ }
1222+ .small-subtitle
1223+ {
1224+ font-size: 100%
1225+ }
1226+ .red
1227+ {
1228+ color:red;
1229+ }
1230+/* end font style elements */
1231+
1232+/* global settings*/
1233+ .header, .footer
1234+ {
1235+ display: block;
1236+ clear: both;
1237+ overflow: hidden;
1238+ }
1239+/* end global settings*/
1240+
1241+/* header elements */
1242+ .header .qtref
1243+ {
1244+ color: #00732F;
1245+ font-weight: bold;
1246+ font-size: 130%;
1247+ }
1248+
1249+ .header .content
1250+ {
1251+ margin-left: 5px;
1252+ margin-top: 5px;
1253+ margin-bottom: 0.5em;
1254+ }
1255+
1256+ .header .breadcrumb
1257+ {
1258+ font-size: 90%;
1259+ padding: 0.5em 0 0.5em 1em;
1260+ margin: 0;
1261+ background-color: #fafafa;
1262+ height: 1.35em;
1263+ border-bottom: 1px solid #d1d1d1;
1264+ }
1265+
1266+ .header .breadcrumb ul
1267+ {
1268+ margin: 0;
1269+ padding: 0;
1270+ }
1271+
1272+ .header .content
1273+ {
1274+ word-wrap: break-word;
1275+ }
1276+
1277+ .header .breadcrumb ul li
1278+ {
1279+ float: left;
1280+ background: url(../images/breadcrumb.png) no-repeat 0 3px;
1281+ padding-left: 1.5em;
1282+ margin-left: 1.5em;
1283+ }
1284+
1285+ .header .breadcrumb ul li.last
1286+ {
1287+ font-weight: normal;
1288+ }
1289+
1290+ .header .breadcrumb ul li a
1291+ {
1292+ color: #00732F;
1293+ }
1294+
1295+ .header .breadcrumb ul li.first
1296+ {
1297+ background-image: none;
1298+ padding-left: 0;
1299+ margin-left: 0;
1300+ }
1301+
1302+ .header .content ol li {
1303+ background: none;
1304+ margin-bottom: 1.0em;
1305+ margin-left: 1.2em;
1306+ padding-left: 0
1307+ }
1308+
1309+ .header .content li
1310+ {
1311+ background: url(../images/bullet_sq.png) no-repeat 0 5px;
1312+ margin-bottom: 1em;
1313+ padding-left: 1.2em;
1314+ }
1315+
1316+/* end header elements */
1317+
1318+/* content elements */
1319+ .content h1
1320+ {
1321+ font-weight: bold;
1322+ font-size: 130%
1323+ }
1324+
1325+ .content h2
1326+ {
1327+ font-weight: bold;
1328+ font-size: 120%;
1329+ width: 100%;
1330+ }
1331+ .content h3
1332+ {
1333+ font-weight: bold;
1334+ font-size: 110%;
1335+ width: 100%;
1336+ }
1337+ .content table p
1338+ {
1339+ margin: 0
1340+ }
1341+ .content ul
1342+ {
1343+ padding-left: 2.5em;
1344+ }
1345+ .content li
1346+ {
1347+ padding-top: 0.25em;
1348+ padding-bottom: 0.25em;
1349+ }
1350+ .content ul img {
1351+ vertical-align: middle;
1352+ }
1353+
1354+ .content a:visited
1355+ {
1356+ color: #4c0033;
1357+ text-decoration: none;
1358+ }
1359+
1360+ .content a:visited:hover
1361+ {
1362+ color: #4c0033;
1363+ text-decoration: underline;
1364+ }
1365+
1366+ a:hover
1367+ {
1368+ color: #4c0033;
1369+ text-decoration: underline;
1370+ }
1371+ descr p a
1372+ {
1373+ text-decoration: underline;
1374+ }
1375+
1376+ .descr p a:visited
1377+ {
1378+ text-decoration: underline;
1379+ }
1380+
1381+ .alphaChar{
1382+ width:95%;
1383+ background-color:#F6F6F6;
1384+ border:1px solid #E6E6E6;
1385+ -moz-border-radius: 7px 7px 7px 7px;
1386+ border-radius: 7px 7px 7px 7px;
1387+ -webkit-border-radius: 7px 7px 7px 7px;
1388+ font-size:12pt;
1389+ padding-left:10px;
1390+ margin-top:10px;
1391+ margin-bottom:10px;
1392+ }
1393+ .flowList{
1394+ /*vertical-align:top;*/
1395+ /*margin:20px auto;*/
1396+
1397+ column-count:3;
1398+ -webkit-column-count:3;
1399+ -moz-column-count:3;
1400+/*
1401+ column-width:100%;
1402+ -webkit-column-width:200px;
1403+ -col-column-width:200px;
1404+*/
1405+ column-gap:41px;
1406+ -webkit-column-gap:41px;
1407+ -moz-column-gap:41px;
1408+
1409+ column-rule: 1px dashed #ccc;
1410+ -webkit-column-rule: 1px dashed #ccc;
1411+ -moz-column-rule: 1px dashed #ccc;
1412+ }
1413+
1414+ .flowList dl{
1415+ }
1416+ .flowList dd{
1417+ /*display:inline-block;*/
1418+ margin-left:10px;
1419+ min-width:250px;
1420+ line-height: 1.5;
1421+ min-width:100%;
1422+ min-height:15px;
1423+ }
1424+
1425+ .flowList dd a{
1426+ }
1427+
1428+ .mainContent
1429+ {
1430+ padding-left:5px;
1431+ }
1432+
1433+ .content .flowList p{
1434+ padding:0px;
1435+ }
1436+
1437+ .content .alignedsummary
1438+ {
1439+ margin: 15px;
1440+ }
1441+
1442+
1443+ .qmltype
1444+ {
1445+ text-align: center;
1446+ font-size: 120%;
1447+ }
1448+ .qmlreadonly
1449+ {
1450+ padding-left: 5px;
1451+ float: right;
1452+ color: #254117;
1453+ }
1454+
1455+ .qmldefault
1456+ {
1457+ padding-left: 5px;
1458+ float: right;
1459+ color: red;
1460+ }
1461+
1462+ .qmldoc
1463+ {
1464+ }
1465+
1466+ .generic .alphaChar{
1467+ margin-top:5px;
1468+ }
1469+
1470+ .generic .odd .alphaChar{
1471+ background-color: #F6F6F6;
1472+ }
1473+
1474+ .generic .even .alphaChar{
1475+ background-color: #FFFFFF;
1476+ }
1477+
1478+ .memItemRight{
1479+ padding: 0.25em 1.5em 0.25em 0;
1480+ }
1481+ .highlightedCode
1482+ {
1483+ margin: 1.0em;
1484+ }
1485+ .annotated td {
1486+ padding: 0.25em 0.5em 0.25em 0.5em;
1487+ }
1488+
1489+ .toc
1490+ {
1491+ font-size: 80%
1492+ }
1493+
1494+ .header .content .toc ul
1495+ {
1496+ padding-left: 0px;
1497+ }
1498+
1499+ .content .toc h3 {
1500+ border-bottom: 0px;
1501+ margin-top: 0px;
1502+ }
1503+
1504+ .content .toc h3 a:hover {
1505+ color: #00732F;
1506+ text-decoration: none;
1507+ }
1508+
1509+ .content .toc .level2
1510+ {
1511+ margin-left: 1.5em;
1512+ }
1513+
1514+ .content .toc .level3
1515+ {
1516+ margin-left: 3.0em;
1517+ }
1518+
1519+ .content ul li
1520+ {
1521+ background: url(../images/bullet_sq.png) no-repeat 0 0.7em;
1522+ padding-left: 1em
1523+ }
1524+
1525+ .content .toc li
1526+ {
1527+ background: url(../images/bullet_dn.png) no-repeat 0 5px;
1528+ padding-left: 1em
1529+ }
1530+
1531+ .relpage
1532+ {
1533+ -moz-border-radius: 7px 7px 7px 7px;
1534+ -webkit-border-radius: 7px 7px 7px 7px;
1535+ border-radius: 7px 7px 7px 7px;
1536+ border: 1px solid #DDDDDD;
1537+ padding: 25px 25px;
1538+ clear: both;
1539+ }
1540+ .relpage ul
1541+ {
1542+ float: none;
1543+ padding: 1.5em;
1544+ }
1545+
1546+ h3.fn, span.fn
1547+ {
1548+ -moz-border-radius:7px 7px 7px 7px;
1549+ -webkit-border-radius:7px 7px 7px 7px;
1550+ border-radius:7px 7px 7px 7px;
1551+ background-color: #F6F6F6;
1552+ border-width: 1px;
1553+ border-style: solid;
1554+ border-color: #E6E6E6;
1555+ font-weight: bold;
1556+ word-spacing:3px;
1557+ padding:3px 5px;
1558+ }
1559+
1560+ .functionIndex {
1561+ font-size:12pt;
1562+ word-spacing:10px;
1563+ margin-bottom:10px;
1564+ background-color: #F6F6F6;
1565+ border-width: 1px;
1566+ border-style: solid;
1567+ border-color: #E6E6E6;
1568+ -moz-border-radius: 7px 7px 7px 7px;
1569+ -webkit-border-radius: 7px 7px 7px 7px;
1570+ border-radius: 7px 7px 7px 7px;
1571+ width:100%;
1572+ }
1573+
1574+ .centerAlign
1575+ {
1576+ text-align:center;
1577+ }
1578+
1579+ .rightAlign
1580+ {
1581+ text-align:right;
1582+ }
1583+
1584+ .leftAlign
1585+ {
1586+ text-align:left;
1587+ }
1588+
1589+ .topAlign{
1590+ vertical-align:top
1591+ }
1592+
1593+ .functionIndex a{
1594+ display:inline-block;
1595+ }
1596+
1597+/* end content elements */
1598+/* footer elements */
1599+
1600+ .footer
1601+ {
1602+ color: #393735;
1603+ font-size: 0.75em;
1604+ text-align: center;
1605+ padding-top: 1.5em;
1606+ padding-bottom: 1em;
1607+ background-color: #E6E7E8;
1608+ margin: 0;
1609+ }
1610+ .footer p
1611+ {
1612+ margin: 0.25em
1613+ }
1614+ .small
1615+ {
1616+ font-size: 0.5em;
1617+ }
1618+/* end footer elements */
1619+
1620+ .item {
1621+ float: left;
1622+ position: relative;
1623+ width: 100%;
1624+ overflow: hidden;
1625+ }
1626+
1627+
1628+ .item .primary {
1629+ margin-right: 220px;
1630+ position: relative;
1631+ }
1632+
1633+ .item hr {
1634+ margin-left: -220px;
1635+ }
1636+
1637+ .item .secondary {
1638+ float: right;
1639+ width: 200px;
1640+ position: relative;
1641+ }
1642+
1643+ .item .cols {
1644+ clear: both;
1645+ display: block;
1646+ }
1647+
1648+ .item .cols .col {
1649+ float: left;
1650+ margin-left: 1.5%;
1651+ }
1652+
1653+ .item .cols .col.first {
1654+ margin-left: 0;
1655+ }
1656+
1657+ .item .cols.two .col {
1658+ width: 45%;
1659+ }
1660+
1661+ .item .box {
1662+ margin: 0 0 10px 0;
1663+ }
1664+
1665+ .item .box h3 {
1666+ margin: 0 0 10px 0;
1667+ }
1668+
1669+ .cols.unclear {
1670+ clear:none;
1671+ }
1672+}
1673+
1674+/* end of screen media */
1675+
1676+/* start of print media */
1677+
1678+@media print
1679+{
1680+ input, textarea, .header, .footer, .toolbar, .feedback, .wrapper .hd, .wrapper .bd .sidebar, .wrapper .ft, #feedbackBox, #blurpage, .toc, .breadcrumb, .toolbar, .floatingResult
1681+ {
1682+ display: none;
1683+ background: none;
1684+ }
1685+ .content
1686+ {
1687+ background: none;
1688+ display: block;
1689+ width: 100%; margin: 0; float: none;
1690+ }
1691+}
1692+/* end of print media */
1693+
1694+
1695+/* modify the TOC layouts */
1696+div.toc ul {
1697+ padding-left: 20px;
1698+}
1699+div.toc li {
1700+ padding-left: 4px;
1701+}
1702+/* Remove the border around images*/
1703+a img
1704+{
1705+ border:none;
1706+}
1707+
1708+/*Add styling to the front pages*/
1709+
1710+.threecolumn_area
1711+{
1712+ padding-top: 20px;
1713+ padding-bottom: 20px;
1714+}
1715+.threecolumn_piece
1716+{
1717+ display: inline-block;
1718+ margin-left: 78px;
1719+ margin-top: 8px;
1720+ padding: 0;
1721+ vertical-align: top;
1722+ width: 25.5%;
1723+}
1724+div.threecolumn_piece ul {
1725+ list-style-type: none;
1726+ padding-left: 0px;
1727+ margin-top: 2px;
1728+}
1729+div.threecolumn_piece p {
1730+ margin-bottom: 7px;
1731+ color: #5C626E;
1732+ text-decoration: none;
1733+ font-weight: bold;
1734+}
1735+div.threecolumn_piece li {
1736+ padding-left: 0px;
1737+ margin-bottom: 5px;
1738+}
1739+div.threecolumn_piece a {
1740+ font-weight: normal;
1741+}
1742+/* Add style to guide page*/
1743+.fourcolumn_area
1744+{
1745+ padding-top: 20px;
1746+ padding-bottom: 20px;
1747+}
1748+.fourcolumn_piece
1749+{
1750+ display: inline-block;
1751+ margin-left: 35px;
1752+ margin-top: 8px;
1753+ padding: 0;
1754+ vertical-align: top;
1755+ width: 21.3%;
1756+}
1757+div.fourcolumn_piece ul {
1758+ list-style-type: none;
1759+ padding-left: 0px;
1760+ margin-top: 2px;
1761+}
1762+div.fourcolumn_piece p {
1763+ margin-bottom: 7px;
1764+ color: #40444D;
1765+ text-decoration: none;
1766+ font-weight: bold;
1767+}
1768+div.fourcolumn_piece li {
1769+ padding-left: 0px;
1770+ margin-bottom: 5px;
1771+}
1772+div.fourcolumn_piece a {
1773+ font-weight: normal;
1774+}
1775
1776=== added file 'documentation/cpp/css/reset.css'
1777--- documentation/cpp/css/reset.css 1970-01-01 00:00:00 +0000
1778+++ documentation/cpp/css/reset.css 2013-07-15 19:54:23 +0000
1779@@ -0,0 +1,8 @@
1780+/*
1781+Copyright (c) 2010, Yahoo! Inc. All rights reserved.
1782+Code licensed under the BSD License:
1783+http://developer.yahoo.com/yui/license.html
1784+version: 3.3.0
1785+build: 3167
1786+*/
1787+html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;}
1788\ No newline at end of file
1789
1790=== added file 'documentation/cpp/css/scratch.css'
1791--- documentation/cpp/css/scratch.css 1970-01-01 00:00:00 +0000
1792+++ documentation/cpp/css/scratch.css 2013-07-15 19:54:23 +0000
1793@@ -0,0 +1,61 @@
1794+body {
1795+ margin: 0;
1796+}
1797+
1798+
1799+div.toc ul {
1800+ padding: 0;
1801+}
1802+
1803+div.toc li {
1804+ margin-bottom: 3px;
1805+}
1806+
1807+h1.title {
1808+ font-size: 36px;
1809+ line-height: 1.1;
1810+ font-weight: normal;
1811+}
1812+h0, h2 {
1813+ font-size: 24px;
1814+ line-height: 1.2;
1815+ margin: 14px 0;
1816+ font-weight: normal;
1817+ display: block;
1818+}
1819+a:hover {
1820+ color: #dd4814;
1821+ text-decoration: underline;
1822+ outline: 0;
1823+}
1824+table, pre {
1825+ border-radius: 0;
1826+}
1827+
1828+.annotated td {
1829+ padding: 0.8em 1em 0.3em;
1830+}
1831+.wrapper {
1832+ width: 940px;
1833+ margin: 0 auto;
1834+}
1835+.main-content {
1836+ width: 668px;
1837+ position: relative;
1838+ left: 270px;
1839+}
1840+.title {
1841+ margin-left: -270px;
1842+ margin-top: 30px;
1843+ margin-bottom: 50px;
1844+}
1845+.toc {
1846+ margin-left: -270px;
1847+ font-size: 100%;
1848+ margin-bottom: 40px;
1849+ padding: 0;
1850+ z-index: 2;
1851+ position: absolute;
1852+ top: 100px;
1853+ width: 250px;
1854+}
1855
1856=== added directory 'documentation/cpp/pages'
1857=== added file 'documentation/cpp/pages/context.dox'
1858--- documentation/cpp/pages/context.dox 1970-01-01 00:00:00 +0000
1859+++ documentation/cpp/pages/context.dox 2013-07-15 19:54:23 +0000
1860@@ -0,0 +1,61 @@
1861+/*!
1862+\page page_contexts Action Contexts
1863+
1864+\section sec_overview Overview
1865+Application which has different views needs to manage it actions based on the currently active view;
1866+not all of the actions supported by the application might be relevant or applicable on all of the views.
1867+
1868+Therefore Unity Action API provides action contexts; a context groups actions together and by providing multiple contexts
1869+the developer is able to control the visibility of the actions. The ActionManager then exposes the actions from
1870+these different contexts.
1871+
1872+\image html context_overview.png
1873+
1874+Each application has one global context; the actions in this context are always available. The application may have one or more
1875+additional local context of which only one can be active at a time. The ActionManager merges the global context and the active local
1876+context together; the actions available at any given time is the union of the global context and the active local context.
1877+
1878+\image html multiple_contexts.png
1879+
1880+
1881+\section sec_single_context Applications with Single Context
1882+For applications that do not require multiple contexts using the API is straight forward as the
1883+ActionManager provides the global context automatically.
1884+
1885+First, create the Action:
1886+\snippet action-context/action-context.cpp create global action
1887+
1888+And add it to the ActionManager:
1889+\snippet action-context/action-context.cpp add global to manager
1890+
1891+myAction is now added to the global context.
1892+
1893+
1894+\section sec_multiple_contexts Applications with Multiple Contexts
1895+When multiple contexts are needed the developer creates suitable number of ActionContext objects,
1896+adds the actions to the contexts, adds the contexts to the manager and sets the active one.
1897+
1898+Setting the active context must be managed by the developer. The can only be one active
1899+local context at a time.
1900+
1901+Create the local actions:
1902+\snippet action-context/action-context.cpp create local actions
1903+
1904+Create the local contexts:
1905+\snippet action-context/action-context.cpp create contexts
1906+
1907+Add the local actions to the contexts:
1908+\snippet action-context/action-context.cpp add context actions
1909+
1910+Add the local contexts to the manager:
1911+\snippet action-context/action-context.cpp add local ctx to manager
1912+
1913+Manage the active context by setting the active property on any of them:
1914+\snippet action-context/action-context.cpp set context active
1915+Setting an another context active later will inactivate the previously active one.
1916+
1917+---
1918+The complete example:
1919+\include action-context/action-context.cpp
1920+
1921+*/
1922
1923=== added file 'documentation/cpp/pages/future-plans.dox'
1924--- documentation/cpp/pages/future-plans.dox 1970-01-01 00:00:00 +0000
1925+++ documentation/cpp/pages/future-plans.dox 2013-07-15 19:54:23 +0000
1926@@ -0,0 +1,29 @@
1927+/*!
1928+\page page_future-plans Future Development Plans
1929+
1930+\section sec_action Action
1931+\subsection sec_action-state State Property
1932+
1933+Action should be able to hold a state. State is persistent compared to the onTriggered() value.
1934+State allows us to do more complex interaction with the external platform components.
1935+
1936+\section sec_preview-action Preview Action
1937+\subsection sec_preview-action-modes Preview Modes
1938+Currently the PreviewAction does all the previews "live;" the values update continuously and the application is
1939+expected to generate the preview on constantly.
1940+
1941+This can be problematic if the application is unable to generate a preview or generating the preview is so expensive
1942+resource-wise that it's not feasible to do a live preview.
1943+
1944+In the future the PreviewAction will offer more preview modes which allows the developer to specify manual or partial previews.
1945+
1946+\subsection sec_preview-action-layout Layout for PreviewParameters
1947+Currently the PreviewAction does not offer a way to control the layout of the PreviewParameters. In the future a layout support could be added.
1948+
1949+\subsection sec_preview-action-more-parameters Additional Preview Parameters
1950+Currently the only supported preview parameter is the PreviewRangeParameter. We need more parameter types like Text, Boolean and ListSelection.
1951+
1952+\section sec_context ActionContext
1953+\subsection sec_custom-toolbar-item Custom HUD Toolbar Items
1954+Application should be able to provide their own custom toolbar items in the HUD toolbar.
1955+*/
1956
1957=== added file 'documentation/cpp/pages/mainpage.dox'
1958--- documentation/cpp/pages/mainpage.dox 1970-01-01 00:00:00 +0000
1959+++ documentation/cpp/pages/mainpage.dox 2013-07-15 19:54:23 +0000
1960@@ -0,0 +1,36 @@
1961+/*!
1962+\mainpage Unity Action API
1963+
1964+\tableofcontents
1965+
1966+\section sec_introduction Introduction
1967+
1968+Unity Action API offers a way to easily integrate with the Unity components outside of the application such as the Launcher, HUD, AppMenu and MessagingMenu.
1969+
1970+Applications have internally different types of actions with different life-cycles. Some actions are application wide that are relevant and
1971+available throughout the whole life-cycle of the application. Other actions are context specific and only available when the application is in
1972+certain visual state, such as in image editing mode. See \ref page_contexts "Action Contexts" for more details.
1973+
1974+Application can define application wide actions dynamically during runtime and as offline (jumplist) actions that are available even if the
1975+application is not running. Activating an offline action will launch the application when necessary.
1976+
1977+Unity Action API can be used with three ways:
1978+ - \ref using-cpp "using this Qt C++ API"
1979+ - Using the QML module directly (see the QML documentation)
1980+ - Using the UI Toolkit
1981+
1982+UI Toolkit simplifies the ActionContext management and provides ActionManager as part of the MainView. See the UI Toolkit documentation for
1983+more details.
1984+
1985+\section sec_general General Topics
1986+
1987+ - \ref page_contexts "Action Contexts"
1988+ - \ref page_preview-actions "Preview Actions"
1989+ - \ref page_platform-integration "Platform Integration"
1990+ - \ref page_offline-actions "Offline Actions"
1991+ - \ref page_future-plans "Future Development Plans"
1992+
1993+\section sec_bug_reports Reporting Bugs
1994+If you find any problems with the or this documentation,
1995+please file a bug in Unity Action API [Launchpad page](https://bugs.launchpad.net/unity-action-api).
1996+*/
1997
1998=== added file 'documentation/cpp/pages/offline-actions.dox'
1999--- documentation/cpp/pages/offline-actions.dox 1970-01-01 00:00:00 +0000
2000+++ documentation/cpp/pages/offline-actions.dox 2013-07-15 19:54:23 +0000
2001@@ -0,0 +1,31 @@
2002+/*!
2003+\page page_offline-actions Offline Actions
2004+
2005+Applications can define offline (jump list) actions in their <i>.desktop</i> files. These actions are available in the Launcher,
2006+AppMenu, HUD and MessagingMenu even if the application is not running. When an offline action is executed and the application
2007+is not running the application is started and executes the given action on startup, but for the user it does not make any
2008+difference if the application is running or not prior to the action invocation.
2009+
2010+---
2011+
2012+This example assumes we have a mail application, <i>MailApp</i>. This application defines offline actions in <i>mail-app.desktop</i>:
2013+\include mail-app/mail-app.desktop
2014+
2015+The desktop file's <i>Actions</i> key lists the offline actions. Each action then has its own group entry in the <i>.desktop</i> file.
2016+<i>MailApp</i> defines two offline actions: <i>Compose</i> and <i>Contacts</i>.
2017+
2018+By leaving the <i>Exec</i> keys empty for the actions the platform will invoke the Unity Actions defined by the application.
2019+
2020+Now, the Application has to define corresponding actions in it's code:
2021+\snippet mail-app/mail-app.cpp setting the compose name
2022+\snippet mail-app/mail-app.cpp setting the contacts name
2023+
2024+And finally add the actions to the manager.
2025+\snippet mail-app/mail-app.cpp add to manager
2026+
2027+---
2028+
2029+Here is the full example also showing the connections to the Action::triggered() signal:
2030+\include mail-app/mail-app.cpp
2031+
2032+*/
2033
2034=== added file 'documentation/cpp/pages/platform-integration.dox'
2035--- documentation/cpp/pages/platform-integration.dox 1970-01-01 00:00:00 +0000
2036+++ documentation/cpp/pages/platform-integration.dox 2013-07-15 19:54:23 +0000
2037@@ -0,0 +1,15 @@
2038+/*!
2039+\page page_platform-integration Platform Integration
2040+
2041+Unity Action API offers a way for application to integrate with the platform components such as the Unity Launcher and the Unity HUD.
2042+The ActionManager exports the actions to D-Bus which allows external components and even 3rd party applications to interact with the actions.
2043+
2044+\image html images/platform_integration.png "Platform Integration through D-Bus."
2045+
2046+
2047+One of the key benefits of Unity Action API is that it allows seamless integration with the Unity HUD; All Unity Actions are available to
2048+the HUD once they have been added to the ActionManager.
2049+
2050+\image html images/hud_screenshot.jpg "The HUD showing some actions."
2051+
2052+*/
2053
2054=== added file 'documentation/cpp/pages/preview-actions.dox'
2055--- documentation/cpp/pages/preview-actions.dox 1970-01-01 00:00:00 +0000
2056+++ documentation/cpp/pages/preview-actions.dox 2013-07-15 19:54:23 +0000
2057@@ -0,0 +1,62 @@
2058+/*!
2059+\page page_preview-actions Preview Actions
2060+
2061+The preview action is an action that allows the application to generate a preview of the action before
2062+the action is applied. The preview is controlled by the HUD UI.
2063+
2064+PreviewActions contain one or more parameters which form the preview parameters of the action.
2065+
2066+The PreviewAction has additional extra requirements compared to other Actions:
2067+- It can have multiple parameters whose values can be seen and changed over the bus
2068+- The parameters' ordering can be specified by client code
2069+- It adds new signals to control the preview mode: started, cancelled, resetted
2070+
2071+The ordering of the parameters is specified by the order in which the actions are defined in the parameters list.
2072+
2073+PreviewAction does not have a value of it's own. Instead the values of the parameters provide the information
2074+on which the preview is generated.
2075+
2076+\image html hud_parameters.jpg "HUD UI showing Color Balance action with four slider parameters"
2077+
2078+\section sec_control_signals Control Signals
2079+Diagram describing when the different signals are emitted:
2080+\image html preview_action_signals.png
2081+
2082+<i>started</i> signal informs the application that it must set up a preview view and start updating the
2083+preview based on the values of the defined preview parameters.
2084+
2085+<i>resetted</i> signal informs the application that it has to reset the parameter values to their original values.
2086+
2087+<i>cancelled</i> signal informs the application that the user cancelled the PreviewAction. At this point the application
2088+must return the the state it was in at the time the <i>started()</i> signal was triggered without applying any changes.
2089+
2090+<i>triggered</i> signal informs the application the user wants the changes to be applied.
2091+
2092+\section sec_example Example
2093+
2094+This example shows how to create a PreviewAction with a single range parameter.
2095+
2096+First a PreviewAction is created and set up:
2097+\snippet preview-action/preview-action.cpp create previewaction
2098+
2099+Then a PreviewRangeParameter:
2100+\snippet preview-action/preview-action.cpp create rangeparameter
2101+
2102+After all the parameters have been created they are added to the PreviewAction:
2103+\snippet preview-action/preview-action.cpp set previewaction parameters
2104+
2105+And finally the PreviewAction is added to the ActionManager:
2106+\snippet preview-action/preview-action.cpp add to manager
2107+
2108+Then hooking up the control signals:
2109+\snippet preview-action/preview-action.cpp connect previewaction signals
2110+
2111+And not forgetting the parameter value updates:
2112+\snippet preview-action/preview-action.cpp connect parameter signals
2113+
2114+---
2115+
2116+The complete example:
2117+\include examples/preview-action/preview-action.cpp
2118+
2119+*/
2120
2121=== added file 'documentation/cpp/pages/using-cpp.dox'
2122--- documentation/cpp/pages/using-cpp.dox 1970-01-01 00:00:00 +0000
2123+++ documentation/cpp/pages/using-cpp.dox 2013-07-15 19:54:23 +0000
2124@@ -0,0 +1,23 @@
2125+/*!
2126+\page using-cpp Using the C++ API
2127+
2128+Install the development headers:
2129+
2130+\code{.txt}
2131+sudo apt-get install libunity-action-qt1-dev
2132+\endcode
2133+
2134+Use pkg-config to get the necessary compilation flags:
2135+
2136+\code{.txt}
2137+$ g++ myapp.cpp `pkg-config --cflags --libs unity-action-qt-1` -o myapp
2138+\endcode
2139+
2140+The headers can then be included as:
2141+
2142+\code{.cpp}
2143+// includes the unity::action::Action class
2144+#include <unity/action/Action>
2145+\endcode
2146+
2147+*/
2148
2149=== added file 'documentation/cpp/ubuntu-appdev-site-footer.html'
2150--- documentation/cpp/ubuntu-appdev-site-footer.html 1970-01-01 00:00:00 +0000
2151+++ documentation/cpp/ubuntu-appdev-site-footer.html 2013-07-15 19:54:23 +0000
2152@@ -0,0 +1,53 @@
2153+</div></div>
2154+<div class="shadow"></div>
2155+<footer>
2156+ <div>
2157+ <nav role="navigation" class="clearfix">
2158+ <ul>
2159+ <li><a href="/get-started">Get started</a></li>
2160+ <li class="page_item page-item-16"><a href="http://developer.ubuntu.com/get-started/quickly-workflow/">Quickly workflow</a></li>
2161+ <li class="page_item page-item-18"><a href="http://developer.ubuntu.com/get-started/qt-creator/">Qt Creator</a></li>
2162+ <li class="page_item page-item-20"><a href="http://developer.ubuntu.com/get-started/eclipse/">Eclipse</a></li>
2163+ <li class="page_item page-item-22"><a href="http://developer.ubuntu.com/get-started/monodevelop/">MonoDevelop</a></li>
2164+ </ul>
2165+ <ul>
2166+ <li><a href="/resources">Resources</a></li>
2167+ <li><a href="/resources/tools/quickly">Quickly</a></li>
2168+ <li><a href="/resources/platform/api">API</a></li>
2169+ <li><a href="/resources/platform/documentation/platform-diagram">Platform overview</a></li>
2170+ </ul>
2171+ <ul>
2172+ <li><a href="/publish">Publish</a></li>
2173+ <li class="page_item page-item-24"><a href="http://developer.ubuntu.com/publish/commercial-software-faqs/">Commercial software FAQs</a></li>
2174+ <li class="page_item page-item-34"><a href="http://developer.ubuntu.com/publish/application-states/">Application states</a></li>
2175+ <li class="page_item page-item-577"><a href="http://developer.ubuntu.com/publish/my-apps-packages/">Uploading your app</a></li>
2176+ <li class="page_item page-item-404"><a href="http://developer.ubuntu.com/publish/ubuntu-software-centre/">Ubuntu Software Centre</a></li>
2177+ <li class="page_item page-item-427"><a href="http://developer.ubuntu.com/publish/licence-key-infrastructure/">Licence key infrastructure</a></li>
2178+ <li class="page_item page-item-1230"><a href="http://developer.ubuntu.com/publish/updating-your-app/">Updating your app</a></li>
2179+ </ul>
2180+ <ul>
2181+ <li><a href="/community">Community</a></li>
2182+ <li class="page_item page-item-28"><a href="http://developer.ubuntu.com/community/app-developer-blog/">App Developer Blog</a></li>
2183+ <li class="page_item page-item-30"><a href="http://developer.ubuntu.com/community/submit-a-tutorial/">Submit a tutorial</a></li>
2184+ <li class="page_item page-item-32"><a href="http://developer.ubuntu.com/community/app-review-board-charter/">App Review Board charter</a></li>
2185+ <li class="page_item page-item-2987"><a href="http://developer.ubuntu.com/community/on-air/">On air</a>
2186+ <ul class='children'>
2187+ <li class="page_item page-item-3066"><a href="http://developer.ubuntu.com/community/on-air/recordings/">Recordings</a></li>
2188+ </ul>
2189+ </li>
2190+ </ul>
2191+ <ul class="last">
2192+ <li><a href="https://myapps.developer.ubuntu.com/dev">My Apps</a></li>
2193+ <li><a href="https://myapps.developer.ubuntu.com/openid/login/?next=/dev">Sign in or register</a></li>
2194+ <li><a href="https://myapps.developer.ubuntu.com/dev/account">My account</a></li>
2195+ </ul>
2196+ </nav>
2197+ <p>&copy; 2013 Canonical Ltd. Ubuntu and Canonical are registered trademarks of Canonical Ltd.
2198+ <a class="link-bug" href="https://bugs.launchpad.net/ubuntudeveloperportal/+filebug">
2199+ Report a bug on this site
2200+ </a>
2201+ </p>
2202+ </div>
2203+</footer>
2204+<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
2205+<script type="text/javascript" src="http://developer.ubuntu.com/wp-content/themes/wordpress-theme-ubuntudeveloper/js/base.js"></script>\n"
2206
2207=== added file 'documentation/cpp/ubuntu-appdev-site-header.html'
2208--- documentation/cpp/ubuntu-appdev-site-header.html 1970-01-01 00:00:00 +0000
2209+++ documentation/cpp/ubuntu-appdev-site-header.html 2013-07-15 19:54:23 +0000
2210@@ -0,0 +1,35 @@
2211+<header>
2212+ <div class="header-login">
2213+ <ul>
2214+ <li><a href="https://myapps.developer.ubuntu.com/openid/login/?next\=/dev">Sign in or register</a></li>
2215+ </ul>
2216+ </div>
2217+ <div class="header-navigation">
2218+ <div>
2219+ <nav role="navigation">
2220+ <ul>
2221+ <li class="page_item page-item-5"><a href="http://developer.ubuntu.com/">Home</a></li>
2222+ <li class="page_item page-item-7"><a href="http://developer.ubuntu.com/get-started/">Get started</a></li>
2223+ <li class="page_item page-item-9"><a href="http://developer.ubuntu.com/resources/">Resources</a></li>
2224+ <li class="page_item page-item-11"><a href="http://developer.ubuntu.com/publish/">Publish</a></li>
2225+ <li class="page_item page-item-13"><a href="http://developer.ubuntu.com/community/">Community</a></li>
2226+ <li><a href="https://myapps.developer.ubuntu.com/dev">My Apps</a></li>
2227+ <li>
2228+ <form id="form-search" method="get" action="/">
2229+ <fieldset>
2230+ <input id="input-search" type="text" name="s" value="Search" />
2231+ </fieldset>
2232+ </form>
2233+ </li>
2234+ </ul>
2235+ </nav>
2236+ <a class="logo-ubuntu" href="/"><img src="http://developer.ubuntu.com/wp-content/themes/wordpress-theme-ubuntudeveloper/img/logo-ubuntu.png" width="119" height="27" alt="Ubuntu logo" /></a>
2237+ <h2><a href="/">App Developer</a></h2>
2238+ </div>
2239+ </div>
2240+
2241+</header>
2242+<div class="wrapper">
2243+ <div class="main-content">\n"
2244+
2245+
2246
2247=== renamed directory 'documentation/qml/images' => 'documentation/images'
2248=== added file 'documentation/images/context_overview.png'
2249Binary files documentation/images/context_overview.png 1970-01-01 00:00:00 +0000 and documentation/images/context_overview.png 2013-07-15 19:54:23 +0000 differ
2250=== added file 'documentation/images/context_overview.svg'
2251--- documentation/images/context_overview.svg 1970-01-01 00:00:00 +0000
2252+++ documentation/images/context_overview.svg 2013-07-15 19:54:23 +0000
2253@@ -0,0 +1,2851 @@
2254+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2255+<!-- Created with Inkscape (http://www.inkscape.org/) -->
2256+
2257+<svg
2258+ xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
2259+ xmlns:dc="http://purl.org/dc/elements/1.1/"
2260+ xmlns:cc="http://creativecommons.org/ns#"
2261+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
2262+ xmlns:svg="http://www.w3.org/2000/svg"
2263+ xmlns="http://www.w3.org/2000/svg"
2264+ xmlns:xlink="http://www.w3.org/1999/xlink"
2265+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
2266+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
2267+ width="744.09448"
2268+ height="524.40942"
2269+ id="svg5430"
2270+ version="1.1"
2271+ inkscape:version="0.48.4 r9939"
2272+ sodipodi:docname="context_overview.svg"
2273+ inkscape:export-filename="/home/antti/branches/unity-action-api/documentation/documentation/images/platform_integration.png"
2274+ inkscape:export-xdpi="90"
2275+ inkscape:export-ydpi="90">
2276+ <defs
2277+ id="defs5432">
2278+ <pattern
2279+ inkscape:collect="always"
2280+ xlink:href="#pattern8740"
2281+ id="pattern8873"
2282+ patternTransform="translate(377.68817,1264.5873)" />
2283+ <marker
2284+ inkscape:stockid="Arrow2Mend"
2285+ orient="auto"
2286+ refY="0"
2287+ refX="0"
2288+ id="Arrow2Mend"
2289+ style="overflow:visible">
2290+ <path
2291+ id="path6471"
2292+ style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
2293+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
2294+ transform="scale(-0.6,-0.6)"
2295+ inkscape:connector-curvature="0" />
2296+ </marker>
2297+ <linearGradient
2298+ id="linearGradient5950"
2299+ osb:paint="solid">
2300+ <stop
2301+ style="stop-color:#000000;stop-opacity:1;"
2302+ offset="0"
2303+ id="stop5952" />
2304+ </linearGradient>
2305+ <pattern
2306+ patternUnits="userSpaceOnUse"
2307+ width="215.10796"
2308+ height="215.08854"
2309+ patternTransform="translate(-480.55418,865.81714)"
2310+ id="pattern7197">
2311+ <g
2312+ inkscape:label="Layer 1"
2313+ id="layer1-1"
2314+ transform="translate(-9.3710499,-827.89408)">
2315+ <g
2316+ id="g9191">
2317+ <path
2318+ transform="matrix(0.11666667,0,0,0.11666667,18.059075,826.24616)"
2319+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2320+ sodipodi:ry="10.629921"
2321+ sodipodi:rx="10.629921"
2322+ sodipodi:cy="24.803141"
2323+ sodipodi:cx="-63.779526"
2324+ id="path8238"
2325+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2326+ sodipodi:type="arc" />
2327+ <path
2328+ transform="matrix(0.11666667,0,0,0.11666667,39.334701,826.24616)"
2329+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2330+ sodipodi:ry="10.629921"
2331+ sodipodi:rx="10.629921"
2332+ sodipodi:cy="24.803141"
2333+ sodipodi:cx="-63.779526"
2334+ id="path8238-9"
2335+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2336+ sodipodi:type="arc" />
2337+ <path
2338+ transform="matrix(0.11666667,0,0,0.11666667,60.594544,826.24616)"
2339+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2340+ sodipodi:ry="10.629921"
2341+ sodipodi:rx="10.629921"
2342+ sodipodi:cy="24.803141"
2343+ sodipodi:cx="-63.779526"
2344+ id="path8238-4"
2345+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2346+ sodipodi:type="arc" />
2347+ <path
2348+ transform="matrix(0.11666667,0,0,0.11666667,81.854387,826.24616)"
2349+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2350+ sodipodi:ry="10.629921"
2351+ sodipodi:rx="10.629921"
2352+ sodipodi:cy="24.803141"
2353+ sodipodi:cx="-63.779526"
2354+ id="path8238-0"
2355+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2356+ sodipodi:type="arc" />
2357+ <path
2358+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,826.24616)"
2359+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2360+ sodipodi:ry="10.629921"
2361+ sodipodi:rx="10.629921"
2362+ sodipodi:cy="24.803141"
2363+ sodipodi:cx="-63.779526"
2364+ id="path8238-8"
2365+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2366+ sodipodi:type="arc" />
2367+ <path
2368+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,826.24616)"
2369+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2370+ sodipodi:ry="10.629921"
2371+ sodipodi:rx="10.629921"
2372+ sodipodi:cy="24.803141"
2373+ sodipodi:cx="-63.779526"
2374+ id="path8238-6"
2375+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2376+ sodipodi:type="arc" />
2377+ <path
2378+ transform="matrix(0.11666667,0,0,0.11666667,145.63391,826.24616)"
2379+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2380+ sodipodi:ry="10.629921"
2381+ sodipodi:rx="10.629921"
2382+ sodipodi:cy="24.803141"
2383+ sodipodi:cx="-63.779526"
2384+ id="path8238-5"
2385+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2386+ sodipodi:type="arc" />
2387+ <path
2388+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,826.24616)"
2389+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2390+ sodipodi:ry="10.629921"
2391+ sodipodi:rx="10.629921"
2392+ sodipodi:cy="24.803141"
2393+ sodipodi:cx="-63.779526"
2394+ id="path8238-2"
2395+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2396+ sodipodi:type="arc" />
2397+ <path
2398+ transform="matrix(0.11666667,0,0,0.11666667,188.1536,826.24616)"
2399+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2400+ sodipodi:ry="10.629921"
2401+ sodipodi:rx="10.629921"
2402+ sodipodi:cy="24.803141"
2403+ sodipodi:cx="-63.779526"
2404+ id="path8238-82"
2405+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2406+ sodipodi:type="arc" />
2407+ <path
2408+ transform="matrix(0.11666667,0,0,0.11666667,209.41344,826.24616)"
2409+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2410+ sodipodi:ry="10.629921"
2411+ sodipodi:rx="10.629921"
2412+ sodipodi:cy="24.803141"
2413+ sodipodi:cx="-63.779526"
2414+ id="path8238-3"
2415+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2416+ sodipodi:type="arc" />
2417+ <path
2418+ transform="matrix(0.11666667,0,0,0.11666667,230.67328,826.24616)"
2419+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2420+ sodipodi:ry="10.629921"
2421+ sodipodi:rx="10.629921"
2422+ sodipodi:cy="24.803141"
2423+ sodipodi:cx="-63.779526"
2424+ id="path8238-08"
2425+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2426+ sodipodi:type="arc" />
2427+ </g>
2428+ <g
2429+ id="g9165">
2430+ <path
2431+ transform="matrix(0.11666667,0,0,0.11666667,18.059075,847.50601)"
2432+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2433+ sodipodi:ry="10.629921"
2434+ sodipodi:rx="10.629921"
2435+ sodipodi:cy="24.803141"
2436+ sodipodi:cx="-63.779526"
2437+ id="path8238-39"
2438+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2439+ sodipodi:type="arc" />
2440+ <path
2441+ transform="matrix(0.11666667,0,0,0.11666667,39.334701,847.50601)"
2442+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2443+ sodipodi:ry="10.629921"
2444+ sodipodi:rx="10.629921"
2445+ sodipodi:cy="24.803141"
2446+ sodipodi:cx="-63.779526"
2447+ id="path8238-9-6"
2448+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2449+ sodipodi:type="arc" />
2450+ <path
2451+ transform="matrix(0.11666667,0,0,0.11666667,60.594544,847.50601)"
2452+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2453+ sodipodi:ry="10.629921"
2454+ sodipodi:rx="10.629921"
2455+ sodipodi:cy="24.803141"
2456+ sodipodi:cx="-63.779526"
2457+ id="path8238-4-8"
2458+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2459+ sodipodi:type="arc" />
2460+ <path
2461+ transform="matrix(0.11666667,0,0,0.11666667,81.854387,847.50601)"
2462+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2463+ sodipodi:ry="10.629921"
2464+ sodipodi:rx="10.629921"
2465+ sodipodi:cy="24.803141"
2466+ sodipodi:cx="-63.779526"
2467+ id="path8238-0-2"
2468+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2469+ sodipodi:type="arc" />
2470+ <path
2471+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,847.50601)"
2472+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2473+ sodipodi:ry="10.629921"
2474+ sodipodi:rx="10.629921"
2475+ sodipodi:cy="24.803141"
2476+ sodipodi:cx="-63.779526"
2477+ id="path8238-8-5"
2478+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2479+ sodipodi:type="arc" />
2480+ <path
2481+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,847.50601)"
2482+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2483+ sodipodi:ry="10.629921"
2484+ sodipodi:rx="10.629921"
2485+ sodipodi:cy="24.803141"
2486+ sodipodi:cx="-63.779526"
2487+ id="path8238-6-2"
2488+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2489+ sodipodi:type="arc" />
2490+ <path
2491+ transform="matrix(0.11666667,0,0,0.11666667,145.63391,847.50601)"
2492+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2493+ sodipodi:ry="10.629921"
2494+ sodipodi:rx="10.629921"
2495+ sodipodi:cy="24.803141"
2496+ sodipodi:cx="-63.779526"
2497+ id="path8238-5-1"
2498+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2499+ sodipodi:type="arc" />
2500+ <path
2501+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,847.50601)"
2502+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2503+ sodipodi:ry="10.629921"
2504+ sodipodi:rx="10.629921"
2505+ sodipodi:cy="24.803141"
2506+ sodipodi:cx="-63.779526"
2507+ id="path8238-2-1"
2508+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2509+ sodipodi:type="arc" />
2510+ <path
2511+ transform="matrix(0.11666667,0,0,0.11666667,188.1536,847.50601)"
2512+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2513+ sodipodi:ry="10.629921"
2514+ sodipodi:rx="10.629921"
2515+ sodipodi:cy="24.803141"
2516+ sodipodi:cx="-63.779526"
2517+ id="path8238-82-3"
2518+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2519+ sodipodi:type="arc" />
2520+ <path
2521+ transform="matrix(0.11666667,0,0,0.11666667,209.41344,847.50601)"
2522+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2523+ sodipodi:ry="10.629921"
2524+ sodipodi:rx="10.629921"
2525+ sodipodi:cy="24.803141"
2526+ sodipodi:cx="-63.779526"
2527+ id="path8238-3-0"
2528+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2529+ sodipodi:type="arc" />
2530+ <path
2531+ transform="matrix(0.11666667,0,0,0.11666667,230.67328,847.50601)"
2532+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2533+ sodipodi:ry="10.629921"
2534+ sodipodi:rx="10.629921"
2535+ sodipodi:cy="24.803141"
2536+ sodipodi:cx="-63.779526"
2537+ id="path8238-08-7"
2538+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2539+ sodipodi:type="arc" />
2540+ </g>
2541+ <g
2542+ id="g9178"
2543+ transform="translate(-21.259846,0)">
2544+ <path
2545+ transform="matrix(0.11666667,0,0,0.11666667,39.318917,868.76585)"
2546+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2547+ sodipodi:ry="10.629921"
2548+ sodipodi:rx="10.629921"
2549+ sodipodi:cy="24.803141"
2550+ sodipodi:cx="-63.779526"
2551+ id="path8238-84"
2552+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2553+ sodipodi:type="arc" />
2554+ <path
2555+ transform="matrix(0.11666667,0,0,0.11666667,60.594543,868.76585)"
2556+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2557+ sodipodi:ry="10.629921"
2558+ sodipodi:rx="10.629921"
2559+ sodipodi:cy="24.803141"
2560+ sodipodi:cx="-63.779526"
2561+ id="path8238-9-7"
2562+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2563+ sodipodi:type="arc" />
2564+ <path
2565+ transform="matrix(0.11666667,0,0,0.11666667,81.854386,868.76585)"
2566+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2567+ sodipodi:ry="10.629921"
2568+ sodipodi:rx="10.629921"
2569+ sodipodi:cy="24.803141"
2570+ sodipodi:cx="-63.779526"
2571+ id="path8238-4-3"
2572+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2573+ sodipodi:type="arc" />
2574+ <path
2575+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,868.76585)"
2576+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2577+ sodipodi:ry="10.629921"
2578+ sodipodi:rx="10.629921"
2579+ sodipodi:cy="24.803141"
2580+ sodipodi:cx="-63.779526"
2581+ id="path8238-0-8"
2582+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2583+ sodipodi:type="arc" />
2584+ <path
2585+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,868.76585)"
2586+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2587+ sodipodi:ry="10.629921"
2588+ sodipodi:rx="10.629921"
2589+ sodipodi:cy="24.803141"
2590+ sodipodi:cx="-63.779526"
2591+ id="path8238-8-9"
2592+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2593+ sodipodi:type="arc" />
2594+ <path
2595+ transform="matrix(0.11666667,0,0,0.11666667,145.63392,868.76585)"
2596+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2597+ sodipodi:ry="10.629921"
2598+ sodipodi:rx="10.629921"
2599+ sodipodi:cy="24.803141"
2600+ sodipodi:cx="-63.779526"
2601+ id="path8238-6-1"
2602+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2603+ sodipodi:type="arc" />
2604+ <path
2605+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,868.76585)"
2606+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2607+ sodipodi:ry="10.629921"
2608+ sodipodi:rx="10.629921"
2609+ sodipodi:cy="24.803141"
2610+ sodipodi:cx="-63.779526"
2611+ id="path8238-5-6"
2612+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2613+ sodipodi:type="arc" />
2614+ <path
2615+ transform="matrix(0.11666667,0,0,0.11666667,188.15361,868.76585)"
2616+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2617+ sodipodi:ry="10.629921"
2618+ sodipodi:rx="10.629921"
2619+ sodipodi:cy="24.803141"
2620+ sodipodi:cx="-63.779526"
2621+ id="path8238-2-7"
2622+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2623+ sodipodi:type="arc" />
2624+ <path
2625+ transform="matrix(0.11666667,0,0,0.11666667,209.41345,868.76585)"
2626+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2627+ sodipodi:ry="10.629921"
2628+ sodipodi:rx="10.629921"
2629+ sodipodi:cy="24.803141"
2630+ sodipodi:cx="-63.779526"
2631+ id="path8238-82-8"
2632+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2633+ sodipodi:type="arc" />
2634+ <path
2635+ transform="matrix(0.11666667,0,0,0.11666667,230.67329,868.76585)"
2636+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2637+ sodipodi:ry="10.629921"
2638+ sodipodi:rx="10.629921"
2639+ sodipodi:cy="24.803141"
2640+ sodipodi:cx="-63.779526"
2641+ id="path8238-3-1"
2642+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2643+ sodipodi:type="arc" />
2644+ <path
2645+ transform="matrix(0.11666667,0,0,0.11666667,251.93313,868.76585)"
2646+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2647+ sodipodi:ry="10.629921"
2648+ sodipodi:rx="10.629921"
2649+ sodipodi:cy="24.803141"
2650+ sodipodi:cx="-63.779526"
2651+ id="path8238-08-8"
2652+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2653+ sodipodi:type="arc" />
2654+ </g>
2655+ <g
2656+ id="g9204"
2657+ transform="translate(-21.259846,0)">
2658+ <path
2659+ transform="matrix(0.11666667,0,0,0.11666667,39.318917,890.02569)"
2660+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2661+ sodipodi:ry="10.629921"
2662+ sodipodi:rx="10.629921"
2663+ sodipodi:cy="24.803141"
2664+ sodipodi:cx="-63.779526"
2665+ id="path8238-1"
2666+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2667+ sodipodi:type="arc" />
2668+ <path
2669+ transform="matrix(0.11666667,0,0,0.11666667,60.594543,890.02569)"
2670+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2671+ sodipodi:ry="10.629921"
2672+ sodipodi:rx="10.629921"
2673+ sodipodi:cy="24.803141"
2674+ sodipodi:cx="-63.779526"
2675+ id="path8238-9-5"
2676+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2677+ sodipodi:type="arc" />
2678+ <path
2679+ transform="matrix(0.11666667,0,0,0.11666667,81.854386,890.02569)"
2680+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2681+ sodipodi:ry="10.629921"
2682+ sodipodi:rx="10.629921"
2683+ sodipodi:cy="24.803141"
2684+ sodipodi:cx="-63.779526"
2685+ id="path8238-4-9"
2686+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2687+ sodipodi:type="arc" />
2688+ <path
2689+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,890.02569)"
2690+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2691+ sodipodi:ry="10.629921"
2692+ sodipodi:rx="10.629921"
2693+ sodipodi:cy="24.803141"
2694+ sodipodi:cx="-63.779526"
2695+ id="path8238-0-4"
2696+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2697+ sodipodi:type="arc" />
2698+ <path
2699+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,890.02569)"
2700+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2701+ sodipodi:ry="10.629921"
2702+ sodipodi:rx="10.629921"
2703+ sodipodi:cy="24.803141"
2704+ sodipodi:cx="-63.779526"
2705+ id="path8238-8-1"
2706+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2707+ sodipodi:type="arc" />
2708+ <path
2709+ transform="matrix(0.11666667,0,0,0.11666667,145.63392,890.02569)"
2710+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2711+ sodipodi:ry="10.629921"
2712+ sodipodi:rx="10.629921"
2713+ sodipodi:cy="24.803141"
2714+ sodipodi:cx="-63.779526"
2715+ id="path8238-6-0"
2716+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2717+ sodipodi:type="arc" />
2718+ <path
2719+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,890.02569)"
2720+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2721+ sodipodi:ry="10.629921"
2722+ sodipodi:rx="10.629921"
2723+ sodipodi:cy="24.803141"
2724+ sodipodi:cx="-63.779526"
2725+ id="path8238-5-8"
2726+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2727+ sodipodi:type="arc" />
2728+ <path
2729+ transform="matrix(0.11666667,0,0,0.11666667,188.15361,890.02569)"
2730+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2731+ sodipodi:ry="10.629921"
2732+ sodipodi:rx="10.629921"
2733+ sodipodi:cy="24.803141"
2734+ sodipodi:cx="-63.779526"
2735+ id="path8238-2-4"
2736+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2737+ sodipodi:type="arc" />
2738+ <path
2739+ transform="matrix(0.11666667,0,0,0.11666667,209.41345,890.02569)"
2740+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2741+ sodipodi:ry="10.629921"
2742+ sodipodi:rx="10.629921"
2743+ sodipodi:cy="24.803141"
2744+ sodipodi:cx="-63.779526"
2745+ id="path8238-82-9"
2746+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2747+ sodipodi:type="arc" />
2748+ <path
2749+ transform="matrix(0.11666667,0,0,0.11666667,230.67329,890.02569)"
2750+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2751+ sodipodi:ry="10.629921"
2752+ sodipodi:rx="10.629921"
2753+ sodipodi:cy="24.803141"
2754+ sodipodi:cx="-63.779526"
2755+ id="path8238-3-4"
2756+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2757+ sodipodi:type="arc" />
2758+ <path
2759+ transform="matrix(0.11666667,0,0,0.11666667,251.93313,890.02569)"
2760+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2761+ sodipodi:ry="10.629921"
2762+ sodipodi:rx="10.629921"
2763+ sodipodi:cy="24.803141"
2764+ sodipodi:cx="-63.779526"
2765+ id="path8238-08-2"
2766+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2767+ sodipodi:type="arc" />
2768+ </g>
2769+ <g
2770+ id="g9217">
2771+ <path
2772+ transform="matrix(0.11666667,0,0,0.11666667,18.059075,911.28553)"
2773+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2774+ sodipodi:ry="10.629921"
2775+ sodipodi:rx="10.629921"
2776+ sodipodi:cy="24.803141"
2777+ sodipodi:cx="-63.779526"
2778+ id="path8238-22"
2779+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2780+ sodipodi:type="arc" />
2781+ <path
2782+ transform="matrix(0.11666667,0,0,0.11666667,39.334701,911.28553)"
2783+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2784+ sodipodi:ry="10.629921"
2785+ sodipodi:rx="10.629921"
2786+ sodipodi:cy="24.803141"
2787+ sodipodi:cx="-63.779526"
2788+ id="path8238-9-73"
2789+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2790+ sodipodi:type="arc" />
2791+ <path
2792+ transform="matrix(0.11666667,0,0,0.11666667,60.594544,911.28553)"
2793+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2794+ sodipodi:ry="10.629921"
2795+ sodipodi:rx="10.629921"
2796+ sodipodi:cy="24.803141"
2797+ sodipodi:cx="-63.779526"
2798+ id="path8238-4-30"
2799+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2800+ sodipodi:type="arc" />
2801+ <path
2802+ transform="matrix(0.11666667,0,0,0.11666667,81.854387,911.28553)"
2803+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2804+ sodipodi:ry="10.629921"
2805+ sodipodi:rx="10.629921"
2806+ sodipodi:cy="24.803141"
2807+ sodipodi:cx="-63.779526"
2808+ id="path8238-0-5"
2809+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2810+ sodipodi:type="arc" />
2811+ <path
2812+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,911.28553)"
2813+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2814+ sodipodi:ry="10.629921"
2815+ sodipodi:rx="10.629921"
2816+ sodipodi:cy="24.803141"
2817+ sodipodi:cx="-63.779526"
2818+ id="path8238-8-3"
2819+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2820+ sodipodi:type="arc" />
2821+ <path
2822+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,911.28553)"
2823+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2824+ sodipodi:ry="10.629921"
2825+ sodipodi:rx="10.629921"
2826+ sodipodi:cy="24.803141"
2827+ sodipodi:cx="-63.779526"
2828+ id="path8238-6-00"
2829+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2830+ sodipodi:type="arc" />
2831+ <path
2832+ transform="matrix(0.11666667,0,0,0.11666667,145.63391,911.28553)"
2833+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2834+ sodipodi:ry="10.629921"
2835+ sodipodi:rx="10.629921"
2836+ sodipodi:cy="24.803141"
2837+ sodipodi:cx="-63.779526"
2838+ id="path8238-5-0"
2839+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2840+ sodipodi:type="arc" />
2841+ <path
2842+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,911.28553)"
2843+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2844+ sodipodi:ry="10.629921"
2845+ sodipodi:rx="10.629921"
2846+ sodipodi:cy="24.803141"
2847+ sodipodi:cx="-63.779526"
2848+ id="path8238-2-3"
2849+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2850+ sodipodi:type="arc" />
2851+ <path
2852+ transform="matrix(0.11666667,0,0,0.11666667,188.1536,911.28553)"
2853+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2854+ sodipodi:ry="10.629921"
2855+ sodipodi:rx="10.629921"
2856+ sodipodi:cy="24.803141"
2857+ sodipodi:cx="-63.779526"
2858+ id="path8238-82-80"
2859+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2860+ sodipodi:type="arc" />
2861+ <path
2862+ transform="matrix(0.11666667,0,0,0.11666667,209.41344,911.28553)"
2863+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2864+ sodipodi:ry="10.629921"
2865+ sodipodi:rx="10.629921"
2866+ sodipodi:cy="24.803141"
2867+ sodipodi:cx="-63.779526"
2868+ id="path8238-3-7"
2869+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2870+ sodipodi:type="arc" />
2871+ <path
2872+ transform="matrix(0.11666667,0,0,0.11666667,230.67328,911.28553)"
2873+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2874+ sodipodi:ry="10.629921"
2875+ sodipodi:rx="10.629921"
2876+ sodipodi:cy="24.803141"
2877+ sodipodi:cx="-63.779526"
2878+ id="path8238-08-6"
2879+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2880+ sodipodi:type="arc" />
2881+ <path
2882+ transform="matrix(0.11666667,0,0,0.11666667,18.059075,932.54538)"
2883+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2884+ sodipodi:ry="10.629921"
2885+ sodipodi:rx="10.629921"
2886+ sodipodi:cy="24.803141"
2887+ sodipodi:cx="-63.779526"
2888+ id="path8238-97"
2889+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2890+ sodipodi:type="arc" />
2891+ <path
2892+ transform="matrix(0.11666667,0,0,0.11666667,39.334701,932.54538)"
2893+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2894+ sodipodi:ry="10.629921"
2895+ sodipodi:rx="10.629921"
2896+ sodipodi:cy="24.803141"
2897+ sodipodi:cx="-63.779526"
2898+ id="path8238-9-77"
2899+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2900+ sodipodi:type="arc" />
2901+ <path
2902+ transform="matrix(0.11666667,0,0,0.11666667,60.594544,932.54538)"
2903+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2904+ sodipodi:ry="10.629921"
2905+ sodipodi:rx="10.629921"
2906+ sodipodi:cy="24.803141"
2907+ sodipodi:cx="-63.779526"
2908+ id="path8238-4-82"
2909+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2910+ sodipodi:type="arc" />
2911+ <path
2912+ transform="matrix(0.11666667,0,0,0.11666667,81.854387,932.54538)"
2913+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2914+ sodipodi:ry="10.629921"
2915+ sodipodi:rx="10.629921"
2916+ sodipodi:cy="24.803141"
2917+ sodipodi:cx="-63.779526"
2918+ id="path8238-0-6"
2919+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2920+ sodipodi:type="arc" />
2921+ <path
2922+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,932.54538)"
2923+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2924+ sodipodi:ry="10.629921"
2925+ sodipodi:rx="10.629921"
2926+ sodipodi:cy="24.803141"
2927+ sodipodi:cx="-63.779526"
2928+ id="path8238-8-55"
2929+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2930+ sodipodi:type="arc" />
2931+ <path
2932+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,932.54538)"
2933+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2934+ sodipodi:ry="10.629921"
2935+ sodipodi:rx="10.629921"
2936+ sodipodi:cy="24.803141"
2937+ sodipodi:cx="-63.779526"
2938+ id="path8238-6-8"
2939+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2940+ sodipodi:type="arc" />
2941+ <path
2942+ transform="matrix(0.11666667,0,0,0.11666667,145.63391,932.54538)"
2943+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2944+ sodipodi:ry="10.629921"
2945+ sodipodi:rx="10.629921"
2946+ sodipodi:cy="24.803141"
2947+ sodipodi:cx="-63.779526"
2948+ id="path8238-5-5"
2949+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2950+ sodipodi:type="arc" />
2951+ <path
2952+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,932.54538)"
2953+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2954+ sodipodi:ry="10.629921"
2955+ sodipodi:rx="10.629921"
2956+ sodipodi:cy="24.803141"
2957+ sodipodi:cx="-63.779526"
2958+ id="path8238-2-9"
2959+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2960+ sodipodi:type="arc" />
2961+ <path
2962+ transform="matrix(0.11666667,0,0,0.11666667,188.1536,932.54538)"
2963+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2964+ sodipodi:ry="10.629921"
2965+ sodipodi:rx="10.629921"
2966+ sodipodi:cy="24.803141"
2967+ sodipodi:cx="-63.779526"
2968+ id="path8238-82-7"
2969+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2970+ sodipodi:type="arc" />
2971+ <path
2972+ transform="matrix(0.11666667,0,0,0.11666667,209.41344,932.54538)"
2973+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2974+ sodipodi:ry="10.629921"
2975+ sodipodi:rx="10.629921"
2976+ sodipodi:cy="24.803141"
2977+ sodipodi:cx="-63.779526"
2978+ id="path8238-3-03"
2979+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2980+ sodipodi:type="arc" />
2981+ <path
2982+ transform="matrix(0.11666667,0,0,0.11666667,230.67328,932.54538)"
2983+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2984+ sodipodi:ry="10.629921"
2985+ sodipodi:rx="10.629921"
2986+ sodipodi:cy="24.803141"
2987+ sodipodi:cx="-63.779526"
2988+ id="path8238-08-1"
2989+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
2990+ sodipodi:type="arc" />
2991+ <path
2992+ transform="matrix(0.11666667,0,0,0.11666667,18.059075,953.80522)"
2993+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
2994+ sodipodi:ry="10.629921"
2995+ sodipodi:rx="10.629921"
2996+ sodipodi:cy="24.803141"
2997+ sodipodi:cx="-63.779526"
2998+ id="path8238-40"
2999+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3000+ sodipodi:type="arc" />
3001+ <path
3002+ transform="matrix(0.11666667,0,0,0.11666667,39.334701,953.80522)"
3003+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3004+ sodipodi:ry="10.629921"
3005+ sodipodi:rx="10.629921"
3006+ sodipodi:cy="24.803141"
3007+ sodipodi:cx="-63.779526"
3008+ id="path8238-9-772"
3009+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3010+ sodipodi:type="arc" />
3011+ <path
3012+ transform="matrix(0.11666667,0,0,0.11666667,60.594544,953.80522)"
3013+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3014+ sodipodi:ry="10.629921"
3015+ sodipodi:rx="10.629921"
3016+ sodipodi:cy="24.803141"
3017+ sodipodi:cx="-63.779526"
3018+ id="path8238-4-2"
3019+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3020+ sodipodi:type="arc" />
3021+ <path
3022+ transform="matrix(0.11666667,0,0,0.11666667,81.854387,953.80522)"
3023+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3024+ sodipodi:ry="10.629921"
3025+ sodipodi:rx="10.629921"
3026+ sodipodi:cy="24.803141"
3027+ sodipodi:cx="-63.779526"
3028+ id="path8238-0-23"
3029+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3030+ sodipodi:type="arc" />
3031+ <path
3032+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,953.80522)"
3033+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3034+ sodipodi:ry="10.629921"
3035+ sodipodi:rx="10.629921"
3036+ sodipodi:cy="24.803141"
3037+ sodipodi:cx="-63.779526"
3038+ id="path8238-8-4"
3039+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3040+ sodipodi:type="arc" />
3041+ <path
3042+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,953.80522)"
3043+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3044+ sodipodi:ry="10.629921"
3045+ sodipodi:rx="10.629921"
3046+ sodipodi:cy="24.803141"
3047+ sodipodi:cx="-63.779526"
3048+ id="path8238-6-5"
3049+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3050+ sodipodi:type="arc" />
3051+ <path
3052+ transform="matrix(0.11666667,0,0,0.11666667,145.63391,953.80522)"
3053+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3054+ sodipodi:ry="10.629921"
3055+ sodipodi:rx="10.629921"
3056+ sodipodi:cy="24.803141"
3057+ sodipodi:cx="-63.779526"
3058+ id="path8238-5-82"
3059+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3060+ sodipodi:type="arc" />
3061+ <path
3062+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,953.80522)"
3063+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3064+ sodipodi:ry="10.629921"
3065+ sodipodi:rx="10.629921"
3066+ sodipodi:cy="24.803141"
3067+ sodipodi:cx="-63.779526"
3068+ id="path8238-2-77"
3069+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3070+ sodipodi:type="arc" />
3071+ <path
3072+ transform="matrix(0.11666667,0,0,0.11666667,188.1536,953.80522)"
3073+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3074+ sodipodi:ry="10.629921"
3075+ sodipodi:rx="10.629921"
3076+ sodipodi:cy="24.803141"
3077+ sodipodi:cx="-63.779526"
3078+ id="path8238-82-86"
3079+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3080+ sodipodi:type="arc" />
3081+ <path
3082+ transform="matrix(0.11666667,0,0,0.11666667,209.41344,953.80522)"
3083+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3084+ sodipodi:ry="10.629921"
3085+ sodipodi:rx="10.629921"
3086+ sodipodi:cy="24.803141"
3087+ sodipodi:cx="-63.779526"
3088+ id="path8238-3-47"
3089+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3090+ sodipodi:type="arc" />
3091+ <path
3092+ transform="matrix(0.11666667,0,0,0.11666667,230.67328,953.80522)"
3093+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3094+ sodipodi:ry="10.629921"
3095+ sodipodi:rx="10.629921"
3096+ sodipodi:cy="24.803141"
3097+ sodipodi:cx="-63.779526"
3098+ id="path8238-08-5"
3099+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3100+ sodipodi:type="arc" />
3101+ <path
3102+ transform="matrix(0.11666667,0,0,0.11666667,18.059075,975.06506)"
3103+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3104+ sodipodi:ry="10.629921"
3105+ sodipodi:rx="10.629921"
3106+ sodipodi:cy="24.803141"
3107+ sodipodi:cx="-63.779526"
3108+ id="path8238-51"
3109+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3110+ sodipodi:type="arc" />
3111+ <path
3112+ transform="matrix(0.11666667,0,0,0.11666667,39.334701,975.06506)"
3113+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3114+ sodipodi:ry="10.629921"
3115+ sodipodi:rx="10.629921"
3116+ sodipodi:cy="24.803141"
3117+ sodipodi:cx="-63.779526"
3118+ id="path8238-9-3"
3119+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3120+ sodipodi:type="arc" />
3121+ <path
3122+ transform="matrix(0.11666667,0,0,0.11666667,60.594544,975.06506)"
3123+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3124+ sodipodi:ry="10.629921"
3125+ sodipodi:rx="10.629921"
3126+ sodipodi:cy="24.803141"
3127+ sodipodi:cx="-63.779526"
3128+ id="path8238-4-26"
3129+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3130+ sodipodi:type="arc" />
3131+ <path
3132+ transform="matrix(0.11666667,0,0,0.11666667,81.854387,975.06506)"
3133+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3134+ sodipodi:ry="10.629921"
3135+ sodipodi:rx="10.629921"
3136+ sodipodi:cy="24.803141"
3137+ sodipodi:cx="-63.779526"
3138+ id="path8238-0-1"
3139+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3140+ sodipodi:type="arc" />
3141+ <path
3142+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,975.06506)"
3143+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3144+ sodipodi:ry="10.629921"
3145+ sodipodi:rx="10.629921"
3146+ sodipodi:cy="24.803141"
3147+ sodipodi:cx="-63.779526"
3148+ id="path8238-8-7"
3149+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3150+ sodipodi:type="arc" />
3151+ <path
3152+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,975.06506)"
3153+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3154+ sodipodi:ry="10.629921"
3155+ sodipodi:rx="10.629921"
3156+ sodipodi:cy="24.803141"
3157+ sodipodi:cx="-63.779526"
3158+ id="path8238-6-7"
3159+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3160+ sodipodi:type="arc" />
3161+ <path
3162+ transform="matrix(0.11666667,0,0,0.11666667,145.63391,975.06506)"
3163+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3164+ sodipodi:ry="10.629921"
3165+ sodipodi:rx="10.629921"
3166+ sodipodi:cy="24.803141"
3167+ sodipodi:cx="-63.779526"
3168+ id="path8238-5-07"
3169+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3170+ sodipodi:type="arc" />
3171+ <path
3172+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,975.06506)"
3173+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3174+ sodipodi:ry="10.629921"
3175+ sodipodi:rx="10.629921"
3176+ sodipodi:cy="24.803141"
3177+ sodipodi:cx="-63.779526"
3178+ id="path8238-2-34"
3179+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3180+ sodipodi:type="arc" />
3181+ <path
3182+ transform="matrix(0.11666667,0,0,0.11666667,188.1536,975.06506)"
3183+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3184+ sodipodi:ry="10.629921"
3185+ sodipodi:rx="10.629921"
3186+ sodipodi:cy="24.803141"
3187+ sodipodi:cx="-63.779526"
3188+ id="path8238-82-35"
3189+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3190+ sodipodi:type="arc" />
3191+ <path
3192+ transform="matrix(0.11666667,0,0,0.11666667,209.41344,975.06506)"
3193+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3194+ sodipodi:ry="10.629921"
3195+ sodipodi:rx="10.629921"
3196+ sodipodi:cy="24.803141"
3197+ sodipodi:cx="-63.779526"
3198+ id="path8238-3-11"
3199+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3200+ sodipodi:type="arc" />
3201+ <path
3202+ transform="matrix(0.11666667,0,0,0.11666667,230.67328,975.06506)"
3203+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3204+ sodipodi:ry="10.629921"
3205+ sodipodi:rx="10.629921"
3206+ sodipodi:cy="24.803141"
3207+ sodipodi:cx="-63.779526"
3208+ id="path8238-08-85"
3209+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3210+ sodipodi:type="arc" />
3211+ <path
3212+ transform="matrix(0.11666667,0,0,0.11666667,18.059075,996.3249)"
3213+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3214+ sodipodi:ry="10.629921"
3215+ sodipodi:rx="10.629921"
3216+ sodipodi:cy="24.803141"
3217+ sodipodi:cx="-63.779526"
3218+ id="path8238-53"
3219+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3220+ sodipodi:type="arc" />
3221+ <path
3222+ transform="matrix(0.11666667,0,0,0.11666667,39.334701,996.3249)"
3223+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3224+ sodipodi:ry="10.629921"
3225+ sodipodi:rx="10.629921"
3226+ sodipodi:cy="24.803141"
3227+ sodipodi:cx="-63.779526"
3228+ id="path8238-9-0"
3229+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3230+ sodipodi:type="arc" />
3231+ <path
3232+ transform="matrix(0.11666667,0,0,0.11666667,60.594544,996.3249)"
3233+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3234+ sodipodi:ry="10.629921"
3235+ sodipodi:rx="10.629921"
3236+ sodipodi:cy="24.803141"
3237+ sodipodi:cx="-63.779526"
3238+ id="path8238-4-0"
3239+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3240+ sodipodi:type="arc" />
3241+ <path
3242+ transform="matrix(0.11666667,0,0,0.11666667,81.854387,996.3249)"
3243+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3244+ sodipodi:ry="10.629921"
3245+ sodipodi:rx="10.629921"
3246+ sodipodi:cy="24.803141"
3247+ sodipodi:cx="-63.779526"
3248+ id="path8238-0-3"
3249+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3250+ sodipodi:type="arc" />
3251+ <path
3252+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,996.3249)"
3253+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3254+ sodipodi:ry="10.629921"
3255+ sodipodi:rx="10.629921"
3256+ sodipodi:cy="24.803141"
3257+ sodipodi:cx="-63.779526"
3258+ id="path8238-8-2"
3259+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3260+ sodipodi:type="arc" />
3261+ <path
3262+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,996.3249)"
3263+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3264+ sodipodi:ry="10.629921"
3265+ sodipodi:rx="10.629921"
3266+ sodipodi:cy="24.803141"
3267+ sodipodi:cx="-63.779526"
3268+ id="path8238-6-71"
3269+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3270+ sodipodi:type="arc" />
3271+ <path
3272+ transform="matrix(0.11666667,0,0,0.11666667,145.63391,996.3249)"
3273+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3274+ sodipodi:ry="10.629921"
3275+ sodipodi:rx="10.629921"
3276+ sodipodi:cy="24.803141"
3277+ sodipodi:cx="-63.779526"
3278+ id="path8238-5-3"
3279+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3280+ sodipodi:type="arc" />
3281+ <path
3282+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,996.3249)"
3283+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3284+ sodipodi:ry="10.629921"
3285+ sodipodi:rx="10.629921"
3286+ sodipodi:cy="24.803141"
3287+ sodipodi:cx="-63.779526"
3288+ id="path8238-2-5"
3289+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3290+ sodipodi:type="arc" />
3291+ <path
3292+ transform="matrix(0.11666667,0,0,0.11666667,188.1536,996.3249)"
3293+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3294+ sodipodi:ry="10.629921"
3295+ sodipodi:rx="10.629921"
3296+ sodipodi:cy="24.803141"
3297+ sodipodi:cx="-63.779526"
3298+ id="path8238-82-70"
3299+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3300+ sodipodi:type="arc" />
3301+ <path
3302+ transform="matrix(0.11666667,0,0,0.11666667,209.41344,996.3249)"
3303+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3304+ sodipodi:ry="10.629921"
3305+ sodipodi:rx="10.629921"
3306+ sodipodi:cy="24.803141"
3307+ sodipodi:cx="-63.779526"
3308+ id="path8238-3-02"
3309+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3310+ sodipodi:type="arc" />
3311+ <path
3312+ transform="matrix(0.11666667,0,0,0.11666667,230.67328,996.3249)"
3313+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3314+ sodipodi:ry="10.629921"
3315+ sodipodi:rx="10.629921"
3316+ sodipodi:cy="24.803141"
3317+ sodipodi:cx="-63.779526"
3318+ id="path8238-08-23"
3319+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3320+ sodipodi:type="arc" />
3321+ <path
3322+ transform="matrix(0.11666667,0,0,0.11666667,18.059075,1017.5847)"
3323+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3324+ sodipodi:ry="10.629921"
3325+ sodipodi:rx="10.629921"
3326+ sodipodi:cy="24.803141"
3327+ sodipodi:cx="-63.779526"
3328+ id="path8238-406"
3329+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3330+ sodipodi:type="arc" />
3331+ <path
3332+ transform="matrix(0.11666667,0,0,0.11666667,39.334701,1017.5847)"
3333+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3334+ sodipodi:ry="10.629921"
3335+ sodipodi:rx="10.629921"
3336+ sodipodi:cy="24.803141"
3337+ sodipodi:cx="-63.779526"
3338+ id="path8238-9-2"
3339+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3340+ sodipodi:type="arc" />
3341+ <path
3342+ transform="matrix(0.11666667,0,0,0.11666667,60.594544,1017.5847)"
3343+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3344+ sodipodi:ry="10.629921"
3345+ sodipodi:rx="10.629921"
3346+ sodipodi:cy="24.803141"
3347+ sodipodi:cx="-63.779526"
3348+ id="path8238-4-07"
3349+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3350+ sodipodi:type="arc" />
3351+ <path
3352+ transform="matrix(0.11666667,0,0,0.11666667,81.854387,1017.5847)"
3353+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3354+ sodipodi:ry="10.629921"
3355+ sodipodi:rx="10.629921"
3356+ sodipodi:cy="24.803141"
3357+ sodipodi:cx="-63.779526"
3358+ id="path8238-0-13"
3359+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3360+ sodipodi:type="arc" />
3361+ <path
3362+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,1017.5847)"
3363+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3364+ sodipodi:ry="10.629921"
3365+ sodipodi:rx="10.629921"
3366+ sodipodi:cy="24.803141"
3367+ sodipodi:cx="-63.779526"
3368+ id="path8238-8-15"
3369+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3370+ sodipodi:type="arc" />
3371+ <path
3372+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,1017.5847)"
3373+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3374+ sodipodi:ry="10.629921"
3375+ sodipodi:rx="10.629921"
3376+ sodipodi:cy="24.803141"
3377+ sodipodi:cx="-63.779526"
3378+ id="path8238-6-84"
3379+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3380+ sodipodi:type="arc" />
3381+ <path
3382+ transform="matrix(0.11666667,0,0,0.11666667,145.63391,1017.5847)"
3383+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3384+ sodipodi:ry="10.629921"
3385+ sodipodi:rx="10.629921"
3386+ sodipodi:cy="24.803141"
3387+ sodipodi:cx="-63.779526"
3388+ id="path8238-5-88"
3389+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3390+ sodipodi:type="arc" />
3391+ <path
3392+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,1017.5847)"
3393+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3394+ sodipodi:ry="10.629921"
3395+ sodipodi:rx="10.629921"
3396+ sodipodi:cy="24.803141"
3397+ sodipodi:cx="-63.779526"
3398+ id="path8238-2-13"
3399+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3400+ sodipodi:type="arc" />
3401+ <path
3402+ transform="matrix(0.11666667,0,0,0.11666667,188.1536,1017.5847)"
3403+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3404+ sodipodi:ry="10.629921"
3405+ sodipodi:rx="10.629921"
3406+ sodipodi:cy="24.803141"
3407+ sodipodi:cx="-63.779526"
3408+ id="path8238-82-1"
3409+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3410+ sodipodi:type="arc" />
3411+ <path
3412+ transform="matrix(0.11666667,0,0,0.11666667,209.41344,1017.5847)"
3413+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3414+ sodipodi:ry="10.629921"
3415+ sodipodi:rx="10.629921"
3416+ sodipodi:cy="24.803141"
3417+ sodipodi:cx="-63.779526"
3418+ id="path8238-3-16"
3419+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3420+ sodipodi:type="arc" />
3421+ <path
3422+ transform="matrix(0.11666667,0,0,0.11666667,230.67328,1017.5847)"
3423+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3424+ sodipodi:ry="10.629921"
3425+ sodipodi:rx="10.629921"
3426+ sodipodi:cy="24.803141"
3427+ sodipodi:cx="-63.779526"
3428+ id="path8238-08-76"
3429+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3430+ sodipodi:type="arc" />
3431+ </g>
3432+ <g
3433+ id="g9285"
3434+ transform="translate(-21.259846,0)">
3435+ <path
3436+ transform="matrix(0.11666667,0,0,0.11666667,39.318917,1038.8446)"
3437+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3438+ sodipodi:ry="10.629921"
3439+ sodipodi:rx="10.629921"
3440+ sodipodi:cy="24.803141"
3441+ sodipodi:cx="-63.779526"
3442+ id="path8238-38"
3443+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3444+ sodipodi:type="arc" />
3445+ <path
3446+ transform="matrix(0.11666667,0,0,0.11666667,60.594543,1038.8446)"
3447+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3448+ sodipodi:ry="10.629921"
3449+ sodipodi:rx="10.629921"
3450+ sodipodi:cy="24.803141"
3451+ sodipodi:cx="-63.779526"
3452+ id="path8238-9-1"
3453+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3454+ sodipodi:type="arc" />
3455+ <path
3456+ transform="matrix(0.11666667,0,0,0.11666667,81.854386,1038.8446)"
3457+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3458+ sodipodi:ry="10.629921"
3459+ sodipodi:rx="10.629921"
3460+ sodipodi:cy="24.803141"
3461+ sodipodi:cx="-63.779526"
3462+ id="path8238-4-95"
3463+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3464+ sodipodi:type="arc" />
3465+ <path
3466+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,1038.8446)"
3467+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3468+ sodipodi:ry="10.629921"
3469+ sodipodi:rx="10.629921"
3470+ sodipodi:cy="24.803141"
3471+ sodipodi:cx="-63.779526"
3472+ id="path8238-0-11"
3473+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3474+ sodipodi:type="arc" />
3475+ <path
3476+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,1038.8446)"
3477+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3478+ sodipodi:ry="10.629921"
3479+ sodipodi:rx="10.629921"
3480+ sodipodi:cy="24.803141"
3481+ sodipodi:cx="-63.779526"
3482+ id="path8238-8-0"
3483+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3484+ sodipodi:type="arc" />
3485+ <path
3486+ transform="matrix(0.11666667,0,0,0.11666667,145.63392,1038.8446)"
3487+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3488+ sodipodi:ry="10.629921"
3489+ sodipodi:rx="10.629921"
3490+ sodipodi:cy="24.803141"
3491+ sodipodi:cx="-63.779526"
3492+ id="path8238-6-55"
3493+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3494+ sodipodi:type="arc" />
3495+ <path
3496+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,1038.8446)"
3497+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3498+ sodipodi:ry="10.629921"
3499+ sodipodi:rx="10.629921"
3500+ sodipodi:cy="24.803141"
3501+ sodipodi:cx="-63.779526"
3502+ id="path8238-5-68"
3503+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3504+ sodipodi:type="arc" />
3505+ <path
3506+ transform="matrix(0.11666667,0,0,0.11666667,188.15361,1038.8446)"
3507+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3508+ sodipodi:ry="10.629921"
3509+ sodipodi:rx="10.629921"
3510+ sodipodi:cy="24.803141"
3511+ sodipodi:cx="-63.779526"
3512+ id="path8238-2-18"
3513+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3514+ sodipodi:type="arc" />
3515+ <path
3516+ transform="matrix(0.11666667,0,0,0.11666667,209.41345,1038.8446)"
3517+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3518+ sodipodi:ry="10.629921"
3519+ sodipodi:rx="10.629921"
3520+ sodipodi:cy="24.803141"
3521+ sodipodi:cx="-63.779526"
3522+ id="path8238-82-802"
3523+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3524+ sodipodi:type="arc" />
3525+ <path
3526+ transform="matrix(0.11666667,0,0,0.11666667,230.67329,1038.8446)"
3527+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3528+ sodipodi:ry="10.629921"
3529+ sodipodi:rx="10.629921"
3530+ sodipodi:cy="24.803141"
3531+ sodipodi:cx="-63.779526"
3532+ id="path8238-3-13"
3533+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3534+ sodipodi:type="arc" />
3535+ <path
3536+ transform="matrix(0.11666667,0,0,0.11666667,251.93313,1038.8446)"
3537+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3538+ sodipodi:ry="10.629921"
3539+ sodipodi:rx="10.629921"
3540+ sodipodi:cy="24.803141"
3541+ sodipodi:cx="-63.779526"
3542+ id="path8238-08-9"
3543+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3544+ sodipodi:type="arc" />
3545+ </g>
3546+ </g>
3547+ </pattern>
3548+ <pattern
3549+ patternUnits="userSpaceOnUse"
3550+ width="237.40158"
3551+ height="237.40158"
3552+ patternTransform="translate(377.68817,1264.5873)"
3553+ id="pattern8740">
3554+ <g
3555+ inkscape:label="Layer 1"
3556+ id="layer1-0"
3557+ transform="translate(7.6293945e-6,-814.96063)">
3558+ <g
3559+ id="g9191-8">
3560+ <path
3561+ transform="matrix(0.11666667,0,0,0.11666667,18.059075,826.24616)"
3562+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3563+ sodipodi:ry="10.629921"
3564+ sodipodi:rx="10.629921"
3565+ sodipodi:cy="24.803141"
3566+ sodipodi:cx="-63.779526"
3567+ id="path8238-7"
3568+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3569+ sodipodi:type="arc" />
3570+ <path
3571+ transform="matrix(0.11666667,0,0,0.11666667,39.334701,826.24616)"
3572+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3573+ sodipodi:ry="10.629921"
3574+ sodipodi:rx="10.629921"
3575+ sodipodi:cy="24.803141"
3576+ sodipodi:cx="-63.779526"
3577+ id="path8238-9-60"
3578+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3579+ sodipodi:type="arc" />
3580+ <path
3581+ transform="matrix(0.11666667,0,0,0.11666667,60.594544,826.24616)"
3582+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3583+ sodipodi:ry="10.629921"
3584+ sodipodi:rx="10.629921"
3585+ sodipodi:cy="24.803141"
3586+ sodipodi:cx="-63.779526"
3587+ id="path8238-4-08"
3588+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3589+ sodipodi:type="arc" />
3590+ <path
3591+ transform="matrix(0.11666667,0,0,0.11666667,81.854387,826.24616)"
3592+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3593+ sodipodi:ry="10.629921"
3594+ sodipodi:rx="10.629921"
3595+ sodipodi:cy="24.803141"
3596+ sodipodi:cx="-63.779526"
3597+ id="path8238-0-43"
3598+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3599+ sodipodi:type="arc" />
3600+ <path
3601+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,826.24616)"
3602+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3603+ sodipodi:ry="10.629921"
3604+ sodipodi:rx="10.629921"
3605+ sodipodi:cy="24.803141"
3606+ sodipodi:cx="-63.779526"
3607+ id="path8238-8-91"
3608+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3609+ sodipodi:type="arc" />
3610+ <path
3611+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,826.24616)"
3612+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3613+ sodipodi:ry="10.629921"
3614+ sodipodi:rx="10.629921"
3615+ sodipodi:cy="24.803141"
3616+ sodipodi:cx="-63.779526"
3617+ id="path8238-6-21"
3618+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3619+ sodipodi:type="arc" />
3620+ <path
3621+ transform="matrix(0.11666667,0,0,0.11666667,145.63391,826.24616)"
3622+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3623+ sodipodi:ry="10.629921"
3624+ sodipodi:rx="10.629921"
3625+ sodipodi:cy="24.803141"
3626+ sodipodi:cx="-63.779526"
3627+ id="path8238-5-86"
3628+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3629+ sodipodi:type="arc" />
3630+ <path
3631+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,826.24616)"
3632+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3633+ sodipodi:ry="10.629921"
3634+ sodipodi:rx="10.629921"
3635+ sodipodi:cy="24.803141"
3636+ sodipodi:cx="-63.779526"
3637+ id="path8238-2-55"
3638+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3639+ sodipodi:type="arc" />
3640+ <path
3641+ transform="matrix(0.11666667,0,0,0.11666667,188.1536,826.24616)"
3642+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3643+ sodipodi:ry="10.629921"
3644+ sodipodi:rx="10.629921"
3645+ sodipodi:cy="24.803141"
3646+ sodipodi:cx="-63.779526"
3647+ id="path8238-82-10"
3648+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3649+ sodipodi:type="arc" />
3650+ <path
3651+ transform="matrix(0.11666667,0,0,0.11666667,209.41344,826.24616)"
3652+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3653+ sodipodi:ry="10.629921"
3654+ sodipodi:rx="10.629921"
3655+ sodipodi:cy="24.803141"
3656+ sodipodi:cx="-63.779526"
3657+ id="path8238-3-3"
3658+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3659+ sodipodi:type="arc" />
3660+ <path
3661+ transform="matrix(0.11666667,0,0,0.11666667,230.67328,826.24616)"
3662+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3663+ sodipodi:ry="10.629921"
3664+ sodipodi:rx="10.629921"
3665+ sodipodi:cy="24.803141"
3666+ sodipodi:cx="-63.779526"
3667+ id="path8238-08-92"
3668+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3669+ sodipodi:type="arc" />
3670+ </g>
3671+ <g
3672+ id="g9165-8">
3673+ <path
3674+ transform="matrix(0.11666667,0,0,0.11666667,18.059075,847.50601)"
3675+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3676+ sodipodi:ry="10.629921"
3677+ sodipodi:rx="10.629921"
3678+ sodipodi:cy="24.803141"
3679+ sodipodi:cx="-63.779526"
3680+ id="path8238-39-9"
3681+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3682+ sodipodi:type="arc" />
3683+ <path
3684+ transform="matrix(0.11666667,0,0,0.11666667,39.334701,847.50601)"
3685+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3686+ sodipodi:ry="10.629921"
3687+ sodipodi:rx="10.629921"
3688+ sodipodi:cy="24.803141"
3689+ sodipodi:cx="-63.779526"
3690+ id="path8238-9-6-6"
3691+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3692+ sodipodi:type="arc" />
3693+ <path
3694+ transform="matrix(0.11666667,0,0,0.11666667,60.594544,847.50601)"
3695+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3696+ sodipodi:ry="10.629921"
3697+ sodipodi:rx="10.629921"
3698+ sodipodi:cy="24.803141"
3699+ sodipodi:cx="-63.779526"
3700+ id="path8238-4-8-9"
3701+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3702+ sodipodi:type="arc" />
3703+ <path
3704+ transform="matrix(0.11666667,0,0,0.11666667,81.854387,847.50601)"
3705+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3706+ sodipodi:ry="10.629921"
3707+ sodipodi:rx="10.629921"
3708+ sodipodi:cy="24.803141"
3709+ sodipodi:cx="-63.779526"
3710+ id="path8238-0-2-0"
3711+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3712+ sodipodi:type="arc" />
3713+ <path
3714+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,847.50601)"
3715+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3716+ sodipodi:ry="10.629921"
3717+ sodipodi:rx="10.629921"
3718+ sodipodi:cy="24.803141"
3719+ sodipodi:cx="-63.779526"
3720+ id="path8238-8-5-9"
3721+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3722+ sodipodi:type="arc" />
3723+ <path
3724+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,847.50601)"
3725+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3726+ sodipodi:ry="10.629921"
3727+ sodipodi:rx="10.629921"
3728+ sodipodi:cy="24.803141"
3729+ sodipodi:cx="-63.779526"
3730+ id="path8238-6-2-9"
3731+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3732+ sodipodi:type="arc" />
3733+ <path
3734+ transform="matrix(0.11666667,0,0,0.11666667,145.63391,847.50601)"
3735+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3736+ sodipodi:ry="10.629921"
3737+ sodipodi:rx="10.629921"
3738+ sodipodi:cy="24.803141"
3739+ sodipodi:cx="-63.779526"
3740+ id="path8238-5-1-3"
3741+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3742+ sodipodi:type="arc" />
3743+ <path
3744+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,847.50601)"
3745+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3746+ sodipodi:ry="10.629921"
3747+ sodipodi:rx="10.629921"
3748+ sodipodi:cy="24.803141"
3749+ sodipodi:cx="-63.779526"
3750+ id="path8238-2-1-7"
3751+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3752+ sodipodi:type="arc" />
3753+ <path
3754+ transform="matrix(0.11666667,0,0,0.11666667,188.1536,847.50601)"
3755+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3756+ sodipodi:ry="10.629921"
3757+ sodipodi:rx="10.629921"
3758+ sodipodi:cy="24.803141"
3759+ sodipodi:cx="-63.779526"
3760+ id="path8238-82-3-1"
3761+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3762+ sodipodi:type="arc" />
3763+ <path
3764+ transform="matrix(0.11666667,0,0,0.11666667,209.41344,847.50601)"
3765+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3766+ sodipodi:ry="10.629921"
3767+ sodipodi:rx="10.629921"
3768+ sodipodi:cy="24.803141"
3769+ sodipodi:cx="-63.779526"
3770+ id="path8238-3-0-2"
3771+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3772+ sodipodi:type="arc" />
3773+ <path
3774+ transform="matrix(0.11666667,0,0,0.11666667,230.67328,847.50601)"
3775+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3776+ sodipodi:ry="10.629921"
3777+ sodipodi:rx="10.629921"
3778+ sodipodi:cy="24.803141"
3779+ sodipodi:cx="-63.779526"
3780+ id="path8238-08-7-6"
3781+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3782+ sodipodi:type="arc" />
3783+ </g>
3784+ <g
3785+ id="g9178-7"
3786+ transform="translate(-21.259846,0)">
3787+ <path
3788+ transform="matrix(0.11666667,0,0,0.11666667,39.318917,868.76585)"
3789+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3790+ sodipodi:ry="10.629921"
3791+ sodipodi:rx="10.629921"
3792+ sodipodi:cy="24.803141"
3793+ sodipodi:cx="-63.779526"
3794+ id="path8238-84-2"
3795+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3796+ sodipodi:type="arc" />
3797+ <path
3798+ transform="matrix(0.11666667,0,0,0.11666667,60.594543,868.76585)"
3799+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3800+ sodipodi:ry="10.629921"
3801+ sodipodi:rx="10.629921"
3802+ sodipodi:cy="24.803141"
3803+ sodipodi:cx="-63.779526"
3804+ id="path8238-9-7-6"
3805+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3806+ sodipodi:type="arc" />
3807+ <path
3808+ transform="matrix(0.11666667,0,0,0.11666667,81.854386,868.76585)"
3809+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3810+ sodipodi:ry="10.629921"
3811+ sodipodi:rx="10.629921"
3812+ sodipodi:cy="24.803141"
3813+ sodipodi:cx="-63.779526"
3814+ id="path8238-4-3-5"
3815+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3816+ sodipodi:type="arc" />
3817+ <path
3818+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,868.76585)"
3819+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3820+ sodipodi:ry="10.629921"
3821+ sodipodi:rx="10.629921"
3822+ sodipodi:cy="24.803141"
3823+ sodipodi:cx="-63.779526"
3824+ id="path8238-0-8-7"
3825+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3826+ sodipodi:type="arc" />
3827+ <path
3828+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,868.76585)"
3829+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3830+ sodipodi:ry="10.629921"
3831+ sodipodi:rx="10.629921"
3832+ sodipodi:cy="24.803141"
3833+ sodipodi:cx="-63.779526"
3834+ id="path8238-8-9-1"
3835+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3836+ sodipodi:type="arc" />
3837+ <path
3838+ transform="matrix(0.11666667,0,0,0.11666667,145.63392,868.76585)"
3839+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3840+ sodipodi:ry="10.629921"
3841+ sodipodi:rx="10.629921"
3842+ sodipodi:cy="24.803141"
3843+ sodipodi:cx="-63.779526"
3844+ id="path8238-6-1-7"
3845+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3846+ sodipodi:type="arc" />
3847+ <path
3848+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,868.76585)"
3849+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3850+ sodipodi:ry="10.629921"
3851+ sodipodi:rx="10.629921"
3852+ sodipodi:cy="24.803141"
3853+ sodipodi:cx="-63.779526"
3854+ id="path8238-5-6-8"
3855+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3856+ sodipodi:type="arc" />
3857+ <path
3858+ transform="matrix(0.11666667,0,0,0.11666667,188.15361,868.76585)"
3859+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3860+ sodipodi:ry="10.629921"
3861+ sodipodi:rx="10.629921"
3862+ sodipodi:cy="24.803141"
3863+ sodipodi:cx="-63.779526"
3864+ id="path8238-2-7-6"
3865+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3866+ sodipodi:type="arc" />
3867+ <path
3868+ transform="matrix(0.11666667,0,0,0.11666667,209.41345,868.76585)"
3869+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3870+ sodipodi:ry="10.629921"
3871+ sodipodi:rx="10.629921"
3872+ sodipodi:cy="24.803141"
3873+ sodipodi:cx="-63.779526"
3874+ id="path8238-82-8-0"
3875+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3876+ sodipodi:type="arc" />
3877+ <path
3878+ transform="matrix(0.11666667,0,0,0.11666667,230.67329,868.76585)"
3879+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3880+ sodipodi:ry="10.629921"
3881+ sodipodi:rx="10.629921"
3882+ sodipodi:cy="24.803141"
3883+ sodipodi:cx="-63.779526"
3884+ id="path8238-3-1-8"
3885+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3886+ sodipodi:type="arc" />
3887+ <path
3888+ transform="matrix(0.11666667,0,0,0.11666667,251.93313,868.76585)"
3889+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3890+ sodipodi:ry="10.629921"
3891+ sodipodi:rx="10.629921"
3892+ sodipodi:cy="24.803141"
3893+ sodipodi:cx="-63.779526"
3894+ id="path8238-08-8-4"
3895+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3896+ sodipodi:type="arc" />
3897+ </g>
3898+ <g
3899+ id="g9204-5"
3900+ transform="translate(-21.259846,0)">
3901+ <path
3902+ transform="matrix(0.11666667,0,0,0.11666667,39.318917,890.02569)"
3903+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3904+ sodipodi:ry="10.629921"
3905+ sodipodi:rx="10.629921"
3906+ sodipodi:cy="24.803141"
3907+ sodipodi:cx="-63.779526"
3908+ id="path8238-1-3"
3909+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3910+ sodipodi:type="arc" />
3911+ <path
3912+ transform="matrix(0.11666667,0,0,0.11666667,60.594543,890.02569)"
3913+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3914+ sodipodi:ry="10.629921"
3915+ sodipodi:rx="10.629921"
3916+ sodipodi:cy="24.803141"
3917+ sodipodi:cx="-63.779526"
3918+ id="path8238-9-5-5"
3919+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3920+ sodipodi:type="arc" />
3921+ <path
3922+ transform="matrix(0.11666667,0,0,0.11666667,81.854386,890.02569)"
3923+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3924+ sodipodi:ry="10.629921"
3925+ sodipodi:rx="10.629921"
3926+ sodipodi:cy="24.803141"
3927+ sodipodi:cx="-63.779526"
3928+ id="path8238-4-9-5"
3929+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3930+ sodipodi:type="arc" />
3931+ <path
3932+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,890.02569)"
3933+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3934+ sodipodi:ry="10.629921"
3935+ sodipodi:rx="10.629921"
3936+ sodipodi:cy="24.803141"
3937+ sodipodi:cx="-63.779526"
3938+ id="path8238-0-4-9"
3939+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3940+ sodipodi:type="arc" />
3941+ <path
3942+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,890.02569)"
3943+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3944+ sodipodi:ry="10.629921"
3945+ sodipodi:rx="10.629921"
3946+ sodipodi:cy="24.803141"
3947+ sodipodi:cx="-63.779526"
3948+ id="path8238-8-1-6"
3949+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3950+ sodipodi:type="arc" />
3951+ <path
3952+ transform="matrix(0.11666667,0,0,0.11666667,145.63392,890.02569)"
3953+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3954+ sodipodi:ry="10.629921"
3955+ sodipodi:rx="10.629921"
3956+ sodipodi:cy="24.803141"
3957+ sodipodi:cx="-63.779526"
3958+ id="path8238-6-0-9"
3959+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3960+ sodipodi:type="arc" />
3961+ <path
3962+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,890.02569)"
3963+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3964+ sodipodi:ry="10.629921"
3965+ sodipodi:rx="10.629921"
3966+ sodipodi:cy="24.803141"
3967+ sodipodi:cx="-63.779526"
3968+ id="path8238-5-8-7"
3969+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3970+ sodipodi:type="arc" />
3971+ <path
3972+ transform="matrix(0.11666667,0,0,0.11666667,188.15361,890.02569)"
3973+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3974+ sodipodi:ry="10.629921"
3975+ sodipodi:rx="10.629921"
3976+ sodipodi:cy="24.803141"
3977+ sodipodi:cx="-63.779526"
3978+ id="path8238-2-4-8"
3979+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3980+ sodipodi:type="arc" />
3981+ <path
3982+ transform="matrix(0.11666667,0,0,0.11666667,209.41345,890.02569)"
3983+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3984+ sodipodi:ry="10.629921"
3985+ sodipodi:rx="10.629921"
3986+ sodipodi:cy="24.803141"
3987+ sodipodi:cx="-63.779526"
3988+ id="path8238-82-9-5"
3989+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
3990+ sodipodi:type="arc" />
3991+ <path
3992+ transform="matrix(0.11666667,0,0,0.11666667,230.67329,890.02569)"
3993+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
3994+ sodipodi:ry="10.629921"
3995+ sodipodi:rx="10.629921"
3996+ sodipodi:cy="24.803141"
3997+ sodipodi:cx="-63.779526"
3998+ id="path8238-3-4-6"
3999+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4000+ sodipodi:type="arc" />
4001+ <path
4002+ transform="matrix(0.11666667,0,0,0.11666667,251.93313,890.02569)"
4003+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4004+ sodipodi:ry="10.629921"
4005+ sodipodi:rx="10.629921"
4006+ sodipodi:cy="24.803141"
4007+ sodipodi:cx="-63.779526"
4008+ id="path8238-08-2-0"
4009+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4010+ sodipodi:type="arc" />
4011+ </g>
4012+ <g
4013+ id="g9217-7">
4014+ <path
4015+ transform="matrix(0.11666667,0,0,0.11666667,18.059075,911.28553)"
4016+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4017+ sodipodi:ry="10.629921"
4018+ sodipodi:rx="10.629921"
4019+ sodipodi:cy="24.803141"
4020+ sodipodi:cx="-63.779526"
4021+ id="path8238-22-7"
4022+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4023+ sodipodi:type="arc" />
4024+ <path
4025+ transform="matrix(0.11666667,0,0,0.11666667,39.334701,911.28553)"
4026+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4027+ sodipodi:ry="10.629921"
4028+ sodipodi:rx="10.629921"
4029+ sodipodi:cy="24.803141"
4030+ sodipodi:cx="-63.779526"
4031+ id="path8238-9-73-3"
4032+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4033+ sodipodi:type="arc" />
4034+ <path
4035+ transform="matrix(0.11666667,0,0,0.11666667,60.594544,911.28553)"
4036+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4037+ sodipodi:ry="10.629921"
4038+ sodipodi:rx="10.629921"
4039+ sodipodi:cy="24.803141"
4040+ sodipodi:cx="-63.779526"
4041+ id="path8238-4-30-4"
4042+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4043+ sodipodi:type="arc" />
4044+ <path
4045+ transform="matrix(0.11666667,0,0,0.11666667,81.854387,911.28553)"
4046+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4047+ sodipodi:ry="10.629921"
4048+ sodipodi:rx="10.629921"
4049+ sodipodi:cy="24.803141"
4050+ sodipodi:cx="-63.779526"
4051+ id="path8238-0-5-0"
4052+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4053+ sodipodi:type="arc" />
4054+ <path
4055+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,911.28553)"
4056+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4057+ sodipodi:ry="10.629921"
4058+ sodipodi:rx="10.629921"
4059+ sodipodi:cy="24.803141"
4060+ sodipodi:cx="-63.779526"
4061+ id="path8238-8-3-5"
4062+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4063+ sodipodi:type="arc" />
4064+ <path
4065+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,911.28553)"
4066+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4067+ sodipodi:ry="10.629921"
4068+ sodipodi:rx="10.629921"
4069+ sodipodi:cy="24.803141"
4070+ sodipodi:cx="-63.779526"
4071+ id="path8238-6-00-0"
4072+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4073+ sodipodi:type="arc" />
4074+ <path
4075+ transform="matrix(0.11666667,0,0,0.11666667,145.63391,911.28553)"
4076+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4077+ sodipodi:ry="10.629921"
4078+ sodipodi:rx="10.629921"
4079+ sodipodi:cy="24.803141"
4080+ sodipodi:cx="-63.779526"
4081+ id="path8238-5-0-9"
4082+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4083+ sodipodi:type="arc" />
4084+ <path
4085+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,911.28553)"
4086+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4087+ sodipodi:ry="10.629921"
4088+ sodipodi:rx="10.629921"
4089+ sodipodi:cy="24.803141"
4090+ sodipodi:cx="-63.779526"
4091+ id="path8238-2-3-8"
4092+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4093+ sodipodi:type="arc" />
4094+ <path
4095+ transform="matrix(0.11666667,0,0,0.11666667,188.1536,911.28553)"
4096+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4097+ sodipodi:ry="10.629921"
4098+ sodipodi:rx="10.629921"
4099+ sodipodi:cy="24.803141"
4100+ sodipodi:cx="-63.779526"
4101+ id="path8238-82-80-9"
4102+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4103+ sodipodi:type="arc" />
4104+ <path
4105+ transform="matrix(0.11666667,0,0,0.11666667,209.41344,911.28553)"
4106+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4107+ sodipodi:ry="10.629921"
4108+ sodipodi:rx="10.629921"
4109+ sodipodi:cy="24.803141"
4110+ sodipodi:cx="-63.779526"
4111+ id="path8238-3-7-5"
4112+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4113+ sodipodi:type="arc" />
4114+ <path
4115+ transform="matrix(0.11666667,0,0,0.11666667,230.67328,911.28553)"
4116+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4117+ sodipodi:ry="10.629921"
4118+ sodipodi:rx="10.629921"
4119+ sodipodi:cy="24.803141"
4120+ sodipodi:cx="-63.779526"
4121+ id="path8238-08-6-7"
4122+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4123+ sodipodi:type="arc" />
4124+ <path
4125+ transform="matrix(0.11666667,0,0,0.11666667,18.059075,932.54538)"
4126+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4127+ sodipodi:ry="10.629921"
4128+ sodipodi:rx="10.629921"
4129+ sodipodi:cy="24.803141"
4130+ sodipodi:cx="-63.779526"
4131+ id="path8238-97-2"
4132+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4133+ sodipodi:type="arc" />
4134+ <path
4135+ transform="matrix(0.11666667,0,0,0.11666667,39.334701,932.54538)"
4136+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4137+ sodipodi:ry="10.629921"
4138+ sodipodi:rx="10.629921"
4139+ sodipodi:cy="24.803141"
4140+ sodipodi:cx="-63.779526"
4141+ id="path8238-9-77-2"
4142+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4143+ sodipodi:type="arc" />
4144+ <path
4145+ transform="matrix(0.11666667,0,0,0.11666667,60.594544,932.54538)"
4146+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4147+ sodipodi:ry="10.629921"
4148+ sodipodi:rx="10.629921"
4149+ sodipodi:cy="24.803141"
4150+ sodipodi:cx="-63.779526"
4151+ id="path8238-4-82-7"
4152+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4153+ sodipodi:type="arc" />
4154+ <path
4155+ transform="matrix(0.11666667,0,0,0.11666667,81.854387,932.54538)"
4156+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4157+ sodipodi:ry="10.629921"
4158+ sodipodi:rx="10.629921"
4159+ sodipodi:cy="24.803141"
4160+ sodipodi:cx="-63.779526"
4161+ id="path8238-0-6-8"
4162+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4163+ sodipodi:type="arc" />
4164+ <path
4165+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,932.54538)"
4166+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4167+ sodipodi:ry="10.629921"
4168+ sodipodi:rx="10.629921"
4169+ sodipodi:cy="24.803141"
4170+ sodipodi:cx="-63.779526"
4171+ id="path8238-8-55-2"
4172+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4173+ sodipodi:type="arc" />
4174+ <path
4175+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,932.54538)"
4176+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4177+ sodipodi:ry="10.629921"
4178+ sodipodi:rx="10.629921"
4179+ sodipodi:cy="24.803141"
4180+ sodipodi:cx="-63.779526"
4181+ id="path8238-6-8-5"
4182+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4183+ sodipodi:type="arc" />
4184+ <path
4185+ transform="matrix(0.11666667,0,0,0.11666667,145.63391,932.54538)"
4186+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4187+ sodipodi:ry="10.629921"
4188+ sodipodi:rx="10.629921"
4189+ sodipodi:cy="24.803141"
4190+ sodipodi:cx="-63.779526"
4191+ id="path8238-5-5-4"
4192+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4193+ sodipodi:type="arc" />
4194+ <path
4195+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,932.54538)"
4196+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4197+ sodipodi:ry="10.629921"
4198+ sodipodi:rx="10.629921"
4199+ sodipodi:cy="24.803141"
4200+ sodipodi:cx="-63.779526"
4201+ id="path8238-2-9-0"
4202+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4203+ sodipodi:type="arc" />
4204+ <path
4205+ transform="matrix(0.11666667,0,0,0.11666667,188.1536,932.54538)"
4206+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4207+ sodipodi:ry="10.629921"
4208+ sodipodi:rx="10.629921"
4209+ sodipodi:cy="24.803141"
4210+ sodipodi:cx="-63.779526"
4211+ id="path8238-82-7-0"
4212+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4213+ sodipodi:type="arc" />
4214+ <path
4215+ transform="matrix(0.11666667,0,0,0.11666667,209.41344,932.54538)"
4216+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4217+ sodipodi:ry="10.629921"
4218+ sodipodi:rx="10.629921"
4219+ sodipodi:cy="24.803141"
4220+ sodipodi:cx="-63.779526"
4221+ id="path8238-3-03-0"
4222+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4223+ sodipodi:type="arc" />
4224+ <path
4225+ transform="matrix(0.11666667,0,0,0.11666667,230.67328,932.54538)"
4226+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4227+ sodipodi:ry="10.629921"
4228+ sodipodi:rx="10.629921"
4229+ sodipodi:cy="24.803141"
4230+ sodipodi:cx="-63.779526"
4231+ id="path8238-08-1-5"
4232+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4233+ sodipodi:type="arc" />
4234+ <path
4235+ transform="matrix(0.11666667,0,0,0.11666667,18.059075,953.80522)"
4236+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4237+ sodipodi:ry="10.629921"
4238+ sodipodi:rx="10.629921"
4239+ sodipodi:cy="24.803141"
4240+ sodipodi:cx="-63.779526"
4241+ id="path8238-40-9"
4242+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4243+ sodipodi:type="arc" />
4244+ <path
4245+ transform="matrix(0.11666667,0,0,0.11666667,39.334701,953.80522)"
4246+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4247+ sodipodi:ry="10.629921"
4248+ sodipodi:rx="10.629921"
4249+ sodipodi:cy="24.803141"
4250+ sodipodi:cx="-63.779526"
4251+ id="path8238-9-772-8"
4252+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4253+ sodipodi:type="arc" />
4254+ <path
4255+ transform="matrix(0.11666667,0,0,0.11666667,60.594544,953.80522)"
4256+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4257+ sodipodi:ry="10.629921"
4258+ sodipodi:rx="10.629921"
4259+ sodipodi:cy="24.803141"
4260+ sodipodi:cx="-63.779526"
4261+ id="path8238-4-2-5"
4262+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4263+ sodipodi:type="arc" />
4264+ <path
4265+ transform="matrix(0.11666667,0,0,0.11666667,81.854387,953.80522)"
4266+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4267+ sodipodi:ry="10.629921"
4268+ sodipodi:rx="10.629921"
4269+ sodipodi:cy="24.803141"
4270+ sodipodi:cx="-63.779526"
4271+ id="path8238-0-23-6"
4272+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4273+ sodipodi:type="arc" />
4274+ <path
4275+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,953.80522)"
4276+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4277+ sodipodi:ry="10.629921"
4278+ sodipodi:rx="10.629921"
4279+ sodipodi:cy="24.803141"
4280+ sodipodi:cx="-63.779526"
4281+ id="path8238-8-4-8"
4282+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4283+ sodipodi:type="arc" />
4284+ <path
4285+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,953.80522)"
4286+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4287+ sodipodi:ry="10.629921"
4288+ sodipodi:rx="10.629921"
4289+ sodipodi:cy="24.803141"
4290+ sodipodi:cx="-63.779526"
4291+ id="path8238-6-5-2"
4292+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4293+ sodipodi:type="arc" />
4294+ <path
4295+ transform="matrix(0.11666667,0,0,0.11666667,145.63391,953.80522)"
4296+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4297+ sodipodi:ry="10.629921"
4298+ sodipodi:rx="10.629921"
4299+ sodipodi:cy="24.803141"
4300+ sodipodi:cx="-63.779526"
4301+ id="path8238-5-82-5"
4302+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4303+ sodipodi:type="arc" />
4304+ <path
4305+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,953.80522)"
4306+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4307+ sodipodi:ry="10.629921"
4308+ sodipodi:rx="10.629921"
4309+ sodipodi:cy="24.803141"
4310+ sodipodi:cx="-63.779526"
4311+ id="path8238-2-77-8"
4312+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4313+ sodipodi:type="arc" />
4314+ <path
4315+ transform="matrix(0.11666667,0,0,0.11666667,188.1536,953.80522)"
4316+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4317+ sodipodi:ry="10.629921"
4318+ sodipodi:rx="10.629921"
4319+ sodipodi:cy="24.803141"
4320+ sodipodi:cx="-63.779526"
4321+ id="path8238-82-86-9"
4322+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4323+ sodipodi:type="arc" />
4324+ <path
4325+ transform="matrix(0.11666667,0,0,0.11666667,209.41344,953.80522)"
4326+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4327+ sodipodi:ry="10.629921"
4328+ sodipodi:rx="10.629921"
4329+ sodipodi:cy="24.803141"
4330+ sodipodi:cx="-63.779526"
4331+ id="path8238-3-47-4"
4332+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4333+ sodipodi:type="arc" />
4334+ <path
4335+ transform="matrix(0.11666667,0,0,0.11666667,230.67328,953.80522)"
4336+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4337+ sodipodi:ry="10.629921"
4338+ sodipodi:rx="10.629921"
4339+ sodipodi:cy="24.803141"
4340+ sodipodi:cx="-63.779526"
4341+ id="path8238-08-5-2"
4342+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4343+ sodipodi:type="arc" />
4344+ <path
4345+ transform="matrix(0.11666667,0,0,0.11666667,18.059075,975.06506)"
4346+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4347+ sodipodi:ry="10.629921"
4348+ sodipodi:rx="10.629921"
4349+ sodipodi:cy="24.803141"
4350+ sodipodi:cx="-63.779526"
4351+ id="path8238-51-5"
4352+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4353+ sodipodi:type="arc" />
4354+ <path
4355+ transform="matrix(0.11666667,0,0,0.11666667,39.334701,975.06506)"
4356+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4357+ sodipodi:ry="10.629921"
4358+ sodipodi:rx="10.629921"
4359+ sodipodi:cy="24.803141"
4360+ sodipodi:cx="-63.779526"
4361+ id="path8238-9-3-5"
4362+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4363+ sodipodi:type="arc" />
4364+ <path
4365+ transform="matrix(0.11666667,0,0,0.11666667,60.594544,975.06506)"
4366+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4367+ sodipodi:ry="10.629921"
4368+ sodipodi:rx="10.629921"
4369+ sodipodi:cy="24.803141"
4370+ sodipodi:cx="-63.779526"
4371+ id="path8238-4-26-7"
4372+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4373+ sodipodi:type="arc" />
4374+ <path
4375+ transform="matrix(0.11666667,0,0,0.11666667,81.854387,975.06506)"
4376+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4377+ sodipodi:ry="10.629921"
4378+ sodipodi:rx="10.629921"
4379+ sodipodi:cy="24.803141"
4380+ sodipodi:cx="-63.779526"
4381+ id="path8238-0-1-6"
4382+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4383+ sodipodi:type="arc" />
4384+ <path
4385+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,975.06506)"
4386+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4387+ sodipodi:ry="10.629921"
4388+ sodipodi:rx="10.629921"
4389+ sodipodi:cy="24.803141"
4390+ sodipodi:cx="-63.779526"
4391+ id="path8238-8-7-4"
4392+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4393+ sodipodi:type="arc" />
4394+ <path
4395+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,975.06506)"
4396+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4397+ sodipodi:ry="10.629921"
4398+ sodipodi:rx="10.629921"
4399+ sodipodi:cy="24.803141"
4400+ sodipodi:cx="-63.779526"
4401+ id="path8238-6-7-5"
4402+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4403+ sodipodi:type="arc" />
4404+ <path
4405+ transform="matrix(0.11666667,0,0,0.11666667,145.63391,975.06506)"
4406+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4407+ sodipodi:ry="10.629921"
4408+ sodipodi:rx="10.629921"
4409+ sodipodi:cy="24.803141"
4410+ sodipodi:cx="-63.779526"
4411+ id="path8238-5-07-7"
4412+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4413+ sodipodi:type="arc" />
4414+ <path
4415+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,975.06506)"
4416+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4417+ sodipodi:ry="10.629921"
4418+ sodipodi:rx="10.629921"
4419+ sodipodi:cy="24.803141"
4420+ sodipodi:cx="-63.779526"
4421+ id="path8238-2-34-1"
4422+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4423+ sodipodi:type="arc" />
4424+ <path
4425+ transform="matrix(0.11666667,0,0,0.11666667,188.1536,975.06506)"
4426+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4427+ sodipodi:ry="10.629921"
4428+ sodipodi:rx="10.629921"
4429+ sodipodi:cy="24.803141"
4430+ sodipodi:cx="-63.779526"
4431+ id="path8238-82-35-4"
4432+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4433+ sodipodi:type="arc" />
4434+ <path
4435+ transform="matrix(0.11666667,0,0,0.11666667,209.41344,975.06506)"
4436+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4437+ sodipodi:ry="10.629921"
4438+ sodipodi:rx="10.629921"
4439+ sodipodi:cy="24.803141"
4440+ sodipodi:cx="-63.779526"
4441+ id="path8238-3-11-9"
4442+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4443+ sodipodi:type="arc" />
4444+ <path
4445+ transform="matrix(0.11666667,0,0,0.11666667,230.67328,975.06506)"
4446+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4447+ sodipodi:ry="10.629921"
4448+ sodipodi:rx="10.629921"
4449+ sodipodi:cy="24.803141"
4450+ sodipodi:cx="-63.779526"
4451+ id="path8238-08-85-5"
4452+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4453+ sodipodi:type="arc" />
4454+ <path
4455+ transform="matrix(0.11666667,0,0,0.11666667,18.059075,996.3249)"
4456+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4457+ sodipodi:ry="10.629921"
4458+ sodipodi:rx="10.629921"
4459+ sodipodi:cy="24.803141"
4460+ sodipodi:cx="-63.779526"
4461+ id="path8238-53-1"
4462+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4463+ sodipodi:type="arc" />
4464+ <path
4465+ transform="matrix(0.11666667,0,0,0.11666667,39.334701,996.3249)"
4466+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4467+ sodipodi:ry="10.629921"
4468+ sodipodi:rx="10.629921"
4469+ sodipodi:cy="24.803141"
4470+ sodipodi:cx="-63.779526"
4471+ id="path8238-9-0-0"
4472+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4473+ sodipodi:type="arc" />
4474+ <path
4475+ transform="matrix(0.11666667,0,0,0.11666667,60.594544,996.3249)"
4476+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4477+ sodipodi:ry="10.629921"
4478+ sodipodi:rx="10.629921"
4479+ sodipodi:cy="24.803141"
4480+ sodipodi:cx="-63.779526"
4481+ id="path8238-4-0-0"
4482+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4483+ sodipodi:type="arc" />
4484+ <path
4485+ transform="matrix(0.11666667,0,0,0.11666667,81.854387,996.3249)"
4486+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4487+ sodipodi:ry="10.629921"
4488+ sodipodi:rx="10.629921"
4489+ sodipodi:cy="24.803141"
4490+ sodipodi:cx="-63.779526"
4491+ id="path8238-0-3-8"
4492+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4493+ sodipodi:type="arc" />
4494+ <path
4495+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,996.3249)"
4496+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4497+ sodipodi:ry="10.629921"
4498+ sodipodi:rx="10.629921"
4499+ sodipodi:cy="24.803141"
4500+ sodipodi:cx="-63.779526"
4501+ id="path8238-8-2-4"
4502+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4503+ sodipodi:type="arc" />
4504+ <path
4505+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,996.3249)"
4506+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4507+ sodipodi:ry="10.629921"
4508+ sodipodi:rx="10.629921"
4509+ sodipodi:cy="24.803141"
4510+ sodipodi:cx="-63.779526"
4511+ id="path8238-6-71-0"
4512+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4513+ sodipodi:type="arc" />
4514+ <path
4515+ transform="matrix(0.11666667,0,0,0.11666667,145.63391,996.3249)"
4516+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4517+ sodipodi:ry="10.629921"
4518+ sodipodi:rx="10.629921"
4519+ sodipodi:cy="24.803141"
4520+ sodipodi:cx="-63.779526"
4521+ id="path8238-5-3-9"
4522+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4523+ sodipodi:type="arc" />
4524+ <path
4525+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,996.3249)"
4526+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4527+ sodipodi:ry="10.629921"
4528+ sodipodi:rx="10.629921"
4529+ sodipodi:cy="24.803141"
4530+ sodipodi:cx="-63.779526"
4531+ id="path8238-2-5-6"
4532+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4533+ sodipodi:type="arc" />
4534+ <path
4535+ transform="matrix(0.11666667,0,0,0.11666667,188.1536,996.3249)"
4536+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4537+ sodipodi:ry="10.629921"
4538+ sodipodi:rx="10.629921"
4539+ sodipodi:cy="24.803141"
4540+ sodipodi:cx="-63.779526"
4541+ id="path8238-82-70-5"
4542+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4543+ sodipodi:type="arc" />
4544+ <path
4545+ transform="matrix(0.11666667,0,0,0.11666667,209.41344,996.3249)"
4546+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4547+ sodipodi:ry="10.629921"
4548+ sodipodi:rx="10.629921"
4549+ sodipodi:cy="24.803141"
4550+ sodipodi:cx="-63.779526"
4551+ id="path8238-3-02-8"
4552+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4553+ sodipodi:type="arc" />
4554+ <path
4555+ transform="matrix(0.11666667,0,0,0.11666667,230.67328,996.3249)"
4556+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4557+ sodipodi:ry="10.629921"
4558+ sodipodi:rx="10.629921"
4559+ sodipodi:cy="24.803141"
4560+ sodipodi:cx="-63.779526"
4561+ id="path8238-08-23-5"
4562+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4563+ sodipodi:type="arc" />
4564+ <path
4565+ transform="matrix(0.11666667,0,0,0.11666667,18.059075,1017.5847)"
4566+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4567+ sodipodi:ry="10.629921"
4568+ sodipodi:rx="10.629921"
4569+ sodipodi:cy="24.803141"
4570+ sodipodi:cx="-63.779526"
4571+ id="path8238-406-2"
4572+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4573+ sodipodi:type="arc" />
4574+ <path
4575+ transform="matrix(0.11666667,0,0,0.11666667,39.334701,1017.5847)"
4576+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4577+ sodipodi:ry="10.629921"
4578+ sodipodi:rx="10.629921"
4579+ sodipodi:cy="24.803141"
4580+ sodipodi:cx="-63.779526"
4581+ id="path8238-9-2-5"
4582+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4583+ sodipodi:type="arc" />
4584+ <path
4585+ transform="matrix(0.11666667,0,0,0.11666667,60.594544,1017.5847)"
4586+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4587+ sodipodi:ry="10.629921"
4588+ sodipodi:rx="10.629921"
4589+ sodipodi:cy="24.803141"
4590+ sodipodi:cx="-63.779526"
4591+ id="path8238-4-07-3"
4592+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4593+ sodipodi:type="arc" />
4594+ <path
4595+ transform="matrix(0.11666667,0,0,0.11666667,81.854387,1017.5847)"
4596+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4597+ sodipodi:ry="10.629921"
4598+ sodipodi:rx="10.629921"
4599+ sodipodi:cy="24.803141"
4600+ sodipodi:cx="-63.779526"
4601+ id="path8238-0-13-7"
4602+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4603+ sodipodi:type="arc" />
4604+ <path
4605+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,1017.5847)"
4606+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4607+ sodipodi:ry="10.629921"
4608+ sodipodi:rx="10.629921"
4609+ sodipodi:cy="24.803141"
4610+ sodipodi:cx="-63.779526"
4611+ id="path8238-8-15-0"
4612+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4613+ sodipodi:type="arc" />
4614+ <path
4615+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,1017.5847)"
4616+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4617+ sodipodi:ry="10.629921"
4618+ sodipodi:rx="10.629921"
4619+ sodipodi:cy="24.803141"
4620+ sodipodi:cx="-63.779526"
4621+ id="path8238-6-84-2"
4622+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4623+ sodipodi:type="arc" />
4624+ <path
4625+ transform="matrix(0.11666667,0,0,0.11666667,145.63391,1017.5847)"
4626+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4627+ sodipodi:ry="10.629921"
4628+ sodipodi:rx="10.629921"
4629+ sodipodi:cy="24.803141"
4630+ sodipodi:cx="-63.779526"
4631+ id="path8238-5-88-6"
4632+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4633+ sodipodi:type="arc" />
4634+ <path
4635+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,1017.5847)"
4636+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4637+ sodipodi:ry="10.629921"
4638+ sodipodi:rx="10.629921"
4639+ sodipodi:cy="24.803141"
4640+ sodipodi:cx="-63.779526"
4641+ id="path8238-2-13-4"
4642+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4643+ sodipodi:type="arc" />
4644+ <path
4645+ transform="matrix(0.11666667,0,0,0.11666667,188.1536,1017.5847)"
4646+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4647+ sodipodi:ry="10.629921"
4648+ sodipodi:rx="10.629921"
4649+ sodipodi:cy="24.803141"
4650+ sodipodi:cx="-63.779526"
4651+ id="path8238-82-1-4"
4652+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4653+ sodipodi:type="arc" />
4654+ <path
4655+ transform="matrix(0.11666667,0,0,0.11666667,209.41344,1017.5847)"
4656+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4657+ sodipodi:ry="10.629921"
4658+ sodipodi:rx="10.629921"
4659+ sodipodi:cy="24.803141"
4660+ sodipodi:cx="-63.779526"
4661+ id="path8238-3-16-2"
4662+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4663+ sodipodi:type="arc" />
4664+ <path
4665+ transform="matrix(0.11666667,0,0,0.11666667,230.67328,1017.5847)"
4666+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4667+ sodipodi:ry="10.629921"
4668+ sodipodi:rx="10.629921"
4669+ sodipodi:cy="24.803141"
4670+ sodipodi:cx="-63.779526"
4671+ id="path8238-08-76-1"
4672+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4673+ sodipodi:type="arc" />
4674+ </g>
4675+ <g
4676+ id="g9285-3"
4677+ transform="translate(-21.259846,0)">
4678+ <path
4679+ transform="matrix(0.11666667,0,0,0.11666667,39.318917,1038.8446)"
4680+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4681+ sodipodi:ry="10.629921"
4682+ sodipodi:rx="10.629921"
4683+ sodipodi:cy="24.803141"
4684+ sodipodi:cx="-63.779526"
4685+ id="path8238-38-0"
4686+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4687+ sodipodi:type="arc" />
4688+ <path
4689+ transform="matrix(0.11666667,0,0,0.11666667,60.594543,1038.8446)"
4690+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4691+ sodipodi:ry="10.629921"
4692+ sodipodi:rx="10.629921"
4693+ sodipodi:cy="24.803141"
4694+ sodipodi:cx="-63.779526"
4695+ id="path8238-9-1-6"
4696+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4697+ sodipodi:type="arc" />
4698+ <path
4699+ transform="matrix(0.11666667,0,0,0.11666667,81.854386,1038.8446)"
4700+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4701+ sodipodi:ry="10.629921"
4702+ sodipodi:rx="10.629921"
4703+ sodipodi:cy="24.803141"
4704+ sodipodi:cx="-63.779526"
4705+ id="path8238-4-95-1"
4706+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4707+ sodipodi:type="arc" />
4708+ <path
4709+ transform="matrix(0.11666667,0,0,0.11666667,103.11423,1038.8446)"
4710+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4711+ sodipodi:ry="10.629921"
4712+ sodipodi:rx="10.629921"
4713+ sodipodi:cy="24.803141"
4714+ sodipodi:cx="-63.779526"
4715+ id="path8238-0-11-9"
4716+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4717+ sodipodi:type="arc" />
4718+ <path
4719+ transform="matrix(0.11666667,0,0,0.11666667,124.37407,1038.8446)"
4720+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4721+ sodipodi:ry="10.629921"
4722+ sodipodi:rx="10.629921"
4723+ sodipodi:cy="24.803141"
4724+ sodipodi:cx="-63.779526"
4725+ id="path8238-8-0-7"
4726+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4727+ sodipodi:type="arc" />
4728+ <path
4729+ transform="matrix(0.11666667,0,0,0.11666667,145.63392,1038.8446)"
4730+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4731+ sodipodi:ry="10.629921"
4732+ sodipodi:rx="10.629921"
4733+ sodipodi:cy="24.803141"
4734+ sodipodi:cx="-63.779526"
4735+ id="path8238-6-55-5"
4736+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4737+ sodipodi:type="arc" />
4738+ <path
4739+ transform="matrix(0.11666667,0,0,0.11666667,166.89376,1038.8446)"
4740+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4741+ sodipodi:ry="10.629921"
4742+ sodipodi:rx="10.629921"
4743+ sodipodi:cy="24.803141"
4744+ sodipodi:cx="-63.779526"
4745+ id="path8238-5-68-8"
4746+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4747+ sodipodi:type="arc" />
4748+ <path
4749+ transform="matrix(0.11666667,0,0,0.11666667,188.15361,1038.8446)"
4750+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4751+ sodipodi:ry="10.629921"
4752+ sodipodi:rx="10.629921"
4753+ sodipodi:cy="24.803141"
4754+ sodipodi:cx="-63.779526"
4755+ id="path8238-2-18-3"
4756+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4757+ sodipodi:type="arc" />
4758+ <path
4759+ transform="matrix(0.11666667,0,0,0.11666667,209.41345,1038.8446)"
4760+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4761+ sodipodi:ry="10.629921"
4762+ sodipodi:rx="10.629921"
4763+ sodipodi:cy="24.803141"
4764+ sodipodi:cx="-63.779526"
4765+ id="path8238-82-802-7"
4766+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4767+ sodipodi:type="arc" />
4768+ <path
4769+ transform="matrix(0.11666667,0,0,0.11666667,230.67329,1038.8446)"
4770+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4771+ sodipodi:ry="10.629921"
4772+ sodipodi:rx="10.629921"
4773+ sodipodi:cy="24.803141"
4774+ sodipodi:cx="-63.779526"
4775+ id="path8238-3-13-8"
4776+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4777+ sodipodi:type="arc" />
4778+ <path
4779+ transform="matrix(0.11666667,0,0,0.11666667,251.93313,1038.8446)"
4780+ d="m -53.149605,24.803141 c 0,5.870743 -4.759178,10.629921 -10.629921,10.629921 -5.870743,0 -10.629921,-4.759178 -10.629921,-10.629921 0,-5.870744 4.759178,-10.629921 10.629921,-10.629921 5.870743,0 10.629921,4.759177 10.629921,10.629921 z"
4781+ sodipodi:ry="10.629921"
4782+ sodipodi:rx="10.629921"
4783+ sodipodi:cy="24.803141"
4784+ sodipodi:cx="-63.779526"
4785+ id="path8238-08-9-3"
4786+ style="fill:#aea79f;stroke:#2c001e;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
4787+ sodipodi:type="arc" />
4788+ </g>
4789+ <rect
4790+ style="fill:none;stroke:none"
4791+ id="rect8322"
4792+ width="237.40158"
4793+ height="237.40158"
4794+ x="-7.6293945e-06"
4795+ y="814.96063" />
4796+ </g>
4797+ </pattern>
4798+ <marker
4799+ inkscape:stockid="Arrow2Mend"
4800+ orient="auto"
4801+ refY="0"
4802+ refX="0"
4803+ id="Arrow2Mend-9"
4804+ style="overflow:visible">
4805+ <path
4806+ id="path6471-7"
4807+ style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
4808+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
4809+ transform="scale(-0.6,-0.6)"
4810+ inkscape:connector-curvature="0" />
4811+ </marker>
4812+ </defs>
4813+ <sodipodi:namedview
4814+ id="base"
4815+ pagecolor="#ffffff"
4816+ bordercolor="#666666"
4817+ borderopacity="1.0"
4818+ inkscape:pageopacity="0.0"
4819+ inkscape:pageshadow="2"
4820+ inkscape:zoom="1.4142136"
4821+ inkscape:cx="302.0369"
4822+ inkscape:cy="233.06086"
4823+ inkscape:document-units="px"
4824+ inkscape:current-layer="layer1"
4825+ showgrid="false"
4826+ borderlayer="true"
4827+ showguides="true"
4828+ inkscape:guide-bbox="true"
4829+ inkscape:window-width="1790"
4830+ inkscape:window-height="1010"
4831+ inkscape:window-x="65"
4832+ inkscape:window-y="24"
4833+ inkscape:window-maximized="1"
4834+ units="mm" />
4835+ <metadata
4836+ id="metadata5435">
4837+ <rdf:RDF>
4838+ <cc:Work
4839+ rdf:about="">
4840+ <dc:format>image/svg+xml</dc:format>
4841+ <dc:type
4842+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
4843+ <dc:title />
4844+ <cc:license
4845+ rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
4846+ </cc:Work>
4847+ <cc:License
4848+ rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
4849+ <cc:permits
4850+ rdf:resource="http://creativecommons.org/ns#Reproduction" />
4851+ <cc:permits
4852+ rdf:resource="http://creativecommons.org/ns#Distribution" />
4853+ <cc:requires
4854+ rdf:resource="http://creativecommons.org/ns#Notice" />
4855+ <cc:requires
4856+ rdf:resource="http://creativecommons.org/ns#Attribution" />
4857+ <cc:permits
4858+ rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
4859+ <cc:requires
4860+ rdf:resource="http://creativecommons.org/ns#ShareAlike" />
4861+ </cc:License>
4862+ </rdf:RDF>
4863+ </metadata>
4864+ <g
4865+ inkscape:label="Layer 1"
4866+ inkscape:groupmode="layer"
4867+ id="layer1"
4868+ transform="translate(0,-527.95266)">
4869+ <rect
4870+ style="fill:url(#pattern8873);stroke:#aea79f;stroke-width:0.99999988"
4871+ width="741.32281"
4872+ height="521.63782"
4873+ x="1.3858337"
4874+ y="529.33844"
4875+ id="rect8871" />
4876+ <path
4877+ style="fill:#ffffff;stroke:#dd4814;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
4878+ d="m 3.0625,956.82766 c 5.786299,0.9479 11.854023,1.46875 18.125,1.46875 38.86822,0 70.375,-19.39651 70.375,-43.34375 0,-2.11759 -0.27394,-4.21361 -0.75,-6.25 5.95124,2.73389 12.50072,4.25 19.40625,4.25 26.8946,0 48.71875,-23.00673 48.71875,-51.375 0,-10.62252 -3.04461,-20.49662 -8.28125,-28.6875 0.21632,-0.57123 0.41605,-1.14418 0.625,-1.71875 30.65116,-3.01516 54.34375,-23.05295 54.34375,-47.3125 0,-20.1722 -16.39099,-37.40231 -39.53125,-44.375 9.34159,-6.84646 14.84375,-15.26472 14.84375,-24.34375 0,-22.35642 -33.3514,-40.58242 -75.25,-41.625 -0.31665,-0.2535 -0.61864,-0.53021 -0.9375,-0.78125 0.0929,-1.19664 0.15625,-2.37797 0.15625,-3.59375 0,-31.13142 -30.93112,-56.375 -69.0625,-56.375 -11.868287,0 -23.029122,2.44318 -32.78125,6.75"
4879+ id="path6328"
4880+ inkscape:connector-curvature="0"
4881+ sodipodi:nodetypes="csscssccscsccssc" />
4882+ <rect
4883+ style="fill:#ffffff;stroke:#dd4814;stroke-width:1.99999988;stroke-miterlimit:4;stroke-dasharray:none"
4884+ id="rect6298"
4885+ width="575.69165"
4886+ height="453.73575"
4887+ x="154.09593"
4888+ y="579.90656" />
4889+ <rect
4890+ style="fill:#ffffff;stroke:#dd4814;stroke-width:1.99999976;stroke-miterlimit:4;stroke-dasharray:none"
4891+ id="rect6186"
4892+ width="142.08842"
4893+ height="174.10838"
4894+ x="100.98289"
4895+ y="699.60925" />
4896+ <rect
4897+ style="fill:#ffffff;stroke:#dd4814;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
4898+ id="rect6184"
4899+ width="119.40766"
4900+ height="41.359074"
4901+ x="112.32326"
4902+ y="713.61798" />
4903+ <text
4904+ xml:space="preserve"
4905+ style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#dd4814;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
4906+ x="136.60976"
4907+ y="741.52753"
4908+ id="text6180"
4909+ sodipodi:linespacing="125%"><tspan
4910+ sodipodi:role="line"
4911+ id="tspan6182"
4912+ x="136.60976"
4913+ y="741.52753">Action 1</tspan></text>
4914+ <rect
4915+ style="fill:#ffffff;stroke:#dd4814;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
4916+ id="rect6184-0"
4917+ width="119.40766"
4918+ height="41.359074"
4919+ x="112.32326"
4920+ y="765.98395" />
4921+ <text
4922+ xml:space="preserve"
4923+ style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#dd4814;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
4924+ x="135.39973"
4925+ y="793.89349"
4926+ id="text6180-6"
4927+ sodipodi:linespacing="125%"><tspan
4928+ sodipodi:role="line"
4929+ id="tspan6182-6"
4930+ x="135.39973"
4931+ y="793.89349">Action 2</tspan></text>
4932+ <rect
4933+ style="fill:#ffffff;stroke:#dd4814;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
4934+ id="rect6184-9"
4935+ width="119.40766"
4936+ height="41.359074"
4937+ x="112.32326"
4938+ y="818.34991" />
4939+ <text
4940+ xml:space="preserve"
4941+ style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#dd4814;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
4942+ x="135.40974"
4943+ y="846.23944"
4944+ id="text6180-4"
4945+ sodipodi:linespacing="125%"><tspan
4946+ sodipodi:role="line"
4947+ id="tspan6182-1"
4948+ x="135.40974"
4949+ y="846.23944">Action 3</tspan></text>
4950+ <text
4951+ xml:space="preserve"
4952+ style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#dd4814;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
4953+ x="166.18346"
4954+ y="603.1759"
4955+ id="text6300"
4956+ sodipodi:linespacing="125%"><tspan
4957+ sodipodi:role="line"
4958+ id="tspan6302"
4959+ x="166.18346"
4960+ y="603.1759">Application</tspan></text>
4961+ <text
4962+ xml:space="preserve"
4963+ style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#dd4814;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
4964+ x="12.843933"
4965+ y="645.4447"
4966+ id="text6349"
4967+ sodipodi:linespacing="125%"><tspan
4968+ sodipodi:role="line"
4969+ id="tspan6351"
4970+ x="12.843933"
4971+ y="645.4447">D-Bus</tspan></text>
4972+ <rect
4973+ style="fill:#ffffff;stroke:none"
4974+ id="rect8875"
4975+ width="195.5"
4976+ height="42.5"
4977+ x="10.5"
4978+ y="532.36212" />
4979+ <text
4980+ xml:space="preserve"
4981+ style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
4982+ x="15"
4983+ y="561.19257"
4984+ id="text8203"
4985+ sodipodi:linespacing="125%"><tspan
4986+ sodipodi:role="line"
4987+ id="tspan8205"
4988+ x="15"
4989+ y="561.19257">Context Overview</tspan></text>
4990+ <rect
4991+ style="fill:#ffffff;stroke:#dd4814;stroke-width:1.99999976;stroke-miterlimit:4;stroke-dasharray:none"
4992+ id="rect6186-3"
4993+ width="142.08842"
4994+ height="174.10838"
4995+ x="517.97571"
4996+ y="602.56213" />
4997+ <g
4998+ id="g14092"
4999+ transform="translate(-0.70710373,0)">
5000+ <rect
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to all changes: