Merge lp:~inkscape.dev/inkscape/bspline+spirolive into lp:~inkscape.dev/inkscape/trunk

Proposed by Jabiertxof
Status: Merged
Merged at revision: 13342
Proposed branch: lp:~inkscape.dev/inkscape/bspline+spirolive
Merge into: lp:~inkscape.dev/inkscape/trunk
Diff against target: 60496 lines (+10641/-48461)
28 files modified
po/POTFILES.in (+2/-0)
share/icons/icons.svg (+18/-42)
share/icons/symbolic_icons.svg (+104/-100)
share/icons/tango_icons.svg (+8284/-48237)
src/live_effects/CMakeLists.txt (+2/-0)
src/live_effects/Makefile_insert (+2/-0)
src/live_effects/effect-enum.h (+1/-0)
src/live_effects/effect.cpp (+5/-0)
src/live_effects/effect.h (+1/-0)
src/live_effects/lpe-bspline.cpp (+719/-0)
src/live_effects/lpe-bspline.h (+58/-0)
src/sp-lpe-item.cpp (+16/-0)
src/sp-lpe-item.h (+1/-0)
src/ui/tool/curve-drag-point.cpp (+11/-6)
src/ui/tool/multi-path-manipulator.cpp (+12/-1)
src/ui/tool/node.cpp (+186/-15)
src/ui/tool/node.h (+11/-1)
src/ui/tool/path-manipulator.cpp (+97/-4)
src/ui/tool/path-manipulator.h (+9/-0)
src/ui/tools/freehand-base.cpp (+69/-5)
src/ui/tools/freehand-base.h (+9/-0)
src/ui/tools/node-tool.h (+3/-0)
src/ui/tools/pen-tool.cpp (+949/-45)
src/ui/tools/pen-tool.h (+31/-0)
src/ui/tools/pencil-tool.cpp (+33/-4)
src/widgets/icon.cpp (+1/-0)
src/widgets/mappings.xml (+1/-0)
src/widgets/pencil-toolbar.cpp (+6/-1)
To merge this branch: bzr merge lp:~inkscape.dev/inkscape/bspline+spirolive
Reviewer Review Type Date Requested Status
Vinipsmaker Approve
Martin Owens Approve
Review via email: mp+159721@code.launchpad.net

Description of the change

Added BSpline node editing by a live effect and Spiro preview while drawing.

To post a comment you must log in.
Revision history for this message
Martin Owens (doctormo) wrote :

The edited svg should be saved using the inkscape compact options like the previous revision.

review: Needs Fixing (code review)
Revision history for this message
Martin Owens (doctormo) wrote :

Actually I think this has already been merged, just a bit of fluff in the diff there.

Revision history for this message
Jabiertxof (jabiertxof) wrote :

Im sorry Martin, dont undertand well. the last revision diff includes all po files i start translating. It make a big diff. Finaly i decide focus in code and take the translation work after. And reload in branch the original po folder.
Focusing, im not sure about what i need to do with "inkscape compact options" or it is removed by "a bit of fluff".

Hi, and thanks for the review.

Revision history for this message
Martin Owens (doctormo) wrote :

Look below. The only difference between your branch and trunk is one svg file. This svg file has been broken by opening it without the inkscape compact options and then saving it. Not a problem. But it suggests quite strongly that your code has already been merged.

Revision history for this message
su_v (suv-lp) wrote :

This branch has _not_ been merged yet - there is no option to create bspline curves in trunk (pen, pencil tool), or to see spiro-curves live when drawing paths with the pen or pencil tool?

@Martin, scroll down to the end of the page, there's message telling this:
«The diff has been truncated for viewing. »
or download the diff and check yourself:

Diffstat:
 share/icons/icons.svg |26094 ++++++++++++++++++++++++++++-----
 share/icons/symbolic_icons.svg |23875 +++++++++++++++++++++++++-----
 share/icons/tango_icons.svg | 97
 src/draw-context.cpp | 35
 src/draw-context.h | 2
 src/libavoid/makefile | 17
 src/live_effects/CMakeLists.txt | 2
 src/live_effects/Makefile_insert | 2
 src/live_effects/effect-enum.h | 3
 src/live_effects/effect.cpp | 11
 src/live_effects/lpe-bspline.cpp | 647
 src/live_effects/lpe-bspline.h | 59
 src/pen-context.cpp | 1066 +
 src/pen-context.h | 5
 src/pencil-context.cpp | 40
 src/ui/tool/curve-drag-point.cpp | 20
 src/ui/tool/multi-path-manipulator.cpp | 13
 src/ui/tool/multi-path-manipulator.h | 2
 src/ui/tool/node.cpp | 179
 src/ui/tool/node.h | 9
 src/ui/tool/path-manipulator.cpp | 118
 src/ui/tool/path-manipulator.h | 17
 src/widgets/icon.cpp | 1
 src/widgets/mappings.xml | 1
 src/widgets/pencil-toolbar.cpp | 9
 src/widgets/toolbox.cpp | 2
 26 files changed, 44789 insertions(+), 7537 deletions(-)

Revision history for this message
su_v (suv-lp) wrote :

@jabertox - trying to compile your branch 12091 fails for me (on OS X) with this error:

  CXX live_effects/lpe-bspline.o
In file included from ../../src/live_effects/lpe-bspline.cpp:20:
../../src/ui/tool/node-tool.h:78: error: ‘Inkscape::Selection’ has not been declared
make[3]: *** [live_effects/lpe-bspline.o] Error 1
make[2]: *** [all] Error 2
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2

Revision history for this message
su_v (suv-lp) wrote :

> @jabertox - <…>

@Jabiertxo - sorry for mistyping your name!

Revision history for this message
ScislaC (scislac) wrote :

Beat me to it ~suv (as usual though, you were much more thorough than I would have been)...

This definitely needs code review as well as UX review...

Krzysztof had mentioned a desire to implement B-Splines a while back but had some reservations about how to handle certain things. If I recall correctly he brought up issues such as what the controls for them look like, as well as how to handle connecting to adjacent segments of a path which aren't B-splines (straight segments, etc). Essentially, it wouldn't be an all or nothing approach, but B-Spline segments which could mix in with lines and regular curves on a path.

Revision history for this message
Jabiertxof (jabiertxof) wrote :

No problem ~suv!

El jue, 19-09-2013 a las 23:36 +0000, ~suv escribió:
> > @jabertox - <…>
>
> @Jabiertxo - sorry for mistyping your name!

Revision history for this message
Jabiertxof (jabiertxof) wrote :

Thanks ~suv, soon is fixed

El jue, 19-09-2013 a las 23:33 +0000, ~suv escribió:
> @jabertox - trying to compile your branch 12091 fails for me (on OS X) with this error:
>
> CXX live_effects/lpe-bspline.o
> In file included from ../../src/live_effects/lpe-bspline.cpp:20:
> ../../src/ui/tool/node-tool.h:78: error: ‘Inkscape::Selection’ has not been declared
> make[3]: *** [live_effects/lpe-bspline.o] Error 1
> make[2]: *** [all] Error 2
> make[1]: *** [all-recursive] Error 1
> make: *** [all] Error 2
>
>

Revision history for this message
Jabiertxof (jabiertxof) wrote :

Fixed

El vie, 20-09-2013 a las 00:06 +0000, Jabiertxo Arraiza Cenoz escribió:
> Thanks ~suv, soon is fixed
>
> El jue, 19-09-2013 a las 23:33 +0000, ~suv escribió:
> > @jabertox - trying to compile your branch 12091 fails for me (on OS X) with this error:
> >
> > CXX live_effects/lpe-bspline.o
> > In file included from ../../src/live_effects/lpe-bspline.cpp:20:
> > ../../src/ui/tool/node-tool.h:78: error: ‘Inkscape::Selection’ has not been declared
> > make[3]: *** [live_effects/lpe-bspline.o] Error 1
> > make[2]: *** [all] Error 2
> > make[1]: *** [all-recursive] Error 1
> > make: *** [all] Error 2
> >
> >
>
>
>

Revision history for this message
Jabiertxof (jabiertxof) wrote :

El jue, 19-09-2013 a las 23:39 +0000, ScislaC escribió:
> Beat me to it ~suv (as usual though, you were much more thorough than I would have been)...
>
> This definitely needs code review as well as UX review...
>
> Krzysztof had mentioned a desire to implement B-Splines a while back but had some reservations about how to

> handle certain things. If I recall correctly he brought up issues such as what the controls for them look like,

> as well as how to handle connecting to adjacent segments of a path which aren't B-splines (straight segments, etc).

> Essentially, it wouldn't be an all or nothing approach, but B-Spline segments which could mix in with lines and regular curves on a path.

Hello and yes ScislaC, it need a full review, i never touch C++ before.
I think is a problem have a path with mixed types, you always can make
straight lines pressing the shift key, but if is necesary two kinds of
curves in the same "line", maybe the live effect way isnt a solution and
we want to wait to SVG adopt BSplines. For me this isn`t a problem, is
like spiro ones, coulden`t be mixed with regular curves.

Another cuestion, whats UX review?

Hi and thanks for contribute.

Revision history for this message
ScislaC (scislac) wrote :

UX is User Experience design... and it may not be applicable in this case given the way you went about implementing it. I guess I should have realized that this was handled via a live effect (hence the spiro related changes too). Spiro seems usable enough for people, so given that this is a similar effect it's seemingly a non-issue.

It's definitely less of an "incomplete" implementation than I was assuming.

Revision history for this message
Martin Owens (doctormo) wrote :

Many apologies everyone.

Half my time is spent interpreting Launchpad and the other half committing to getting it wrong ;-)

Carry on everyone! ScislaC, let me know if you change your mind about the UX review.

Revision history for this message
Jabiertxof (jabiertxof) wrote :

El vie, 20-09-2013 a las 02:19 +0000, ScislaC escribió:
> UX is User Experience design... and it may not be applicable in this
> case given the way you went about implementing it. I guess I should
> have realized that this was handled via a live effect (hence the spiro
> related changes too). Spiro seems usable enough for people, so given
> that this is a similar effect it's seemingly a non-issue.
>
> It's definitely less of an "incomplete" implementation than I was
> assuming.

Ok, thanks for the new review.

12094. By Jabiertxof <email address hidden>

Martin Owens review: svg icons saved whith trunk instead 0.48.3

Revision history for this message
Jabiertxof (jabiertxof) wrote :

El jue, 19-09-2013 a las 13:37 +0000, Martin Owens escribió:
> Review: Needs Fixing code review
>
> The edited svg should be saved using the inkscape compact options like the previous revision.

Hi, icons.svg saved whith trunk instead 0.48.3. Martin, think it fix.

Revision history for this message
su_v (suv-lp) wrote :

On 2013-09-20 12:37 +0200, Jabiertxo Arraiza Cenoz wrote:
> El jue, 19-09-2013 a las 13:37 +0000, Martin Owens escribió:
>> Review: Needs Fixing code review
>>
>> The edited svg should be saved using the inkscape compact options like the previous revision.
>
> Hi, icons.svg saved whith trunk instead 0.48.3. Martin, think it fix.

@Jabiertxo - 'compact' refers to the Inkscape settings used to save the
icons.svg file (to keep the changes between revisions minimal, and the
size of the icons.svg file overall small):

<http://wiki.inkscape.org/wiki/index.php/HowToEditIcons>

12095. By Jabiertxof <email address hidden>

Compact of SVG icons whith the help of ~suv and Martin Owens

Revision history for this message
Jabiertxof (jabiertxof) wrote :

El vie, 20-09-2013 a las 11:03 +0000, ~suv escribió:
> On 2013-09-20 12:37 +0200, Jabiertxo Arraiza Cenoz wrote:
> > El jue, 19-09-2013 a las 13:37 +0000, Martin Owens escribió:
> >> Review: Needs Fixing code review
> >>
> >> The edited svg should be saved using the inkscape compact options like the previous revision.
> >
> > Hi, icons.svg saved whith trunk instead 0.48.3. Martin, think it fix.
>
> @Jabiertxo - 'compact' refers to the Inkscape settings used to save the
> icons.svg file (to keep the changes between revisions minimal, and the
> size of the icons.svg file overall small):
>
> <http://wiki.inkscape.org/wiki/index.php/HowToEditIcons>
>
>
@~suv and @doctormo thanks and done!

Revision history for this message
su_v (suv-lp) wrote :

On 2013-09-20 13:48 +0200, Jabiertxo Arraiza Cenoz wrote:
> El vie, 20-09-2013 a las 11:03 +0000, ~suv escribió:
>> On 2013-09-20 12:37 +0200, Jabiertxo Arraiza Cenoz wrote:
>>> El jue, 19-09-2013 a las 13:37 +0000, Martin Owens escribió:
>>>> Review: Needs Fixing code review
>>>>
>>>> The edited svg should be saved using the inkscape compact options like the previous revision.
>>>
>>> Hi, icons.svg saved whith trunk instead 0.48.3. Martin, think it fix.
>>
>> @Jabiertxo - 'compact' refers to the Inkscape settings used to save the
>> icons.svg file (to keep the changes between revisions minimal, and the
>> size of the icons.svg file overall small):
>>
>> <http://wiki.inkscape.org/wiki/index.php/HowToEditIcons>
>>
>>
> @~suv and @doctormo thanks and done!

hmm - looks like the last commit to 'share/icons/icons.svg' in trunk already broke with that rule and committed a version saved with different preferences:
<http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/revision/12533>

(@Jabiertxo - that's not your fault, this need to be fixed in trunk first AFAIU)

Revision history for this message
Vinipsmaker (vinipsmaker) wrote :

> hmm - looks like the last commit to 'share/icons/icons.svg' in trunk already broke with that rule and committed a version saved with different preferences:
<http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/revision/12533>

> (@Jabiertxo - that's not your fault, this need to be fixed in trunk first AFAIU)

Right, this is my fault.

Fixed in rev 12553.

12096. By Jabiertxof <email address hidden>

Update to trunk

12097. By Jabiertxof <email address hidden>

update to trunk

12098. By Jabiertxof <email address hidden>

Update to trunk

Revision history for this message
su_v (suv-lp) wrote :

r12098 fails to build:

  CXX ui/tool/path-manipulator.o
../../src/ui/tool/path-manipulator.cpp: In constructor ‘Inkscape::UI::PathManipulator::PathManipulator(Inkscape::UI::MultiPathManipulator&, SPPath*, const Geom::Affine&, guint32, Glib::ustring)’:
../../src/ui/tool/path-manipulator.cpp:155: error: ‘sp_lpe_item_has_path_effect’ was not declared in this scope
../../src/ui/tool/path-manipulator.cpp:156: error: ‘sp_lpe_item_has_path_effect_of_type’ was not declared in this scope
make[3]: *** [ui/tool/path-manipulator.o] Error 1
make[2]: *** [all] Error 2
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2

Revision history for this message
Jabiertxof (jabiertxof) wrote :

El jue, 26-09-2013 a las 10:30 +0000, ~suv escribió:
> r12098 fails to build:
>
> CXX ui/tool/path-manipulator.o
> ../../src/ui/tool/path-manipulator.cpp: In constructor ‘Inkscape::UI::PathManipulator::PathManipulator(Inkscape::UI::MultiPathManipulator&, SPPath*, const Geom::Affine&, guint32, Glib::ustring)’:
> ../../src/ui/tool/path-manipulator.cpp:155: error: ‘sp_lpe_item_has_path_effect’ was not declared in this scope
> ../../src/ui/tool/path-manipulator.cpp:156: error: ‘sp_lpe_item_has_path_effect_of_type’ was not declared in this scope
> make[3]: *** [ui/tool/path-manipulator.o] Error 1
> make[2]: *** [all] Error 2
> make[1]: *** [all-recursive] Error 1
> make: *** [all] Error 2
>
Thanks i know it im searching solutions, i think both functions
disappear from code.
Regards, Jabier.

Revision history for this message
su_v (suv-lp) wrote :

On 2013-09-26 12:48 +0200, Jabiertxo Arraiza Cenoz wrote:
> El jue, 26-09-2013 a las 10:30 +0000, ~suv escribió:
>> r12098 fails to build:
>>
>> CXX ui/tool/path-manipulator.o
>> ../../src/ui/tool/path-manipulator.cpp: In constructor ‘Inkscape::UI::PathManipulator::PathManipulator(Inkscape::UI::MultiPathManipulator&, SPPath*, const Geom::Affine&, guint32, Glib::ustring)’:
>> ../../src/ui/tool/path-manipulator.cpp:155: error: ‘sp_lpe_item_has_path_effect’ was not declared in this scope
>> ../../src/ui/tool/path-manipulator.cpp:156: error: ‘sp_lpe_item_has_path_effect_of_type’ was not declared in this scope
>> make[3]: *** [ui/tool/path-manipulator.o] Error 1
>> make[2]: *** [all] Error 2
>> make[1]: *** [all-recursive] Error 1
>> make: *** [all] Error 2
>>
> Thanks i know it im searching solutions, i think both functions
> disappear from code.

r12098 compiled for me successfully with attached diff, and in a quick
test bspline-node-editing seems to work ok, as with earlier builds.

Please review (I don't speak C++ ;-) ).

1=== modified file 'src/ui/tool/path-manipulator.cpp'
2--- src/ui/tool/path-manipulator.cpp 2013-09-25 22:56:32 +0000
3+++ src/ui/tool/path-manipulator.cpp 2013-09-26 11:13:45 +0000
4@@ -152,8 +152,8 @@
5 _createControlPointsFromGeometry();
6 //BSpline
7 lpe_bsp = NULL;
8- if (SP_IS_LPE_ITEM(_path) && sp_lpe_item_has_path_effect(SP_LPE_ITEM(_path))){
9- Inkscape::LivePathEffect::Effect* thisEffect = sp_lpe_item_has_path_effect_of_type(SP_LPE_ITEM(_path),Inkscape::LivePathEffect::BSPLINE);
10+ if (_path->hasPathEffect()){
11+ Inkscape::LivePathEffect::Effect* thisEffect = SP_LPE_ITEM(_path)->getPathEffectOfType(Inkscape::LivePathEffect::BSPLINE);
12 if(thisEffect){
13 lpe_bsp = dynamic_cast<LivePathEffect::LPEBSpline*>(thisEffect->getLPEObj()->get_lpe());
14 }
Revision history for this message
Jabiertxof (jabiertxof) wrote :

Thanks ~suv for the help! Think today fix with your work.
Regards, Jabier.

El jue, 26-09-2013 a las 12:09 +0000, ~suv escribió:
> On 2013-09-26 12:48 +0200, Jabiertxo Arraiza Cenoz wrote:
> > El jue, 26-09-2013 a las 10:30 +0000, ~suv escribió:
> >> r12098 fails to build:
> >>
> >> CXX ui/tool/path-manipulator.o
> >> ../../src/ui/tool/path-manipulator.cpp: In constructor ‘Inkscape::UI::PathManipulator::PathManipulator(Inkscape::UI::MultiPathManipulator&, SPPath*, const Geom::Affine&, guint32, Glib::ustring)’:
> >> ../../src/ui/tool/path-manipulator.cpp:155: error: ‘sp_lpe_item_has_path_effect’ was not declared in this scope
> >> ../../src/ui/tool/path-manipulator.cpp:156: error: ‘sp_lpe_item_has_path_effect_of_type’ was not declared in this scope
> >> make[3]: *** [ui/tool/path-manipulator.o] Error 1
> >> make[2]: *** [all] Error 2
> >> make[1]: *** [all-recursive] Error 1
> >> make: *** [all] Error 2
> >>
> > Thanks i know it im searching solutions, i think both functions
> > disappear from code.
>
> r12098 compiled for me successfully with attached diff, and in a quick
> test bspline-node-editing seems to work ok, as with earlier builds.
>
> Please review (I don't speak C++ ;-) ).
>
>
>

12099. By Jabiertxof <email address hidden>

Compiling problem solved thaks to ~suv

12100. By Jabiertxof <email address hidden>

update to trunk

12101. By Jabiertxof <email address hidden>

update to trunk

12102. By Jabiertxof <email address hidden>

update to trunk

12103. By Jabiertxof <email address hidden>

error bend lpe

Revision history for this message
Jabiertxof (jabiertxof) wrote :

Martin i request a change status of "SVG icons" for fix. I think its fixed.

12104. By Jabiertxof <email address hidden>

Fix editing paths in live effect

12105. By Jabiertxof <email address hidden>

update to trunk

Revision history for this message
Jabiertxof (jabiertxof) wrote :

Hi ~suv, I add to your code "if (SP_IS_LPE_ITEM(_path) && _path->hasPathEffect()){" Because a path editing crash in bend lpe.
Thanks again for your work.

Revision history for this message
Martin Owens (doctormo) :
review: Approve
Revision history for this message
Jabiertxof (jabiertxof) wrote :

El vie, 27-09-2013 a las 12:06 +0000, Martin Owens escribió:
> Review: Approve
>
>
Thanks.

12106. By Jabiertxof <email address hidden>

Update to trunk

12107. By Jabiertxof <email address hidden>

Fixed a bug editing paths in others LPE -envelope-

12108. By Jabiertxof <email address hidden>

update to trunk

Revision history for this message
Martin Owens (doctormo) wrote :

Hey Jabiertxof,

How are you doing with this merge? Is it read or complete?

Revision history for this message
Jabiertxof (jabiertxof) wrote :

El jue, 03-10-2013 a las 20:22 +0000, Martin Owens escribió:
> Hey Jabiertxof,
>
> How are you doing with this merge? Is it read or complete?

Hi Martin!

Its working but its pending for a full review -first code in c++-, im
updating but only to follow the trunk.

Regards, Jabier.

12109. By root <email address hidden>

update to trunk

12110. By Jabiertxof <email address hidden>

Fix moving handles

12111. By Jabiertxof <email address hidden>

update to trunk

12112. By Jabiertxof <email address hidden>

fix whith bspline handles

12113. By Jabiertxof <email address hidden>

Fix in BSpline

12114. By Jabiertxof <email address hidden>

update to trunk

12115. By root <email address hidden>

Fix in bsplines

12116. By Jabiertxof <email address hidden>

UX improvements

12117. By Jabiertxof <email address hidden>

Adding bspline file to POTFILES.IN

12118. By Jabiertxof <email address hidden>

Fix bspline and strip multi node bspline power editing whith node tool because UX

12119. By Jabiertxof <email address hidden>

update to trunk

12120. By Jabiertxof <email address hidden>

Fix scaling handles

12121. By Jabiertxof <email address hidden>

Fix scaling handles

12122. By Jabiertxof <email address hidden>

fix in nodes

12123. By Jabiertxof <email address hidden>

update to trunk

12124. By Jabiertxof <email address hidden>

Fixing BSplines

12125. By Jabiertxof <email address hidden>

fix bsplines

12126. By Jabiertxof <email address hidden>

fix bsplines

12127. By Jabiertxof <email address hidden>

fix bsplines

12128. By Jabiertxof <email address hidden>

fix bsplines

12129. By Jabiertxof <email address hidden>

fix bsplines

12130. By Jabiertxof <email address hidden>

Update to trunk

12131. By Jabiertxof <email address hidden>

Update to trunk

12132. By Jabiertxof <email address hidden>

Update to trunk

12133. By Jabiertxof <email address hidden>

Update motion redraw of bsplines

12134. By Jabiertxof <email address hidden>

Update to trunk

12135. By Jabiertxof <email address hidden>

Update to trunk

12136. By Jabiertxof <email address hidden>

Update to trunk

12137. By Jabiertxof <email address hidden>

Update to trunk

12138. By Jabiertxof <email address hidden>

Update to trunk

12139. By Jabiertxof <email address hidden>

Update to trunk

12140. By Jabiertxof <email address hidden>

Update to trunk

12141. By Jabiertxof <email address hidden>

Update to trunk

12142. By Jabiertxof <email address hidden>

Update to trunk

12143. By Jabiertxof <email address hidden>

Update to trunk

12144. By Jabiertxof <email address hidden>

Fixing bugs on update to trunk

12145. By Jabiertxof <email address hidden>

Update to trunk

12146. By Jabiertxof <email address hidden>

Update to trunk

12147. By Jabiertxof <email address hidden>

Update to trunk

12148. By Jabiertxof <email address hidden>

Update to trunk

12149. By Jabiertxof <email address hidden>

Update to trunk

12150. By Jabiertxof <email address hidden>

Update to trunk

12151. By Jabiertxof <email address hidden>

Update to trunk

12152. By Jabiertxof <email address hidden>

Update to trunk

12153. By Jabiertxof <email address hidden>

Update to trunk

12154. By Jabiertxof <email address hidden>

Update to trunk

12155. By Jabiertxof <email address hidden>

Update to trunk

12156. By Jabiertxof <email address hidden>

Fix a bug delete BSpline LPE from a path retain some BSpline properties

12157. By Jabiertxof <email address hidden>

Update to trunk

12158. By Jabiertxof <email address hidden>

Update to trunk

12159. By Jabiertxof <email address hidden>

Update to trunk

12160. By Jabiertxof <email address hidden>

Fix crash bug continuing empty paths

12161. By Jabiertxof <email address hidden>

Refactorizing

12162. By Jabiertxof <email address hidden>

Refactorizing

12163. By Jabiertxof <email address hidden>

Refactorizing

12164. By Jabiertxof <email address hidden>

Start refactor, simplify node.cpp operations,general cleanup, changed brehabiour to need 'Shift' Key to move handles because it handle better operations with small zoom

12165. By Jabiertxof <email address hidden>

Updated tip strings

12166. By Jabiertxof <email address hidden>

Refact

12167. By Jabiertxof <email address hidden>

Spanish comment of node.cpp

12168. By Jabiertxof <email address hidden>

Spanish comment of node.h

12169. By Jabiertxof <email address hidden>

refactor, fixing some diff diferences

12170. By Jabiertxof <email address hidden>

update to trunk

12171. By Jabiertxof <email address hidden>

Spanish comment of curve-drag-point-cpp

12172. By Jabiertxof <email address hidden>

Spanish comment of multi-path-manipulator-cpp

12173. By Jabiertxof <email address hidden>

Spanish comment of path-manipulator-cpp

12174. By Jabiertxof <email address hidden>

Spanish comment of freehand-base.cpp

12175. By Jabiertxof <email address hidden>

Spanish comment of node-tool.cpp

12176. By Jabiertxof <email address hidden>

Spanish comment of pencil-tool.cpp/.h

12177. By Jabiertxof <email address hidden>

Spanish comment of pencil-tool.cpp

12178. By Jabiertxof <email address hidden>

refactor, fixing some diff diferences

12179. By Jabiertxof <email address hidden>

fix a bug whith degenerate handles

12180. By Jabiertxof <email address hidden>

Fixed a boring bug sometimes curves be converted to lines, increasing a bit the distance from the handle to the line

12181. By Jabiertxof <email address hidden>

update to trunk

12182. By Jabiertxof <email address hidden>

Fix a bug whith oposite handles on node move,and a little cleanup

12183. By Jabiertxof <email address hidden>

update to trunk

12184. By Jabiertxof <email address hidden>

update to trunk

12185. By Jabiertxof <email address hidden>

update to trunk

12186. By Jabiertxof <email address hidden>

update to trunk

12187. By Jabiertxof <email address hidden>

update to trunk

12188. By Jabiertxof <email address hidden>

update to trunk

12189. By Jabiertxof <email address hidden>

show outline like normal paths, by good su_v suggestion

12190. By Jabiertxof <email address hidden>

update to trunk

12191. By Jabiertxof <email address hidden>

show outline by default in bspline, tnx to su_v suggestion

12192. By Jabiertxof <email address hidden>

fix bug compiling

12193. By Jabiertxof <email address hidden>

Hack to can show/hide bspline lines

12194. By Jabiertxof <email address hidden>

add comment to bspline red outline hack

12195. By Jabiertxof <email address hidden>

Add correct preview for coninuing paths whith pencil and draw modes

12196. By Jabiertxof <email address hidden>

update to trunk

12197. By Jabiertxof <email address hidden>

fixing su_v advertising memory bug

12198. By Jabiertxof <email address hidden>

update to trunk

12199. By Jabiertxof <email address hidden>

update to trunk

12200. By Jabiertxof <email address hidden>

update to trunk

12201. By Jabiertxof <email address hidden>

Removing hack for force show red lines in bspline mode

12202. By Jabiertxof <email address hidden>

update to trunk

12203. By Jabiertxof <email address hidden>

update to trunk

12204. By Jabiertxof <email address hidden>

update to trunk

12205. By Jabiertxof <email address hidden>

update to trunk

12206. By Jabiertxof <email address hidden>

update to trunk

12207. By Jabiertxof <email address hidden>

Fixed some/all bugs related to continuing bspline/spiro curves advertaising by suv

12208. By Jabiertxof <email address hidden>

update to trunk

12209. By Jabiertxof <email address hidden>

update to trunk

12210. By Jabiertxof <email address hidden>

adding some comments

12211. By Jabiertxof <email address hidden>

Substitute isBSpline property by a cached function isBSpline(bool)

12212. By Jabiertxof <email address hidden>

update to trunk

12213. By Jabiertxof <email address hidden>

update to trunk

12214. By Jabiertxof <email address hidden>

Resolving conflicts, maybe broken

12215. By Jabiertxof <email address hidden>

Fixed update to trunk, lot of changes vinícius

12216. By Jabiertxof <email address hidden>

Add new curve structure to show temporay item while draw on bspline and spiro, maybe the previous usage of the blue_curve give the strange errors in mac noticed by suv

12217. By Jabiertxof <email address hidden>

update to trunk

12218. By Jabiertxof <email address hidden>

update to trunk

12219. By Jabiertxof <email address hidden>

update to trunk

12220. By Jabiertxof <email address hidden>

update to trunk

12221. By Jabiertxof <email address hidden>

update to trunk

12222. By Jabiertxof <email address hidden>

update to trunk

12223. By Jabiertxof <email address hidden>

Reduce a half the spiro distance to redraw

12224. By Jabiertxof <email address hidden>

update to trunk

12225. By Jabiertxof <email address hidden>

Change tooltip to one more explicit to make cusp nodes

12226. By Jabiertxof <email address hidden>

update to trunk

12227. By Jabiertxof <email address hidden>

update to trunk

12228. By Jabiertxof <email address hidden>

Translations

12229. By Jabiertxof <email address hidden>

Translations

12230. By Jabiertxof <email address hidden>

Fixing branch problems

12231. By Jabiertxof <email address hidden>

Fixing branch problems

12232. By Jabiertxof <email address hidden>

Branch problem introduced by me fixed, thanks Guiu for the translations

12233. By Jabiertxof <email address hidden>

update to trunk

12234. By Jabiertxof <email address hidden>

update to trunk

12235. By root <email address hidden>

Fixed a bug when click over the previuos node in bspline/spiro mode

12236. By Jabiertxof <email address hidden>

update to trunk

12237. By Jabiertxof <email address hidden>

update to trunk

12238. By Jabiertxof <email address hidden>

Update to Vinipsmaker changes

12239. By Jabiertxof <email address hidden>

update to trunk

12240. By Jabiertxof <email address hidden>

update to trunk

12241. By Jabiertxof <email address hidden>

update to trunk

12242. By Jabiertxof <email address hidden>

update to trunk

12243. By Jabiertxof <email address hidden>

update to trunk

12244. By Jabiertxof <email address hidden>

commit Vinícius code

12245. By Jabiertxof <email address hidden>

update to trunk

12246. By Jabiertxof <email address hidden>

disabling cache approach for isBSpline function, pointed by Vinícius

12247. By Jabiertxof <email address hidden>

simplify the code in isBSpline

12248. By Jabiertxof <email address hidden>

Fix to solve static var in isBSpline function

12249. By Jabiertxof <email address hidden>

update to trunk

12250. By Jabiertxof <email address hidden>

update to trunk

12251. By Jabiertxof <email address hidden>

This think fix su_v related bug on continuous paths in BSpline or Spiro mode

12252. By Jabiertxof <email address hidden>

update to trunk

12253. By root <email address hidden>

Fixing suv mac bug continuing existing bsplines/spiro paths

12254. By Jabiertxof <email address hidden>

Fix a bug when starting path with change from bspline to spiro and inverse

12255. By Jabiertxof <email address hidden>

update to trunk

12256. By Jabiertxof <email address hidden>

Refactor of anchors

12257. By Jabiertxof <email address hidden>

update to trunk

12258. By Jabiertxof <email address hidden>

Full refactor of path continuations in bspline-spirolive mode, I think no more suv mac crashes, but need to be full tested again because a lot of things changed.

12259. By Jabiertxof <email address hidden>

Removed persistent blue line

12260. By Jabiertxof <email address hidden>

Fixed bug continuing cusp nodes

12261. By Jabiertxof <email address hidden>

update to trunk

12262. By Jabiertxof <email address hidden>

update to trunk

12263. By Jabiertxof <email address hidden>

update to trunk

12264. By Jabiertxof <email address hidden>

Adding cout << output to check bug in Geom::are_near

12265. By Jabiertxof <email address hidden>

update to trunk

12266. By Jabiertxof <email address hidden>

clang-format bspline lpe files

12267. By Jabiertxof <email address hidden>

update to trunk

12268. By Jabiertxof <email address hidden>

Fixed bug in LPE Bspline widget, on apply selected nodes, because a rounding problem. Thanks very much to Johan Engelen for point me to the correct direction. maybe is better round it previously to the are_near function, not sure

12269. By Jabiertxof <email address hidden>

update to trunk

12270. By Jabiertxof <email address hidden>

clarify the 'sc' and 'ec' SPCurve, by point of Vinícius, whith the result of one curve less in the header

12271. By Jabiertxof <email address hidden>

use <cmath> instead <math.h> by point of Vinícius

12272. By Jabiertxof <email address hidden>

Some node.cpp/h work moved to path_manipulator.
Header variable bsplineWeight removed from all.
Simplification of code with less functions in path_manipulator.

To fix: tips stop working because is handled by two static functions and
couldent call to path_manipulator from here. Vinícius, any work arround? lines
480,481,1426,1427,1462 of node.cpp.

gez: ¿Puedes probar si notas algun bug o problema? principalmente con
la herramienta nodo, gracias.

12273. By Jabiertxof <email address hidden>

A refactor for fixing some issues. Pending how to handle static functions
Vinícius for handle tips in his static functions i know two ways:
A: A bool property in node class of node.h to handle if curve is bspline
B: Call another non static function from the static tips one -not tested-

12274. By Jabiertxof <email address hidden>

update to trunk

12275. By Jabiertxof <email address hidden>

Refactor of end anchors.

12276. By Jabiertxof <email address hidden>

update to trunk

12277. By Jabiertxof <email address hidden>

update to trunk

12278. By Jabiertxof <email address hidden>

update to trunk

12279. By Jabiertxof <email address hidden>

update to trunk

12280. By Jabiertxof <email address hidden>

update to trunk

12281. By Jabiertxof <email address hidden>

update to trunk

12282. By Jabiertxof <email address hidden>

update to trunk

12283. By Jabiertxof <email address hidden>

update to trunk

12284. By Jabiertxof <email address hidden>

align two buttons in LPE widget

12285. By Jabiertxof <email address hidden>

Redesign of the BSpline LPE widgets

12286. By Jabiertxof <email address hidden>

update to trunk

12287. By Jabiertxof <email address hidden>

update to trunk

12288. By Jabiertxof <email address hidden>

update to trunk

Revision history for this message
Vinipsmaker (vinipsmaker) wrote :

There are a few things that could be improved, like the use of enum to represent widget mode (instead of plain and magical int numbers) and the use of new and delete (that we still need to keep, but hopefully will go away when we migrate to C++11), but none of this has anything to do with Jabier's changes. I think the branch can be merged already.

I discussed changes I thought worth through private emails with Jabier and they were already done.

Possibly some devs would like to see the use of SPCurve migrated to Geom::PathVector, but (1) I don't think it's important here and (2) looks like Geom::PathVector will receive breaking changes from KK soon.

Possibly other devs would like to see some asserts after some unchecked dynamic_cast, but I don't think this is important.

Any bugs related to this branch or has it become stable already?

Anyway, I'll move to another task within the Inkscape project.

It was a lot of code to review and took me some time.
=)

review: Approve
Revision history for this message
Jabiertxof (jabiertxof) wrote :

> It was a lot of code to review and took me some time.
> =)

Thanks very much for the review!

Revision history for this message
Jabiertxof (jabiertxof) wrote :

> It was a lot of code to review and took me some time.
> =)

Thanks very much for the review!

12289. By Jabiertxof <email address hidden>

adding Vinícius work whith node tips

12290. By Jabiertxof <email address hidden>

update to trunk

12291. By Jabiertxof <email address hidden>

adding const _pathmanipulatos staff to handles (handles also have tips)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'po/POTFILES.in'
2--- po/POTFILES.in 2014-04-09 22:45:19 +0000
3+++ po/POTFILES.in 2014-05-05 09:51:15 +0000
4@@ -143,6 +143,8 @@
5 src/live_effects/lpe-powerstroke.cpp
6 src/live_effects/lpe-rough-hatches.cpp
7 src/live_effects/lpe-ruler.cpp
8+src/live_effects/lpe-bspline.cpp
9+src/live_effects/lpe-skeleton.cpp
10 src/live_effects/lpe-sketch.cpp
11 src/live_effects/lpe-vonkoch.cpp
12 src/live_effects/parameter/bool.cpp
13
14=== modified file 'share/icons/icons.svg'
15--- share/icons/icons.svg 2014-03-27 19:22:24 +0000
16+++ share/icons/icons.svg 2014-05-05 09:51:15 +0000
17@@ -821,50 +821,19 @@
18 <stop id="stop3482-77-2" offset="0.0000000" style="stop-color:#646464;stop-opacity:1.0000000;" />
19 <stop id="stop3484-3-2" offset="1.0000000" style="stop-color:#000000;stop-opacity:1.0000000;" />
20 </linearGradient>
21-<linearGradient id="linearGradient5740-1-4">
22-<stop id="stop5742-8-4" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000;" />
23-<stop id="stop5744-32-6" offset="1.0000000" style="stop-color:#98b6d3;stop-opacity:1.0000000;" />
24-</linearGradient>
25-<linearGradient id="linearGradient5740-1-4-4">
26-<stop id="stop5742-8-4-5" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000;" />
27-<stop id="stop5744-32-6-7" offset="1.0000000" style="stop-color:#98b6d3;stop-opacity:1.0000000;" />
28-</linearGradient>
29 <linearGradient xlink:href="#linearGradient5740-1-4-6" y2="180.6826" x2="164.3598" y1="172.2059" x1="161.736" gradientTransform="matrix(2.499161,0,0,1.671823,-82.24308,-178.7565)" gradientUnits="userSpaceOnUse" id="linearGradient5545-0-70" inkscape:collect="always" />
30 <linearGradient id="linearGradient5740-1-4-6">
31 <stop id="stop5742-8-4-8" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000;" />
32 <stop id="stop5744-32-6-3" offset="1.0000000" style="stop-color:#98b6d3;stop-opacity:1.0000000;" />
33 </linearGradient>
34-<linearGradient id="linearGradient1887-1">
35-<stop id="stop1888-0" offset="0.0000000" style="stop-color:#fffdf8;stop-opacity:1.0000000;" />
36-<stop id="stop1889-9" offset="1.0000000" style="stop-color:#cdccc7;stop-opacity:1.0000000;" />
37-</linearGradient>
38-<linearGradient y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(1,0,0,0.996869,-115.0577,-334.2098)" gradientUnits="userSpaceOnUse" id="linearGradient10926" xlink:href="#linearGradient1887-1" inkscape:collect="always" />
39-<linearGradient id="linearGradient1887-4">
40-<stop id="stop1888-8" offset="0.0000000" style="stop-color:#fffdf8;stop-opacity:1.0000000;" />
41-<stop id="stop1889-7" offset="1.0000000" style="stop-color:#cdccc7;stop-opacity:1.0000000;" />
42-</linearGradient>
43-<linearGradient y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(0.533827,0,0,0.532126,-61.18771,-178.1669)" gradientUnits="userSpaceOnUse" id="linearGradient11010" xlink:href="#linearGradient1887-4" inkscape:collect="always" />
44-<linearGradient id="linearGradient1887-1-0">
45-<stop id="stop1888-0-6" offset="0.0000000" style="stop-color:#fffdf8;stop-opacity:1.0000000;" />
46-<stop id="stop1889-9-4" offset="1.0000000" style="stop-color:#cdccc7;stop-opacity:1.0000000;" />
47-</linearGradient>
48-<linearGradient y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(1,0,0,0.996869,165.9423,-181.2098)" gradientUnits="userSpaceOnUse" id="linearGradient11070" xlink:href="#linearGradient1887-1-0" inkscape:collect="always" />
49-<linearGradient id="linearGradient1887-1-0-3">
50-<stop id="stop1888-0-6-7" offset="0.0000000" style="stop-color:#fffdf8;stop-opacity:1.0000000;" />
51-<stop id="stop1889-9-4-2" offset="1.0000000" style="stop-color:#cdccc7;stop-opacity:1.0000000;" />
52-</linearGradient>
53-<linearGradient y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(1,0,0,0.996869,165.9423,-181.2098)" gradientUnits="userSpaceOnUse" id="linearGradient11130" xlink:href="#linearGradient1887-1-0-3" inkscape:collect="always" />
54 <linearGradient xlink:href="#linearGradient1887-3" y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(1,0,0,0.996869,165.9423,-181.2098)" gradientUnits="userSpaceOnUse" id="linearGradient15175-8" inkscape:collect="always" />
55 <linearGradient id="linearGradient1887-3">
56 <stop id="stop1888-2" offset="0.0000000" style="stop-color:#fffdf8;stop-opacity:1.0000000;" />
57 <stop id="stop1889-94" offset="1.0000000" style="stop-color:#cdccc7;stop-opacity:1.0000000;" />
58 </linearGradient>
59-<linearGradient y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(1,0,0,0.996869,-115.0577,-334.2098)" gradientUnits="userSpaceOnUse" id="linearGradient11238" xlink:href="#linearGradient1887-3" inkscape:collect="always" />
60-<linearGradient inkscape:collect="always" xlink:href="#linearGradient10331" id="linearGradient10337" x1="255.513" y1="92.579002" x2="264.6582" y2="83.394058" gradientUnits="userSpaceOnUse" />
61-<linearGradient inkscape:collect="always" xlink:href="#linearGradient10331" id="linearGradient10372" gradientUnits="userSpaceOnUse" x1="255.513" y1="92.579002" x2="264.6582" y2="83.394058" />
62 <linearGradient inkscape:collect="always" xlink:href="#linearGradient10331" id="linearGradient10399" gradientUnits="userSpaceOnUse" x1="255.513" y1="92.579002" x2="264.6582" y2="83.394058" />
63 </defs>
64-<sodipodi:namedview inkscape:guide-bbox="true" inkscape:current-layer="svg1" inkscape:grid-bbox="true" inkscape:pageopacity="1.0000000" pagecolor="#e8e8e4" snaptoguides="true" showguides="true" inkscape:window-y="0" inkscape:window-x="40" inkscape:window-height="745" inkscape:window-width="1326" inkscape:cy="417.9499" inkscape:cx="364.8285" inkscape:zoom="3.343024" gridtolerance="6" snaptogrid="false" showgrid="false" id="base" inkscape:document-units="px" inkscape:grid-points="true" guidetolerance="8" fill="#8ab3de" stroke="#646464" inkscape:object-nodes="false" objecttolerance="11" inkscape:snap-bbox="false" inkscape:snap-nodes="true" inkscape:bbox-nodes="false" inkscape:bbox-paths="false" inkscape:snap-global="false" inkscape:snap-center="false" inkscape:snap-midpoints="false" inkscape:snap-intersection-paths="true" inkscape:object-paths="false" inkscape:snap-object-midpoints="true" inkscape:window-maximized="1" inkscape:snap-grids="true" inkscape:snap-smooth-nodes="false" inkscape:snap-text-baseline="false" inkscape:snap-page="true" inkscape:snap-bbox-midpoints="false" inkscape:snap-bbox-edge-midpoints="false">
65+<sodipodi:namedview inkscape:guide-bbox="true" inkscape:current-layer="svg1" inkscape:grid-bbox="true" inkscape:pageopacity="1.0000000" pagecolor="#e8e8e4" snaptoguides="true" showguides="true" inkscape:window-y="27" inkscape:window-x="0" inkscape:window-height="894" inkscape:window-width="1280" inkscape:cy="489.8736" inkscape:cx="1010.206" inkscape:zoom="2.759271" gridtolerance="6" snaptogrid="false" showgrid="false" id="base" inkscape:document-units="px" inkscape:grid-points="true" guidetolerance="8" fill="#8ab3de" stroke="#646464" inkscape:object-nodes="false" objecttolerance="11" inkscape:snap-bbox="false" inkscape:snap-nodes="true" inkscape:bbox-nodes="false" inkscape:bbox-paths="false" inkscape:snap-global="false" inkscape:snap-center="false" inkscape:snap-midpoints="false" inkscape:snap-intersection-paths="true" inkscape:object-paths="false" inkscape:snap-object-midpoints="true" inkscape:window-maximized="1" inkscape:snap-grids="true" inkscape:snap-smooth-nodes="false" inkscape:snap-text-baseline="false" inkscape:snap-page="true" inkscape:snap-bbox-midpoints="false" inkscape:snap-bbox-edge-midpoints="false">
66 <inkscape:grid type="xygrid" id="grid9252" originx="0px" originy="0px" spacingx="0.5px" spacingy="0.5px" empspacing="2" visible="true" enabled="true" snapvisiblegridlinesonly="true" />
67 <sodipodi:guide orientation="0,1" position="630.08101,968.02815" id="guide4946" />
68 <sodipodi:guide orientation="0,1" position="618.47896,943.93157" id="guide4948" />
69@@ -887,7 +856,7 @@
70 <dc:title>Inkscape Developers</dc:title>
71 </cc:Agent>
72 </dc:rights>
73-<dc:title></dc:title>
74+<dc:title />
75 </cc:Work>
76 <cc:License rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
77 <cc:permits rdf:resource="http://web.resource.org/cc/Reproduction" />
78@@ -3859,45 +3828,52 @@
79 <g id="boundingbox_top_left" transform="translate(998.14709,-107)" inkscape:label="#boundingbox_top_left" style="display:inline">
80 <rect y="475" x="-262.14709" height="16" width="16" id="rect7835" style="fill:none;stroke:none" />
81 <path sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" id="path7837" d="m -257.64708,489.5 0,-10 10,0 0,2 -8,0 0,8 z" style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
82-<path transform="matrix(1.05938,0,0,1.0593804,-645.21436,-1289.4664)" d="m 370.56324,1670.7562 a 3.7757924,3.7757924 0 0 1 -3.77579,3.7758 3.7757924,3.7757924 0 0 1 -3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.77579,3.7758 z" sodipodi:ry="3.7757924" sodipodi:rx="3.7757924" sodipodi:cy="1670.7562" sodipodi:cx="366.78745" id="path7824" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" />
83+<path transform="matrix(1.05938,0,0,1.0593804,-645.21436,-1289.4664)" d="m 370.5632,1670.756 c 0,2.086 -1.6904,3.776 -3.7758,3.776 -2.0853,0 -3.7757,-1.69 -3.7757,-3.776 0,-2.085 1.6904,-3.776 3.7757,-3.776 2.0854,0 3.7758,1.691 3.7758,3.776 z" sodipodi:ry="3.7757924" sodipodi:rx="3.7757924" sodipodi:cy="1670.7562" sodipodi:cx="366.78745" id="path7824" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" />
84 </g>
85 <g id="boundingbox_top" transform="translate(1022.1471,-107)" style="display:inline">
86 <rect style="fill:none;stroke:none" id="rect7846" width="16" height="16" x="-262.14709" y="475" />
87 <path style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" d="m -260.64708,479.5 13,0 0,2 -13,0 z" id="path7848" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
88-<path sodipodi:type="arc" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path7850" sodipodi:cx="366.78745" sodipodi:cy="1670.7562" sodipodi:rx="3.7757924" sodipodi:ry="3.7757924" d="m 370.56324,1670.7562 a 3.7757924,3.7757924 0 0 1 -3.77579,3.7758 3.7757924,3.7757924 0 0 1 -3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.77579,3.7758 z" transform="matrix(1.05938,0,0,1.0593804,-642.71436,-1289.4664)" />
89+<path sodipodi:type="arc" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path7850" sodipodi:cx="366.78745" sodipodi:cy="1670.7562" sodipodi:rx="3.7757924" sodipodi:ry="3.7757924" d="m 370.5632,1670.756 c 0,2.086 -1.6904,3.776 -3.7758,3.776 -2.0853,0 -3.7757,-1.69 -3.7757,-3.776 0,-2.085 1.6904,-3.776 3.7757,-3.776 2.0854,0 3.7758,1.691 3.7758,3.776 z" transform="matrix(1.05938,0,0,1.0593804,-642.71436,-1289.4664)" />
90 </g>
91 <g id="boundingbox_top_right" transform="matrix(0,1,-1,0,1275,630.14709)" style="display:inline">
92 <rect style="fill:none;stroke:none" id="rect7856" width="16" height="16" x="-262.14709" y="475" />
93 <path style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" d="m -257.64708,489.5 0,-10 10,0 0,2 -8,0 0,8 z" id="path7858" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" />
94-<path sodipodi:type="arc" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path7860" sodipodi:cx="366.78745" sodipodi:cy="1670.7562" sodipodi:rx="3.7757924" sodipodi:ry="3.7757924" d="m 370.56324,1670.7562 a 3.7757924,3.7757924 0 0 1 -3.77579,3.7758 3.7757924,3.7757924 0 0 1 -3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.77579,3.7758 z" transform="matrix(1.05938,0,0,1.0593804,-645.21436,-1289.4664)" />
95+<path sodipodi:type="arc" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path7860" sodipodi:cx="366.78745" sodipodi:cy="1670.7562" sodipodi:rx="3.7757924" sodipodi:ry="3.7757924" d="m 370.5632,1670.756 c 0,2.086 -1.6904,3.776 -3.7758,3.776 -2.0853,0 -3.7757,-1.69 -3.7757,-3.776 0,-2.085 1.6904,-3.776 3.7757,-3.776 2.0854,0 3.7758,1.691 3.7758,3.776 z" transform="matrix(1.05938,0,0,1.0593804,-645.21436,-1289.4664)" />
96 </g>
97 <g transform="matrix(0,1,-1,0,1275,654.14709)" id="boundingbox_right" style="display:inline">
98 <rect y="475" x="-262.14709" height="16" width="16" id="rect7864" style="fill:none;stroke:none" />
99 <path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path7866" d="m -260.64708,479.5 13,0 0,2 -13,0 z" style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
100-<path transform="matrix(1.05938,0,0,1.0593804,-642.71436,-1289.4664)" d="m 370.56324,1670.7562 a 3.7757924,3.7757924 0 0 1 -3.77579,3.7758 3.7757924,3.7757924 0 0 1 -3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.77579,3.7758 z" sodipodi:ry="3.7757924" sodipodi:rx="3.7757924" sodipodi:cy="1670.7562" sodipodi:cx="366.78745" id="path7868" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" />
101+<path transform="matrix(1.05938,0,0,1.0593804,-642.71436,-1289.4664)" d="m 370.5632,1670.756 c 0,2.086 -1.6904,3.776 -3.7758,3.776 -2.0853,0 -3.7757,-1.69 -3.7757,-3.776 0,-2.085 1.6904,-3.776 3.7757,-3.776 2.0854,0 3.7758,1.691 3.7758,3.776 z" sodipodi:ry="3.7757924" sodipodi:rx="3.7757924" sodipodi:cy="1670.7562" sodipodi:cx="366.78745" id="path7868" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" />
102 </g>
103 <g transform="matrix(-1,0,0,-1,537.85291,907)" id="boundingbox_bottom_right" style="display:inline">
104 <rect y="475" x="-262.14709" height="16" width="16" id="rect7876" style="fill:none;stroke:none" />
105 <path sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" id="path7878" d="m -257.64708,489.5 0,-10 10,0 0,2 -8,0 0,8 z" style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
106-<path transform="matrix(1.05938,0,0,1.0593804,-645.21436,-1289.4664)" d="m 370.56324,1670.7562 a 3.7757924,3.7757924 0 0 1 -3.77579,3.7758 3.7757924,3.7757924 0 0 1 -3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.77579,3.7758 z" sodipodi:ry="3.7757924" sodipodi:rx="3.7757924" sodipodi:cy="1670.7562" sodipodi:cx="366.78745" id="path7880" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" />
107+<path transform="matrix(1.05938,0,0,1.0593804,-645.21436,-1289.4664)" d="m 370.5632,1670.756 c 0,2.086 -1.6904,3.776 -3.7758,3.776 -2.0853,0 -3.7757,-1.69 -3.7757,-3.776 0,-2.085 1.6904,-3.776 3.7757,-3.776 2.0854,0 3.7758,1.691 3.7758,3.776 z" sodipodi:ry="3.7757924" sodipodi:rx="3.7757924" sodipodi:cy="1670.7562" sodipodi:cx="366.78745" id="path7880" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" />
108 </g>
109 <g id="boundingbox_bottom" transform="matrix(-1,0,0,-1,513.85291,907)" style="display:inline">
110 <rect style="fill:none;stroke:none" id="rect7884" width="16" height="16" x="-262.14709" y="475" />
111 <path style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" d="m -260.64708,479.5 13,0 0,2 -13,0 z" id="path7886" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
112-<path sodipodi:type="arc" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path7888" sodipodi:cx="366.78745" sodipodi:cy="1670.7562" sodipodi:rx="3.7757924" sodipodi:ry="3.7757924" d="m 370.56324,1670.7562 a 3.7757924,3.7757924 0 0 1 -3.77579,3.7758 3.7757924,3.7757924 0 0 1 -3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.77579,3.7758 z" transform="matrix(1.05938,0,0,1.0593804,-642.71436,-1289.4664)" />
113+<path sodipodi:type="arc" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path7888" sodipodi:cx="366.78745" sodipodi:cy="1670.7562" sodipodi:rx="3.7757924" sodipodi:ry="3.7757924" d="m 370.5632,1670.756 c 0,2.086 -1.6904,3.776 -3.7758,3.776 -2.0853,0 -3.7757,-1.69 -3.7757,-3.776 0,-2.085 1.6904,-3.776 3.7757,-3.776 2.0854,0 3.7758,1.691 3.7758,3.776 z" transform="matrix(1.05938,0,0,1.0593804,-642.71436,-1289.4664)" />
114 </g>
115 <g id="boundingbox_bottom_left" transform="matrix(0,-1,1,0,261,169.85291)" style="display:inline">
116 <rect style="fill:none;stroke:none" id="rect7896" width="16" height="16" x="-262.14709" y="475" />
117 <path style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" d="m -257.64708,489.5 0,-10 10,0 0,2 -8,0 0,8 z" id="path7898" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" />
118-<path sodipodi:type="arc" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path7900" sodipodi:cx="366.78745" sodipodi:cy="1670.7562" sodipodi:rx="3.7757924" sodipodi:ry="3.7757924" d="m 370.56324,1670.7562 a 3.7757924,3.7757924 0 0 1 -3.77579,3.7758 3.7757924,3.7757924 0 0 1 -3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.77579,3.7758 z" transform="matrix(1.05938,0,0,1.0593804,-645.21436,-1289.4664)" />
119+<path sodipodi:type="arc" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path7900" sodipodi:cx="366.78745" sodipodi:cy="1670.7562" sodipodi:rx="3.7757924" sodipodi:ry="3.7757924" d="m 370.5632,1670.756 c 0,2.086 -1.6904,3.776 -3.7758,3.776 -2.0853,0 -3.7757,-1.69 -3.7757,-3.776 0,-2.085 1.6904,-3.776 3.7757,-3.776 2.0854,0 3.7758,1.691 3.7758,3.776 z" transform="matrix(1.05938,0,0,1.0593804,-645.21436,-1289.4664)" />
120 </g>
121 <g transform="matrix(0,-1,1,0,261,145.85291)" id="boundingbox_left" style="display:inline">
122 <rect y="475" x="-262.14709" height="16" width="16" id="rect7905" style="fill:none;stroke:none" />
123 <path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path7907" d="m -260.64708,479.5 13,0 0,2 -13,0 z" style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
124-<path transform="matrix(1.05938,0,0,1.0593804,-642.71436,-1289.4664)" d="m 370.56324,1670.7562 a 3.7757924,3.7757924 0 0 1 -3.77579,3.7758 3.7757924,3.7757924 0 0 1 -3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.77579,3.7758 z" sodipodi:ry="3.7757924" sodipodi:rx="3.7757924" sodipodi:cy="1670.7562" sodipodi:cx="366.78745" id="path7909" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" />
125+<path transform="matrix(1.05938,0,0,1.0593804,-642.71436,-1289.4664)" d="m 370.5632,1670.756 c 0,2.086 -1.6904,3.776 -3.7758,3.776 -2.0853,0 -3.7757,-1.69 -3.7757,-3.776 0,-2.085 1.6904,-3.776 3.7757,-3.776 2.0854,0 3.7758,1.691 3.7758,3.776 z" sodipodi:ry="3.7757924" sodipodi:rx="3.7757924" sodipodi:cy="1670.7562" sodipodi:cx="366.78745" id="path7909" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" />
126 </g>
127 <g transform="translate(1022.1471,-83)" id="boundingbox_center" style="display:inline">
128 <rect y="475" x="-262.14709" height="16" width="16" id="rect7917" style="fill:none;stroke:none" />
129-<path transform="matrix(1.05938,0,0,1.0593804,-642.71438,-1286.9664)" d="m 370.56324,1670.7562 a 3.7757924,3.7757924 0 0 1 -3.77579,3.7758 3.7757924,3.7757924 0 0 1 -3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.77579,3.7758 z" sodipodi:ry="3.7757924" sodipodi:rx="3.7757924" sodipodi:cy="1670.7562" sodipodi:cx="366.78745" id="path7922" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" />
130+<path transform="matrix(1.05938,0,0,1.0593804,-642.71438,-1286.9664)" d="m 370.5632,1670.756 c 0,2.086 -1.6904,3.776 -3.7758,3.776 -2.0853,0 -3.7757,-1.69 -3.7757,-3.776 0,-2.085 1.6904,-3.776 3.7757,-3.776 2.0854,0 3.7758,1.691 3.7758,3.776 z" sodipodi:ry="3.7757924" sodipodi:rx="3.7757924" sodipodi:cy="1670.7562" sodipodi:cx="366.78745" id="path7922" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" />
131+</g>
132+<g id="path-mode-bspline" transform="matrix(1.395066,-1.366399,1.366399,1.395066,-466.9364,1306.511)" inkscape:label="#bspline_mode">
133+<path inkscape:connector-curvature="0" style="color:#000000;fill:none;stroke:#0000ff;stroke-width:0.9960949;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m 961.8604,56.03607 c 0,0 1.3781,-1.49823 3.2604,-1.76058 1.8823,-0.26235 3.5841,1.78013 3.5841,1.78013" id="path-mode-spiro-3-8-8" sodipodi:nodetypes="czc" inkscape:label="#spiro_splines_mode" />
134+<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccc" id="path6177-8-2" d="m 960.716,54.82044 4.5038,-4.57407 4.5738,4.47984" style="fill:none;stroke:#646464;stroke-width:0.7501467;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
135+<rect y="-639.9971" x="724.2002" height="1.022964" width="1.022542" id="rect8372-9-8" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.2557612;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" transform="matrix(0.7144089,0.6997285,-0.6997285,0.7144089,0,0)" />
136+<rect transform="matrix(0.7144089,0.6997285,-0.6997285,0.7144089,0,0)" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.2557612;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect6941" width="1.022542" height="1.022964" x="724.2002" y="-633.3398" />
137+<rect y="-639.9971" x="730.8575" height="1.022964" width="1.022542" id="rect6954" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.2557612;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" transform="matrix(0.7144089,0.6997285,-0.6997285,0.7144089,0,0)" />
138 </g>
139 </svg>
140
141=== modified file 'share/icons/symbolic_icons.svg'
142--- share/icons/symbolic_icons.svg 2013-05-16 22:38:41 +0000
143+++ share/icons/symbolic_icons.svg 2014-05-05 09:51:15 +0000
144@@ -1,7 +1,7 @@
145 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
146 <!-- Created with Inkscape (http://www.inkscape.org/) -->
147
148-<svg xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="1250" height="540" id="svg15638" version="1.1" inkscape:version="0.48+devel r" sodipodi:docname="symbolic_icons.svg">
149+<svg xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="1250" height="540" id="svg15638" version="1.1" inkscape:version="0.48.3.1 r9886" sodipodi:docname="symbolic_icons.svg">
150 <title id="title9623">Inkscape Icon Theme</title>
151 <defs id="defs15640">
152 <inkscape:path-effect effect="spiro" id="path-effect36695" is_visible="true" />
153@@ -13,7 +13,7 @@
154 <linearGradient inkscape:collect="always" xlink:href="#linearGradient19282" id="linearGradient29996" gradientTransform="translate(0,796.7244)" gradientUnits="userSpaceOnUse" />
155 <linearGradient inkscape:collect="always" xlink:href="#linearGradient19282" id="linearGradient29998" gradientTransform="translate(0,796.7244)" gradientUnits="userSpaceOnUse" />
156 </defs>
157-<sodipodi:namedview id="base" pagecolor="#f2f2f2" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="1" inkscape:pageshadow="2" inkscape:zoom="4.956897" inkscape:cx="668" inkscape:cy="196" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1301" inkscape:window-height="744" inkscape:window-x="65" inkscape:window-y="24" inkscape:window-maximized="1" inkscape:snap-bbox="true" inkscape:bbox-paths="false" inkscape:bbox-nodes="false" inkscape:snap-global="true" showguides="true" inkscape:guide-bbox="true" inkscape:snap-nodes="false" inkscape:snap-object-midpoints="false" inkscape:snap-grids="true" inkscape:snap-to-guides="true" borderlayer="true" inkscape:showpageshadow="false" showborder="false" inkscape:snap-bbox-edge-midpoints="false">
158+<sodipodi:namedview id="base" pagecolor="#f2f2f2" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="1" inkscape:pageshadow="2" inkscape:zoom="4.387182" inkscape:cx="861.2528" inkscape:cy="372.3775" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1280" inkscape:window-height="901" inkscape:window-x="0" inkscape:window-y="27" inkscape:window-maximized="1" inkscape:snap-bbox="true" inkscape:bbox-paths="false" inkscape:bbox-nodes="false" inkscape:snap-global="true" showguides="true" inkscape:guide-bbox="true" inkscape:snap-nodes="false" inkscape:snap-object-midpoints="false" inkscape:snap-grids="true" inkscape:snap-to-guides="true" borderlayer="true" inkscape:showpageshadow="false" showborder="false" inkscape:snap-bbox-edge-midpoints="false">
159 <inkscape:grid type="xygrid" id="grid15646" empspacing="5" visible="true" enabled="true" snapvisiblegridlinesonly="true" />
160 </sodipodi:namedview>
161 <metadata id="metadata15643">
162@@ -55,9 +55,9 @@
163 </g>
164 <g id="document-cleanup" inkscape:label="#file_vacuum" transform="matrix(0.99690056,0,0,1.0000002,0.04649158,2.0001197)">
165 <path sodipodi:nodetypes="ccsscsscccccsccssccc" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 24.733638,588.18037 c 0,0 -0.01281,0.54666 -0.303251,1.0909 -0.29048,0.54426 -0.801932,1.09091 -2.122758,1.09091 -1.116653,0 -3.307629,0 -3.881615,0.13637 -0.638443,0.15168 -1.238624,0.44092 -1.698207,0.95455 -0.459583,0.51361 -0.727803,1.25369 -0.727803,2.18181 0,0.70749 0.130199,1.27268 0.394227,1.70454 0.264027,0.43186 0.655158,0.70901 1.031054,0.85227 0.751791,0.28653 1.535247,0.17046 1.971133,0.17046 l 0,-1.09091 c -0.534518,0 -1.206668,0.0736 -1.667882,-0.10229 -0.230607,-0.0879 -0.385328,-0.23022 -0.515527,-0.44318 -0.130199,-0.21295 -0.242601,-0.54118 -0.242601,-1.0909 0,-0.70824 0.182368,-1.12727 0.454877,-1.43182 0.272509,-0.30457 0.684115,-0.49013 1.213005,-0.61364 0.36171,-0.22726 2.484486,-0.13636 3.669339,-0.13636 1.590385,0 2.534539,-0.81699 2.971862,-1.63637 0.437322,-0.81938 0.424551,-1.63636 0.424551,-1.63636 l -0.970404,0 z" id="path11319" inkscape:connector-curvature="0" />
166-<path transform="matrix(0.15999997,0,0,0.15384586,-23.799991,585.36221)" d="m 280,97.5 c 0,3.5899 -2.7982,6.5 -6.25,6.5 -3.4518,0 -6.25,-2.9101 -6.25,-6.5 0,-3.58985 2.7982,-6.5 6.25,-6.5 C 277.2018,91 280,93.91015 280,97.5 Z" sodipodi:ry="6.5" sodipodi:rx="6.25" sodipodi:cy="97.5" sodipodi:cx="273.75" id="path11327" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:8.87804985000000002;marker:none;display:inline" sodipodi:type="arc" />
167+<path transform="matrix(0.15999997,0,0,0.15384586,-23.799991,585.36221)" d="m 280,97.5 c 0,3.5899 -2.7982,6.5 -6.25,6.5 -3.4518,0 -6.25,-2.9101 -6.25,-6.5 0,-3.58985 2.7982,-6.5 6.25,-6.5 3.4518,0 6.25,2.91015 6.25,6.5 z" sodipodi:ry="6.5" sodipodi:rx="6.25" sodipodi:cy="97.5" sodipodi:cx="273.75" id="path11327" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:8.87804985000000002;marker:none;display:inline" sodipodi:type="arc" />
168 <path inkscape:connector-curvature="0" sodipodi:nodetypes="scccs" id="rect11314" d="m 19,595.36218 c 4,-2 10,-1 10,-1 l 0,6.00035 c 0,0 0.01874,-0.018 -11,-3.5e-4 -2,0 -1,-4 1,-5 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" />
169-<path transform="matrix(0.38951329,0,0,0.38130207,-78.013976,561.70654)" d="m 280,97.5 c 0,3.5899 -2.7982,6.5 -6.25,6.5 -3.4518,0 -6.25,-2.9101 -6.25,-6.5 0,-3.58985 2.7982,-6.5 6.25,-6.5 C 277.2018,91 280,93.91015 280,97.5 Z" sodipodi:ry="6.5" sodipodi:rx="6.25" sodipodi:cy="97.5" sodipodi:cx="273.75" id="path11312" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.54062963000000019;marker:none;display:inline" sodipodi:type="arc" />
170+<path transform="matrix(0.38951329,0,0,0.38130207,-78.013976,561.70654)" d="m 280,97.5 c 0,3.5899 -2.7982,6.5 -6.25,6.5 -3.4518,0 -6.25,-2.9101 -6.25,-6.5 0,-3.58985 2.7982,-6.5 6.25,-6.5 3.4518,0 6.25,2.91015 6.25,6.5 z" sodipodi:ry="6.5" sodipodi:rx="6.25" sodipodi:cy="97.5" sodipodi:cx="273.75" id="path11312" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.54062963000000019;marker:none;display:inline" sodipodi:type="arc" />
171 <rect y="586.40131" x="21.293545" height="2.0342929" width="7.8504539" id="rect11317" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999928000000005;marker:none;display:inline" />
172 <rect y="585.36218" x="15" height="15.999997" width="16" id="rect29219" style="fill:none;stroke:none" />
173 </g>
174@@ -195,7 +195,7 @@
175 <rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55503" width="1" height="1" x="55" y="721.36218" />
176 <rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55505" width="1" height="1" x="57" y="721.36218" />
177 <path id="rect55539" transform="translate(0,512.36218)" d="M 47 203 L 47 208 L 55 208 L 55 205.5 C 54.833229 205.519 54.671777 205.5625 54.5 205.5625 C 52.723448 205.5625 51.20038 204.5157 50.46875 203 L 47 203 z " style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;opacity:1" />
178-<path transform="matrix(1.0000003,0,0,1.1666667,0.9999829,478.86217)" d="m 57,201 c 0,1.6569 -1.567,3 -3.5,3 -1.933,0 -3.5,-1.3431 -3.5,-3 0,-1.6569 1.567,-3 3.5,-3 C 55.433,198 57,199.3431 57,201 Z" sodipodi:ry="3" sodipodi:rx="3.5" sodipodi:cy="201" sodipodi:cx="53.5" id="path55541" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;opacity:1" sodipodi:type="arc" />
179+<path transform="matrix(1.0000003,0,0,1.1666667,0.9999829,478.86217)" d="m 57,201 c 0,1.6569 -1.567,3 -3.5,3 -1.933,0 -3.5,-1.3431 -3.5,-3 0,-1.6569 1.567,-3 3.5,-3 1.933,0 3.5,1.3431 3.5,3 z" sodipodi:ry="3" sodipodi:rx="3.5" sodipodi:cy="201" sodipodi:cx="53.5" id="path55541" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;opacity:1" sodipodi:type="arc" />
180 </g>
181 <g id="edit-select-none" inkscape:label="#selection_deselect">
182 <g transform="translate(0,20)" id="g55605" inkscape:label="#selection_select_all">
183@@ -229,7 +229,7 @@
184 <rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;opacity:0.29999999999999999" id="rect55661" width="1" height="1" x="55" y="721.36218" />
185 <rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;opacity:0.29999999999999999" id="rect55663" width="1" height="1" x="57" y="721.36218" />
186 <path inkscape:connector-curvature="0" id="path55665" transform="translate(0,512.36218)" d="m 47,203 0,5 8,0 0,-2.5 c -0.166771,0.019 -0.328223,0.0625 -0.5,0.0625 -1.776552,0 -3.29962,-1.0468 -4.03125,-2.5625 L 47,203 z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;opacity:0.29999999999999999" />
187-<path transform="matrix(1.0000003,0,0,1.1666667,0.9999829,478.86217)" d="m 57,201 c 0,1.6569 -1.567,3 -3.5,3 -1.933,0 -3.5,-1.3431 -3.5,-3 0,-1.6569 1.567,-3 3.5,-3 C 55.433,198 57,199.3431 57,201 Z" sodipodi:ry="3" sodipodi:rx="3.5" sodipodi:cy="201" sodipodi:cx="53.5" id="path55667" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;opacity:0.29999999999999999" sodipodi:type="arc" />
188+<path transform="matrix(1.0000003,0,0,1.1666667,0.9999829,478.86217)" d="m 57,201 c 0,1.6569 -1.567,3 -3.5,3 -1.933,0 -3.5,-1.3431 -3.5,-3 0,-1.6569 1.567,-3 3.5,-3 1.933,0 3.5,1.3431 3.5,3 z" sodipodi:ry="3" sodipodi:rx="3.5" sodipodi:cy="201" sodipodi:cx="53.5" id="path55667" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;opacity:0.29999999999999999" sodipodi:type="arc" />
189 </g>
190 </g>
191 <g id="edit-select-invert" inkscape:label="#selection_invert">
192@@ -579,7 +579,7 @@
193 </g>
194 </g>
195 <path id="path23473" transform="translate(0,512.36218)" d="M 83 381 C 79.686292 381 79 382.99999 77 384.5 C 79 386 79.686292 388 83 388 C 86.313708 388 87 386 89 384.5 C 87 382.99999 86.313708 381 83 381 z M 83 382 C 84.656854 382 86 383.11929 86 384.5 C 86 385.88071 84.656854 387 83 387 C 81.343146 387 80 385.88071 80 384.5 C 80 383.11929 81.343146 382 83 382 z " style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
196-<path transform="matrix(1.21875,0,0,1.5,-18.125,319.36218)" d="m 84,385 c 0,0.5523 -0.44772,1 -1,1 -0.55228,0 -1,-0.4477 -1,-1 0,-0.5523 0.44772,-1 1,-1 C 83.55228,384 84,384.4477 84,385 Z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="385" sodipodi:cx="83" id="path23477" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
197+<path transform="matrix(1.21875,0,0,1.5,-18.125,319.36218)" d="m 84,385 c 0,0.5523 -0.44772,1 -1,1 -0.55228,0 -1,-0.4477 -1,-1 0,-0.5523 0.44772,-1 1,-1 0.55228,0 1,0.4477 1,1 z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="385" sodipodi:cx="83" id="path23477" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
198 </g>
199 <g id="layer-new" inkscape:label="#new_layer">
200 <rect ry="1" rx="0" transform="translate(0,512.36218)" y="15" x="105" height="16" width="16" id="rect10817" style="fill:none;fill-opacity:1;stroke:none" />
201@@ -734,7 +734,7 @@
202 <rect y="587.36218" x="148" height="3" width="3" id="rect11967" style="fill:url(#linearGradient19282);stroke:none;fill-opacity:1" />
203 <rect y="600.36218" x="135" height="3.0000026" width="3" id="rect11969" style="fill:url(#linearGradient19282);stroke:none;fill-opacity:1" />
204 <rect y="600.36218" x="148" height="3.0000026" width="3" id="rect11971" style="fill:url(#linearGradient19282);stroke:none;fill-opacity:1" />
205-<path transform="translate(0,512.36218)" d="m 144,82.5 c 0,1.933 -1.567,3.5 -3.5,3.5 -1.933,0 -3.5,-1.567 -3.5,-3.5 0,-1.933 1.567,-3.5 3.5,-3.5 C 142.433,79 144,80.567 144,82.5 Z" sodipodi:ry="3.5" sodipodi:rx="3.5" sodipodi:cy="82.5" sodipodi:cx="140.5" id="path11973" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
206+<path transform="translate(0,512.36218)" d="m 144,82.5 c 0,1.933 -1.567,3.5 -3.5,3.5 -1.933,0 -3.5,-1.567 -3.5,-3.5 0,-1.933 1.567,-3.5 3.5,-3.5 1.933,0 3.5,1.567 3.5,3.5 z" sodipodi:ry="3.5" sodipodi:rx="3.5" sodipodi:cy="82.5" sodipodi:cx="140.5" id="path11973" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
207 <path id="rect11975" transform="translate(0,512.36218)" d="M 144.9375 82 C 144.95624 82.166771 145 82.328223 145 82.5 C 145 84.813505 143.24609 86.685111 141 86.9375 L 141 88 L 147 88 L 147 82 L 144.9375 82 z " style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
208 </g>
209 <g id="object-ungroup" inkscape:label="#selection_ungroup">
210@@ -742,7 +742,7 @@
211 <rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12013" width="2" height="1.9999974" x="136" y="608.36218" />
212 <rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12015" width="2" height="1.9999974" x="148" y="610.36218" />
213 <rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12019" width="2" height="2.0000026" x="148" y="620.36218" />
214-<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path12021" sodipodi:cx="140.5" sodipodi:cy="82.5" sodipodi:rx="3.5" sodipodi:ry="3.5" d="m 144,82.5 c 0,1.933 -1.567,3.5 -3.5,3.5 -1.933,0 -3.5,-1.567 -3.5,-3.5 0,-1.933 1.567,-3.5 3.5,-3.5 C 142.433,79 144,80.567 144,82.5 Z" transform="translate(0.5,531.36218)" />
215+<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path12021" sodipodi:cx="140.5" sodipodi:cy="82.5" sodipodi:rx="3.5" sodipodi:ry="3.5" d="m 144,82.5 c 0,1.933 -1.567,3.5 -3.5,3.5 -1.933,0 -3.5,-1.567 -3.5,-3.5 0,-1.933 1.567,-3.5 3.5,-3.5 1.933,0 3.5,1.567 3.5,3.5 z" transform="translate(0.5,531.36218)" />
216 <path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="m 145.9375,613.36218 c 0.0187,0.16677 0.0625,0.32822 0.0625,0.5 0,2.3135 -1.75391,4.18511 -4,4.4375 l 0,1.0625 6,0 0,-6 -2.0625,0 z" id="path12023" inkscape:connector-curvature="0" />
217 <rect y="608.36218" x="144" height="1.9999974" width="2" id="rect12039" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
218 <rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12041" width="2" height="1.9999974" x="136" y="617.36218" />
219@@ -821,7 +821,7 @@
220 <g id="dialog-transform" inkscape:label="#object_transform">
221 <rect transform="translate(0,512.36218)" y="275" x="135" height="16" width="16" id="rect18662" style="fill:none;fill-opacity:1;stroke:none" />
222 <path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 143.5 275 C 139.91014 275 137 277.91015 137 281.5 C 137 281.67107 137.01825 281.83226 137.03125 282 L 135 282 L 138 285 L 141 282 L 139.0625 282 C 139.0438 281.83323 139 281.67178 139 281.5 C 139 279.01472 141.01472 277 143.5 277 C 143.67178 277 143.83323 277.0438 144 277.0625 C 144.16677 277.0438 144.32822 277 144.5 277 C 146.98528 277 149 279.01472 149 281.5 C 149 281.67178 148.9562 281.83323 148.9375 282 C 148.9562 282.16677 149 282.32822 149 282.5 C 149 284.98528 146.98528 287 144.5 287 C 144.32822 287 144.16677 286.9562 144 286.9375 L 144 288.96875 C 144.16774 288.98175 144.32893 289 144.5 289 C 148.08986 289 151 286.08985 151 282.5 C 151 282.32893 150.98175 282.16774 150.96875 282 C 150.98175 281.83226 151 281.67107 151 281.5 C 151 277.91015 148.08986 275 144.5 275 C 144.32893 275 144.16774 275.01825 144 275.03125 C 143.83226 275.01825 143.67107 275 143.5 275 z " transform="translate(0,512.36218)" id="path18678" />
223-<path transform="matrix(1.3333333,0,0,1.3333333,-48.666667,417.69551)" d="m 146,282.5 c 0,0.8284 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.6716 -1.5,-1.5 0,-0.8284 0.6716,-1.5 1.5,-1.5 C 145.3284,281 146,281.6716 146,282.5 Z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="282.5" sodipodi:cx="144.5" id="path18701" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
224+<path transform="matrix(1.3333333,0,0,1.3333333,-48.666667,417.69551)" d="m 146,282.5 c 0,0.8284 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.6716 -1.5,-1.5 0,-0.8284 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.6716 1.5,1.5 z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="282.5" sodipodi:cx="144.5" id="path18701" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
225 <rect transform="translate(0,512.36218)" y="286" x="135" height="5" width="6" id="rect18705" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
226 </g>
227 <g id="dialog-align-and-distribute" inkscape:label="#object_align">
228@@ -847,8 +847,8 @@
229 <path inkscape:connector-curvature="0" id="path8587" d="m 43.059524,-18.992857 c -2.202823,0 -3.992858,1.790033 -3.992858,3.992857 0,2.202825 1.790035,3.992858 3.992858,3.992858 2.202822,0 3.992857,-1.790033 3.992857,-3.992858 0,-2.202824 -1.790035,-3.992857 -3.992857,-3.992857 z m 0,1.052381 C 44.685876,-17.940476 46,-16.626352 46,-15 c 0,1.626353 -1.314124,2.940477 -2.940476,2.940477 -1.626353,0 -2.940477,-1.314124 -2.940477,-2.940477 0,-1.626352 1.314124,-2.940476 2.940477,-2.940476 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:2.15384626;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new;font-family:Sans;-inkscape-font-specification:Sans" />
230 <path inkscape:connector-curvature="0" id="path8591" d="m 39.045327,-11.923578 c -2.202823,0 -3.992858,1.790033 -3.992858,3.9928574 0,2.2028242 1.790035,3.9928576 3.992858,3.9928576 2.202822,0 3.992857,-1.7900334 3.992857,-3.9928576 0,-2.2028244 -1.790035,-3.9928574 -3.992857,-3.9928574 z m 0,1.052381 c 1.626352,0 2.940476,1.3141241 2.940476,2.9404764 0,1.6263522 -1.314124,2.9404765 -2.940476,2.9404765 -1.626353,0 -2.940477,-1.3141243 -2.940477,-2.9404765 0,-1.6263523 1.314124,-2.9404764 2.940477,-2.9404764 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.15384626;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new;font-family:Sans;-inkscape-font-specification:Sans" />
231 <path inkscape:connector-curvature="0" id="path8593" d="m 47.044477,-11.923578 c -2.202823,0 -3.992858,1.790033 -3.992858,3.9928574 0,2.2028242 1.790035,3.9928576 3.992858,3.9928576 2.202822,0 3.992857,-1.7900334 3.992857,-3.9928576 0,-2.2028244 -1.790035,-3.9928574 -3.992857,-3.9928574 z m 0,1.052381 c 1.626352,0 2.940476,1.3141241 2.940476,2.9404764 0,1.6263522 -1.314124,2.9404765 -2.940476,2.9404765 -1.626353,0 -2.940477,-1.3141243 -2.940477,-2.9404765 0,-1.6263523 1.314124,-2.9404764 2.940477,-2.9404764 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.15384626;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new;font-family:Sans;-inkscape-font-specification:Sans" />
232-<path transform="matrix(0.87028524,0,0,0.80812198,4.9230797,-1.8942386)" d="m 41.45413,-7.555495 c 0,1.366835 -1.02889,2.474874 -2.29809,2.474874 -1.26921,0 -2.2981,-1.108039 -2.2981,-2.474874 0,-1.366835 1.02889,-2.474875 2.2981,-2.474875 C 40.42524,-10.03037 41.45413,-8.92233 41.45413,-7.555495 Z" sodipodi:ry="2.4748738" sodipodi:rx="2.2980971" sodipodi:cy="-7.5554948" sodipodi:cx="39.156036" id="path14494" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
233-<path transform="matrix(0.72180426,0,0,0.8,13.240611,-2)" d="m 49.54167,-7.5 c 0,1.380712 -1.24054,2.5 -2.77083,2.5 C 45.24055,-5 44,-6.119288 44,-7.5 44,-8.880712 45.24055,-10 46.77084,-10 48.30113,-10 49.54167,-8.880712 49.54167,-7.5 Z" sodipodi:ry="2.5" sodipodi:rx="2.7708344" sodipodi:cy="-7.5" sodipodi:cx="46.770836" id="path14496" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
234+<path transform="matrix(0.87028524,0,0,0.80812198,4.9230797,-1.8942386)" d="m 41.45413,-7.555495 c 0,1.366835 -1.02889,2.474874 -2.29809,2.474874 -1.26921,0 -2.2981,-1.108039 -2.2981,-2.474874 0,-1.366835 1.02889,-2.474875 2.2981,-2.474875 1.2692,0 2.29809,1.10804 2.29809,2.474875 z" sodipodi:ry="2.4748738" sodipodi:rx="2.2980971" sodipodi:cy="-7.5554948" sodipodi:cx="39.156036" id="path14494" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
235+<path transform="matrix(0.72180426,0,0,0.8,13.240611,-2)" d="m 49.54167,-7.5 c 0,1.380712 -1.24054,2.5 -2.77083,2.5 C 45.24055,-5 44,-6.119288 44,-7.5 c 0,-1.380712 1.24055,-2.5 2.77084,-2.5 1.53029,0 2.77083,1.119288 2.77083,2.5 z" sodipodi:ry="2.5" sodipodi:rx="2.7708344" sodipodi:cy="-7.5" sodipodi:cx="46.770836" id="path14496" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
236 </g>
237 </g>
238 </g>
239@@ -1195,7 +1195,7 @@
240 <g id="object-tweak-push" inkscape:label="#g15982">
241 <rect style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect4991" width="16" height="16" x="255" y="687.36218" />
242 <g id="g5135" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="translate(-116.8263,551.36338)">
243-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" inkscape:tile-h="2.223736" inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path5011" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735790999999999;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.17581)" />
244+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" inkscape:tile-h="2.223736" inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path5011" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735790999999999;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.17581)" />
245 <use xlink:href="#path5011" transform="translate(4.825002e-8,2.41142)" x="0" y="0" inkscape:tiled-clone-of="#path5011" id="use5085" style="fill:url(#linearGradient19282);stroke:none;stroke-width:0.27735790999999999;fill-opacity:1" width="1250" height="1250" />
246 <use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.0067742,5.089253)" id="use5087" style="fill:url(#linearGradient19282);stroke:none;stroke-width:0.27735790999999999;fill-opacity:1" width="1250" height="1250" />
247 <use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.0027824,7.946541)" id="use5091" style="fill:url(#linearGradient19282);stroke:none;stroke-width:0.27735790999999999;fill-opacity:1" width="1250" height="1250" />
248@@ -1230,7 +1230,7 @@
249 <use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.0383,9.082095)" id="use5126" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" xlink:href="#path5084" />
250 <use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5090" transform="translate(10.38143,6.05473)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
251 <use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.90759,10.40446)" id="use5132" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" xlink:href="#path5084" />
252-<path transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.88514)" sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path5084" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-cx="375.0941" inkscape:tile-cy="137.9821" inkscape:tile-w="2.223736" inkscape:tile-h="2.223736" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
253+<path transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.88514)" sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path5084" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" inkscape:tile-cx="375.0941" inkscape:tile-cy="137.9821" inkscape:tile-w="2.223736" inkscape:tile-h="2.223736" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
254 <use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5086" inkscape:tiled-clone-of="#path5011" y="0" x="0" transform="translate(8.706381,0.9318868)" xlink:href="#path5084" />
255 <use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5092" transform="translate(2.953795,0.8543842)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
256 <use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5094" transform="translate(11.81518,0)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
257@@ -1253,7 +1253,7 @@
258 </g>
259 <g id="g16249">
260 <g inkscape:label="#g5082-9" transform="translate(-116.79862,590.73072)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="object-tweak-randomize">
261-<path transform="matrix(1.20571,0,0,1.20571,-78.426537,-27.790612)" sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path5084-3" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-cx="375.0941" inkscape:tile-cy="137.9821" inkscape:tile-w="2.223736" inkscape:tile-h="2.223736" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
262+<path transform="matrix(1.20571,0,0,1.20571,-78.426537,-27.790612)" sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path5084-3" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" inkscape:tile-cx="375.0941" inkscape:tile-cy="137.9821" inkscape:tile-w="2.223736" inkscape:tile-h="2.223736" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
263 <use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5086-7" inkscape:tiled-clone-of="#path5011" y="0" x="0" transform="translate(8.561625,0.49145)" xlink:href="#path5084-3" />
264 <use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5088-6" transform="translate(11.84313,2.65475)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
265 <use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5090-6" transform="translate(11.465,6.015863)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
266@@ -1282,7 +1282,7 @@
267 <rect y="727.36218" x="255" height="15.999997" width="16" id="rect16247" style="opacity:0.29999999999999999;fill:none;fill-opacity:1;stroke:none" />
268 </g>
269 <g id="object-tweak-shrink" inkscape:label="#g17007">
270-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" inkscape:tile-h="2.223736" inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path5084-2" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.3307731,0,0,1.3042956,-242.68549,568.84293)" />
271+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" inkscape:tile-h="2.223736" inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path5084-2" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.3307731,0,0,1.3042956,-242.68549,568.84293)" />
272 <use xlink:href="#path5084-2" transform="matrix(0.9860759,0,0,0.9860759,13.351987,10.42661)" x="0" y="0" inkscape:tiled-clone-of="#path5011" id="use5086-8" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
273 <use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9791266,0,0,0.9791266,18.394269,18.905142)" id="use5088-8" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
274 <use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9025255,0,0,0.9025255,38.040921,79.539899)" id="use5090-1" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
275@@ -1344,7 +1344,7 @@
276 <g id="object-tweak-duplicate" inkscape:label="#g17291">
277 <rect inkscape:label="#rect5080-7" style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="tweak_moreless_mode" width="16" height="16" x="255" y="787.36218" />
278 <path inkscape:connector-curvature="0" id="use5685" d="m 260.40625,788.36218 c 0.12731,1.33115 1.22924,2.375 2.59375,2.375 1.36451,0 2.46644,-1.04385 2.59375,-2.375 l -5.1875,0 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" />
279-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use5687" style="opacity:0.3;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(2.2020973,0,0,2.1623495,-563.99367,496.4009)" />
280+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use5687" style="opacity:0.3;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(2.2020973,0,0,2.1623495,-563.99367,496.4009)" />
281 <path inkscape:connector-curvature="0" id="use5828" d="m 263,799.58093 c -1.45162,0 -2.625,1.20463 -2.625,2.65625 0,0.0447 -0.002,0.0809 0,0.125 l 5.25,0 c 0.002,-0.0446 0,-0.0798 0,-0.125 0,-1.45162 -1.17338,-2.65625 -2.625,-2.65625 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" />
282 <path inkscape:connector-curvature="0" id="path5885" d="m 270,792.54968 c -1.4208,0.0334 -2.5625,1.19616 -2.5625,2.625 0,1.42884 1.1417,2.59158 2.5625,2.625 l 0,-5.25 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" />
283 <path inkscape:connector-curvature="0" id="path5889" d="m 256,792.54968 0,5.25 c 1.42252,-0.0335 2.5625,-1.19443 2.5625,-2.625 0,-1.43035 -1.14028,-2.5912 -2.5625,-2.625 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" />
284@@ -1352,39 +1352,39 @@
285 <path inkscape:connector-curvature="0" id="path5895" d="m 256,788.36218 0,2.375 c 1.33849,-0.0318 2.40769,-1.06152 2.53125,-2.375 l -2.53125,0 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" />
286 <path inkscape:connector-curvature="0" id="path5897" d="m 270,799.61218 c -1.4205,0.0337 -2.5625,1.19638 -2.5625,2.625 0,0.0414 -0.002,0.084 0,0.125 l 2.5625,0 0,-2.75 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" />
287 <path inkscape:connector-curvature="0" id="path5899" d="m 256,799.58093 0,2.78125 2.5625,0 c 0.002,-0.0446 0,-0.0798 0,-0.125 0,-1.43056 -1.14008,-2.62201 -2.5625,-2.65625 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" />
288-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path5911" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(2.0869437,0,0,2.0869437,-519.12064,507.91517)" />
289+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path5911" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(2.0869437,0,0,2.0869437,-519.12064,507.91517)" />
290 </g>
291 <g id="object-tweak-blur" inkscape:label="#g18302">
292-<path transform="matrix(1.20571,0,0,1.20571,-195.22344,642.99262)" sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path7657" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-cx="375.0941" inkscape:tile-cy="137.9821" inkscape:tile-w="2.223736" inkscape:tile-h="2.223736" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
293-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7660" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.93596932,0,0,0.93596932,-85.183574,680.21213)" />
294-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7662" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.95569617,0,0,0.95569617,-89.629494,680.51744)" />
295-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7664" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.088184,0,0,1.088184,-139.32498,665.26382)" />
296-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7666" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.85164475,0,0,0.85164475,-59.461916,691.84727)" />
297-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7668" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-183.40826,642.99262)" />
298-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7670" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.093412,0,0,1.093412,-153.10114,664.54246)" />
299-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7672" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.93202132,0,0,0.93202132,-92.564554,689.83883)" />
300-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7674" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.111722,0,0,1.111722,-154.06152,655.96126)" />
301-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7676" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.95698217,0,0,0.95698217,-101.92698,680.34002)" />
302-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7696" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.99499803,0,0,0.99499803,-107.32534,684.1765)" />
303-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7698" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.98523203,0,0,0.98523203,-100.70816,682.49677)" />
304-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7700" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-195.22344,655.10208)" />
305-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7702" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.94043332,0,0,0.94043332,-92.766074,691.70543)" />
306-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7704" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.121575,0,0,1.121575,-157.75711,666.71126)" />
307-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7706" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-183.40826,655.10208)" />
308-<path transform="matrix(0,0,0,0,257.93883,809.12291)" d="m 250,293 c 0,0.5523 -0.4477,1 -1,1 -0.5523,0 -1,-0.4477 -1,-1 0,-0.5523 0.4477,-1 1,-1 C 249.5523,292 250,292.4477 250,293 Z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="293" sodipodi:cx="249" id="path18244" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
309-<path transform="matrix(1.188915,0,0,1.188915,-185.8816,648.4478)" sodipodi:type="arc" style="opacity:0.3;color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:0.27735791;stroke-opacity:1;marker:none;visibility:visible;display:inline" id="path18274" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
310-<path transform="matrix(0.78686415,0,0,0.78686415,-32.120872,703.92362)" sodipodi:type="arc" style="opacity:0.3;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path18276" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
311-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path18278" style="opacity:0.3;color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:0.27735791;stroke-opacity:1;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.188915,0,0,1.188915,-180.00377,648.40361)" />
312-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path18280" style="opacity:0.3;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.76410089,0,0,0.76410089,-26.53634,710.06454)" />
313-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path18282" style="opacity:0.3;color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:0.27735791;stroke-opacity:1;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.111722,0,0,1.111722,-153.97313,662.09905)" />
314-<path transform="matrix(0.73911182,0,0,0.73911182,-11.285259,713.4684)" sodipodi:type="arc" style="opacity:0.3;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path18284" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
315-<path transform="matrix(1.188915,0,0,1.188915,-185.8816,654.4478)" sodipodi:type="arc" style="opacity:0.3;color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:0.27735791;stroke-opacity:1;marker:none;visibility:visible;display:inline" id="path18286" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
316-<path transform="matrix(0.71189696,0,0,0.71189696,-4.0011204,720.26775)" sodipodi:type="arc" style="opacity:0.3;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path18288" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
317-<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path18290" style="opacity:0.3;color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:0.27735791;stroke-opacity:1;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.188915,0,0,1.188915,-180.00377,654.40361)" />
318-<path transform="matrix(3.2413793,0,0,2.6666667,-552.88963,22.622911)" d="m 251,296.2031 c 0,0.1295 -0.084,0.2344 -0.1875,0.2344 -0.1036,0 -0.1875,-0.1049 -0.1875,-0.2344 0,-0.1294 0.084,-0.2344 0.1875,-0.2344 C 250.9161,295.9687 251,296.0737 251,296.2031 Z" sodipodi:ry="0.234375" sodipodi:rx="0.1875" sodipodi:cy="296.20312" sodipodi:cx="250.8125" id="path18292" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
319-<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path18294" sodipodi:cx="250.8125" sodipodi:cy="296.20312" sodipodi:rx="0.1875" sodipodi:ry="0.234375" d="m 251,296.2031 c 0,0.1295 -0.084,0.2344 -0.1875,0.2344 -0.1036,0 -0.1875,-0.1049 -0.1875,-0.2344 0,-0.1294 0.084,-0.2344 0.1875,-0.2344 C 250.9161,295.9687 251,296.0737 251,296.2031 Z" transform="matrix(3.2413793,0,0,2.6666667,-552.95213,28.591661)" />
320-<path transform="matrix(3.2413793,0,0,2.6666667,-547.04588,22.560411)" d="m 251,296.2031 c 0,0.1295 -0.084,0.2344 -0.1875,0.2344 -0.1036,0 -0.1875,-0.1049 -0.1875,-0.2344 0,-0.1294 0.084,-0.2344 0.1875,-0.2344 C 250.9161,295.9687 251,296.0737 251,296.2031 Z" sodipodi:ry="0.234375" sodipodi:rx="0.1875" sodipodi:cy="296.20312" sodipodi:cx="250.8125" id="path18296" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
321-<path transform="matrix(3.2413793,0,0,2.6666667,-547.04588,28.622911)" d="m 251,296.2031 c 0,0.1295 -0.084,0.2344 -0.1875,0.2344 -0.1036,0 -0.1875,-0.1049 -0.1875,-0.2344 0,-0.1294 0.084,-0.2344 0.1875,-0.2344 C 250.9161,295.9687 251,296.0737 251,296.2031 Z" sodipodi:ry="0.234375" sodipodi:rx="0.1875" sodipodi:cy="296.20312" sodipodi:cx="250.8125" id="path18298" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
322+<path transform="matrix(1.20571,0,0,1.20571,-195.22344,642.99262)" sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path7657" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" inkscape:tile-cx="375.0941" inkscape:tile-cy="137.9821" inkscape:tile-w="2.223736" inkscape:tile-h="2.223736" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
323+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7660" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.93596932,0,0,0.93596932,-85.183574,680.21213)" />
324+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7662" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.95569617,0,0,0.95569617,-89.629494,680.51744)" />
325+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7664" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.088184,0,0,1.088184,-139.32498,665.26382)" />
326+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7666" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.85164475,0,0,0.85164475,-59.461916,691.84727)" />
327+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7668" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-183.40826,642.99262)" />
328+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7670" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.093412,0,0,1.093412,-153.10114,664.54246)" />
329+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7672" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.93202132,0,0,0.93202132,-92.564554,689.83883)" />
330+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7674" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.111722,0,0,1.111722,-154.06152,655.96126)" />
331+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7676" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.95698217,0,0,0.95698217,-101.92698,680.34002)" />
332+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7696" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.99499803,0,0,0.99499803,-107.32534,684.1765)" />
333+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7698" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.98523203,0,0,0.98523203,-100.70816,682.49677)" />
334+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7700" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-195.22344,655.10208)" />
335+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7702" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.94043332,0,0,0.94043332,-92.766074,691.70543)" />
336+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7704" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.121575,0,0,1.121575,-157.75711,666.71126)" />
337+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7706" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-183.40826,655.10208)" />
338+<path transform="matrix(0,0,0,0,257.93883,809.12291)" d="m 250,293 c 0,0.5523 -0.4477,1 -1,1 -0.5523,0 -1,-0.4477 -1,-1 0,-0.5523 0.4477,-1 1,-1 0.5523,0 1,0.4477 1,1 z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="293" sodipodi:cx="249" id="path18244" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
339+<path transform="matrix(1.188915,0,0,1.188915,-185.8816,648.4478)" sodipodi:type="arc" style="opacity:0.3;color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:0.27735791;stroke-opacity:1;marker:none;visibility:visible;display:inline" id="path18274" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
340+<path transform="matrix(0.78686415,0,0,0.78686415,-32.120872,703.92362)" sodipodi:type="arc" style="opacity:0.3;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path18276" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
341+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path18278" style="opacity:0.3;color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:0.27735791;stroke-opacity:1;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.188915,0,0,1.188915,-180.00377,648.40361)" />
342+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path18280" style="opacity:0.3;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.76410089,0,0,0.76410089,-26.53634,710.06454)" />
343+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path18282" style="opacity:0.3;color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:0.27735791;stroke-opacity:1;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.111722,0,0,1.111722,-153.97313,662.09905)" />
344+<path transform="matrix(0.73911182,0,0,0.73911182,-11.285259,713.4684)" sodipodi:type="arc" style="opacity:0.3;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path18284" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
345+<path transform="matrix(1.188915,0,0,1.188915,-185.8816,654.4478)" sodipodi:type="arc" style="opacity:0.3;color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:0.27735791;stroke-opacity:1;marker:none;visibility:visible;display:inline" id="path18286" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
346+<path transform="matrix(0.71189696,0,0,0.71189696,-4.0011204,720.26775)" sodipodi:type="arc" style="opacity:0.3;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path18288" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
347+<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path18290" style="opacity:0.3;color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:0.27735791;stroke-opacity:1;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.188915,0,0,1.188915,-180.00377,654.40361)" />
348+<path transform="matrix(3.2413793,0,0,2.6666667,-552.88963,22.622911)" d="m 251,296.2031 c 0,0.1295 -0.084,0.2344 -0.1875,0.2344 -0.1036,0 -0.1875,-0.1049 -0.1875,-0.2344 0,-0.1294 0.084,-0.2344 0.1875,-0.2344 0.1036,0 0.1875,0.105 0.1875,0.2344 z" sodipodi:ry="0.234375" sodipodi:rx="0.1875" sodipodi:cy="296.20312" sodipodi:cx="250.8125" id="path18292" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
349+<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path18294" sodipodi:cx="250.8125" sodipodi:cy="296.20312" sodipodi:rx="0.1875" sodipodi:ry="0.234375" d="m 251,296.2031 c 0,0.1295 -0.084,0.2344 -0.1875,0.2344 -0.1036,0 -0.1875,-0.1049 -0.1875,-0.2344 0,-0.1294 0.084,-0.2344 0.1875,-0.2344 0.1036,0 0.1875,0.105 0.1875,0.2344 z" transform="matrix(3.2413793,0,0,2.6666667,-552.95213,28.591661)" />
350+<path transform="matrix(3.2413793,0,0,2.6666667,-547.04588,22.560411)" d="m 251,296.2031 c 0,0.1295 -0.084,0.2344 -0.1875,0.2344 -0.1036,0 -0.1875,-0.1049 -0.1875,-0.2344 0,-0.1294 0.084,-0.2344 0.1875,-0.2344 0.1036,0 0.1875,0.105 0.1875,0.2344 z" sodipodi:ry="0.234375" sodipodi:rx="0.1875" sodipodi:cy="296.20312" sodipodi:cx="250.8125" id="path18296" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
351+<path transform="matrix(3.2413793,0,0,2.6666667,-547.04588,28.622911)" d="m 251,296.2031 c 0,0.1295 -0.084,0.2344 -0.1875,0.2344 -0.1036,0 -0.1875,-0.1049 -0.1875,-0.2344 0,-0.1294 0.084,-0.2344 0.1875,-0.2344 0.1036,0 0.1875,0.105 0.1875,0.2344 z" sodipodi:ry="0.234375" sodipodi:rx="0.1875" sodipodi:cy="296.20312" sodipodi:cx="250.8125" id="path18298" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
352 <rect rx="0.9999907" ry="0" y="807.36218" x="255" height="15.999997" width="16" id="rect18300" style="fill:none;fill-opacity:1;stroke:none" />
353 </g>
354 <g id="tool-pointer" inkscape:label="#draw_select">
355@@ -1650,16 +1650,16 @@
356 <path sodipodi:nodetypes="ccccc" id="path30254" d="m 329,1027.3622 0,-1.1429 c 0,-1.1428 -2,-1.1428 -2,0 l 0,1.1429 z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" inkscape:connector-curvature="0" />
357 <path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 332,1032.3622 -1,-1 -6,0 -1,1 0,3.9996 c 0,0 2,2.0004 8,2.0004 z" id="path30256" sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" />
358 <path sodipodi:nodetypes="ccccc" id="path30258" d="m 331,1030.3622 -1,-2 -3.99999,0 -1.00001,2 z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" inkscape:connector-curvature="0" />
359-<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path30260" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" transform="matrix(0.29048125,0,0,0.29048056,264.88859,876.54905)" />
360-<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use30268" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" transform="matrix(0.4232259,0,0,0.42322492,236.56022,809.01573)" />
361-<path transform="matrix(0.44710501,0,0,0.42322492,231.56052,806.05824)" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" sodipodi:ry="0.92537314" sodipodi:rx="0.92537314" sodipodi:cy="518.42188" sodipodi:cx="206.58955" id="use30270" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" />
362-<path transform="matrix(0.63535924,0,0,0.63535772,191.19767,699.65607)" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" sodipodi:ry="0.92537314" sodipodi:rx="0.92537314" sodipodi:cy="518.42188" sodipodi:cx="206.58955" id="use30274" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" />
363-<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use30276" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" transform="matrix(0.63535924,0,0,0.63535772,191.12575,695.52348)" />
364-<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use30278" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" transform="matrix(0.63535924,0,0,0.63535772,190.28606,697.87704)" />
365-<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use30280" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" transform="matrix(1.072959,0,0,1.069944,98.242372,475.7339)" />
366-<path transform="matrix(1.0806383,0,0,1.0672356,96.900477,471.15992)" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" sodipodi:ry="0.92537314" sodipodi:rx="0.92537314" sodipodi:cy="518.42188" sodipodi:cx="206.58955" id="use30282" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" />
367-<path transform="matrix(1.0806446,0,0,1.1320461,95.750111,440.43715)" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" sodipodi:ry="0.92537314" sodipodi:rx="0.92537314" sodipodi:cy="518.42188" sodipodi:cx="206.58955" id="use30284" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" />
368-<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use30294" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" transform="matrix(0.53984281,0,0,0.53984151,212.00749,747.35054)" />
369+<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path30260" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" transform="matrix(0.29048125,0,0,0.29048056,264.88859,876.54905)" />
370+<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use30268" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" transform="matrix(0.4232259,0,0,0.42322492,236.56022,809.01573)" />
371+<path transform="matrix(0.44710501,0,0,0.42322492,231.56052,806.05824)" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" sodipodi:ry="0.92537314" sodipodi:rx="0.92537314" sodipodi:cy="518.42188" sodipodi:cx="206.58955" id="use30270" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" />
372+<path transform="matrix(0.63535924,0,0,0.63535772,191.19767,699.65607)" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" sodipodi:ry="0.92537314" sodipodi:rx="0.92537314" sodipodi:cy="518.42188" sodipodi:cx="206.58955" id="use30274" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" />
373+<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use30276" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" transform="matrix(0.63535924,0,0,0.63535772,191.12575,695.52348)" />
374+<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use30278" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" transform="matrix(0.63535924,0,0,0.63535772,190.28606,697.87704)" />
375+<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use30280" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" transform="matrix(1.072959,0,0,1.069944,98.242372,475.7339)" />
376+<path transform="matrix(1.0806383,0,0,1.0672356,96.900477,471.15992)" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" sodipodi:ry="0.92537314" sodipodi:rx="0.92537314" sodipodi:cy="518.42188" sodipodi:cx="206.58955" id="use30282" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" />
377+<path transform="matrix(1.0806446,0,0,1.1320461,95.750111,440.43715)" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" sodipodi:ry="0.92537314" sodipodi:rx="0.92537314" sodipodi:cy="518.42188" sodipodi:cx="206.58955" id="use30284" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" />
378+<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use30294" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" transform="matrix(0.53984281,0,0,0.53984151,212.00749,747.35054)" />
379 </g>
380 <g id="tool-spray" inkscape:label="#g30432">
381 <path id="path5769" d="m 285,1022.3622 24,0 0,24 -24,0 0,-24 z" style="fill:none;stroke:none" inkscape:connector-curvature="0" />
382@@ -1667,12 +1667,12 @@
383 <path inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" id="path6315-8" d="M 306.95581,1035.2461 306,1034.3622 l -9,0 -0.97119,1.4125 -0.0288,6.5875 c 2.89515,1.8232 3.73482,4.5745 11,2 z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />
384 <path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 306,1033.3622 -2,-3 -5,0 -2,3 z" id="path5211-1" sodipodi:nodetypes="ccccc" />
385 <g id="g30296" transform="translate(-0.08294714,-0.72362013)">
386-<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path23475" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" transform="matrix(0.4357219,0,0,0.4357219,206.83288,803.64194)" />
387+<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path23475" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" transform="matrix(0.4357219,0,0,0.4357219,206.83288,803.64194)" />
388 <use x="0" y="0" xlink:href="#path23475" id="use23477" transform="matrix(1.0586461,0,0,1.0586461,-18.174531,-59.248658)" width="744.09448" height="1052.3622" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
389 <use x="0" y="0" xlink:href="#use23477" id="use23479" transform="translate(0,-2.2081683)" width="744.09448" height="1052.3622" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
390 <use x="0" y="0" xlink:href="#use23477" id="use23483" transform="matrix(1.3762691,0,0,1.3762691,-112.79388,-386.94167)" width="744.09448" height="1052.3622" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
391 <use x="0" y="0" xlink:href="#use23479" id="use23485" transform="matrix(1.3762691,0,0,1.3762691,-113.12569,-387.87483)" width="744.09448" height="1052.3622" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
392-<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use23487" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" transform="matrix(0.63483893,0,0,0.63483893,162.58913,700.41531)" />
393+<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use23487" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" transform="matrix(0.63483893,0,0,0.63483893,162.58913,700.41531)" />
394 <use x="0" y="0" xlink:href="#use23483" id="use23489" transform="matrix(1.5012295,0,0,1.5012295,-149.6645,-516.0387)" width="744.09448" height="1052.3622" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
395 <use x="0" y="0" xlink:href="#use23485" id="use23491" transform="matrix(1.5012295,0,0,1.5012295,-149.78926,-515.96508)" width="744.09448" height="1052.3622" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
396 <use x="0" y="0" xlink:href="#use23487" id="use23493" transform="matrix(1.5012295,0,0,1.5012295,-149.54212,-516.03065)" width="744.09448" height="1052.3622" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
397@@ -1893,7 +1893,7 @@
398 </g>
399 <g id="draw-ellipse-segment" inkscape:label="#circle_closed_arc">
400 <rect style="fill:none;stroke:none" id="rect4316" width="16" height="16" x="379" y="651.36218" />
401-<path transform="translate(-121,501.36218)" d="m 514,158 c 0,3.3137 -2.6863,6 -6,6 -3.3137,0 -6,-2.6863 -6,-6 0,-2.1436 1.1436,-4.1244 3,-5.1962 L 508,158 Z" sodipodi:ry="6" sodipodi:rx="6" sodipodi:cy="158" sodipodi:cx="508" id="path4318" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.50000000000000000;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" sodipodi:start="0" sodipodi:end="4.18879" />
402+<path transform="translate(-121,501.36218)" d="m 514,158 c 0,3.3137 -2.6863,6 -6,6 -3.3137,0 -6,-2.6863 -6,-6 0,-2.1436 1.1436,-4.1244 3,-5.1962 L 508,158 z" sodipodi:ry="6" sodipodi:rx="6" sodipodi:cy="158" sodipodi:cx="508" id="path4318" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.50000000000000000;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" sodipodi:start="0" sodipodi:end="4.18879" />
403 </g>
404 <g id="draw-ellipse-arc" inkscape:label="#circle_open_arc">
405 <rect y="651.36218" x="409" height="16" width="16" id="rect19892" style="fill:none;stroke:none" />
406@@ -1902,12 +1902,12 @@
407 <g id="g19923" inkscape:label="#circle_reset">
408 <rect style="fill:none;stroke:none" id="rect19849" width="16" height="16" x="349" y="651.36218" />
409 <path id="path19864" transform="translate(0,512.36218)" d="M 357 141 C 353.68629 141 351 143.68629 351 147 C 351 150.31371 353.68629 153 357 153 C 359.62335 153 361.84089 151.3144 362.65625 148.96875 C 362.06746 148.86438 361.51775 148.50813 361.21875 147.9375 C 360.70618 146.95929 361.08425 145.7313 362.0625 145.21875 C 362.26302 145.11369 362.47535 145.06399 362.6875 145.03125 C 362.34107 144.02883 361.72098 143.15012 360.9375 142.46875 C 360.80611 143.00759 360.46739 143.50361 359.9375 143.78125 C 358.95925 144.29382 357.73131 143.91576 357.21875 142.9375 C 356.88747 142.30523 356.94702 141.57459 357.28125 141 C 357.18932 140.99582 357.09297 141 357 141 z " style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
410-<path sodipodi:end="12.060928" sodipodi:start="5.8005538" transform="translate(0,512.36218)" d="m 359.8858,141.5359 c 0.2563,0.4892 0.067,1.0936 -0.4217,1.3499 -0.4892,0.2563 -1.0936,0.068 -1.3499,-0.4217 -0.2563,-0.4892 -0.067,-1.0936 0.4217,-1.3499 0.4813,-0.2522 1.076,-0.074 1.3391,0.4016 L 359,142 Z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="142" sodipodi:cx="359" id="path19915" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
411-<path sodipodi:end="12.060928" sodipodi:start="5.8005538" transform="translate(0,512.36218)" d="m 363.8858,146.5359 c 0.2563,0.4892 0.067,1.0936 -0.4217,1.3499 -0.4892,0.2563 -1.0936,0.068 -1.3499,-0.4217 -0.2563,-0.4892 -0.067,-1.0936 0.4217,-1.3499 0.4813,-0.2522 1.076,-0.074 1.3391,0.4016 L 363,147 Z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="147" sodipodi:cx="363" id="path19917" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
412+<path sodipodi:end="12.060928" sodipodi:start="5.8005538" transform="translate(0,512.36218)" d="m 359.8858,141.5359 c 0.2563,0.4892 0.067,1.0936 -0.4217,1.3499 -0.4892,0.2563 -1.0936,0.068 -1.3499,-0.4217 -0.2563,-0.4892 -0.067,-1.0936 0.4217,-1.3499 0.4813,-0.2522 1.076,-0.074 1.3391,0.4016 L 359,142 z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="142" sodipodi:cx="359" id="path19915" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
413+<path sodipodi:end="12.060928" sodipodi:start="5.8005538" transform="translate(0,512.36218)" d="m 363.8858,146.5359 c 0.2563,0.4892 0.067,1.0936 -0.4217,1.3499 -0.4892,0.2563 -1.0936,0.068 -1.3499,-0.4217 -0.2563,-0.4892 -0.067,-1.0936 0.4217,-1.3499 0.4813,-0.2522 1.076,-0.074 1.3391,0.4016 L 363,147 z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="147" sodipodi:cx="363" id="path19917" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
414 </g>
415 <g id="draw-star" inkscape:label="#g19984">
416 <rect y="682.36218" x="349" height="15.937499" width="15.979193" id="rect19962" style="color:#000000;fill:none;stroke:none;stroke-width:1.00000012;marker:none;display:inline" />
417-<path inkscape:transform-center-y="-0.83250302" inkscape:transform-center-x="0.0097788932" transform="matrix(0.98949965,-0.00310225,0.00325,1.0366248,9.0633833,513.12185)" d="m 356.0625,179.6875 -4.9981,-2.8353 -4.9953,2.8401 1.152,-5.6296 -4.2447,-3.8733 5.7101,-0.644 2.3719,-5.2338 2.377,5.2316 5.7107,0.6385 L 354.9051,174.059 Z" inkscape:randomized="0" inkscape:rounded="0" inkscape:flatsided="false" sodipodi:arg2="1.5703186" sodipodi:arg1="0.94200004" sodipodi:r2="4.0397148" sodipodi:r1="8.5009193" sodipodi:cy="172.8125" sodipodi:cx="351.0625" sodipodi:sides="5" id="path19973" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="star" />
418+<path inkscape:transform-center-y="-0.83250302" inkscape:transform-center-x="0.0097788932" transform="matrix(0.98949965,-0.00310225,0.00325,1.0366248,9.0633833,513.12185)" d="m 356.0625,179.6875 -4.9981,-2.8353 -4.9953,2.8401 1.152,-5.6296 -4.2447,-3.8733 5.7101,-0.644 2.3719,-5.2338 2.377,5.2316 5.7107,0.6385 -4.241,3.8773 z" inkscape:randomized="0" inkscape:rounded="0" inkscape:flatsided="false" sodipodi:arg2="1.5703186" sodipodi:arg1="0.94200004" sodipodi:r2="4.0397148" sodipodi:r1="8.5009193" sodipodi:cy="172.8125" sodipodi:cx="351.0625" sodipodi:sides="5" id="path19973" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="star" />
419 </g>
420 <g id="draw-polygon" inkscape:label="#g19980">
421 <rect transform="translate(0,512.36218)" y="170" x="379" height="16" width="16" id="rect19975" style="fill:none;fill-opacity:1;stroke:none" />
422@@ -2084,7 +2084,7 @@
423 </g>
424 <g id="snap-grid-guide-intersections" inkscape:label="#toggle_snap_grid_guide_intersections">
425 <rect y="527.36218" x="1009" height="16" width="16" id="rect16604" style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" />
426-<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.14285719;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path16610" sodipodi:cx="753.5" sodipodi:cy="33" sodipodi:rx="2" sodipodi:ry="2" d="m 755.5,33 c 0,1.10457 -0.8954,2 -2,2 -1.1046,0 -2,-0.89543 -2,-2 0,-1.10457 0.8954,-2 2,-2 C 754.6046,31 755.5,31.89543 755.5,33 Z" transform="matrix(1.0625039,0,0,1.0624957,212.90325,499.79982)" />
427+<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.14285719;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path16610" sodipodi:cx="753.5" sodipodi:cy="33" sodipodi:rx="2" sodipodi:ry="2" d="m 755.5,33 c 0,1.10457 -0.8954,2 -2,2 -1.1046,0 -2,-0.89543 -2,-2 0,-1.10457 0.8954,-2 2,-2 1.1046,0 2,0.89543 2,2 z" transform="matrix(1.0625039,0,0,1.0624957,212.90325,499.79982)" />
428 <rect ry="0.5" transform="translate(0,512.36218)" y="22" x="1009" height="1" width="16" id="rect16616" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
429 <rect rx="0.5" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect16618" width="16" height="1" x="527.36218" y="-1014" transform="matrix(0,1,-1,0,0,0)" ry="0.5" />
430 </g>
431@@ -2104,13 +2104,13 @@
432 <rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect16760" width="4" height="5" x="625" y="566.36218" />
433 <rect y="569.36218" x="630" height="1" width="2" id="rect16762" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
434 <rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect16764" width="2" height="1" x="622" y="569.36218" />
435-<path transform="matrix(1,0,0,1.0104167,-0.5000034,512.82051)" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 C 634.3284,55 635,55.67157 635,56.5 Z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="56.5" sodipodi:cx="633.5" id="path16766" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
436-<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path16770" sodipodi:cx="633.5" sodipodi:cy="56.5" sodipodi:rx="1.5" sodipodi:ry="1.5" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 C 634.3284,55 635,55.67157 635,56.5 Z" transform="matrix(1,0,0,1.0104167,-12.500003,512.78926)" />
437+<path transform="matrix(1,0,0,1.0104167,-0.5000034,512.82051)" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.67157 1.5,1.5 z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="56.5" sodipodi:cx="633.5" id="path16766" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
438+<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path16770" sodipodi:cx="633.5" sodipodi:cy="56.5" sodipodi:rx="1.5" sodipodi:ry="1.5" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.67157 1.5,1.5 z" transform="matrix(1,0,0,1.0104167,-12.500003,512.78926)" />
439 </g>
440 <g id="node-type-auto-smooth" inkscape:label="#g16811">
441 <path id="path16803" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.02798498;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 664.3125,559.28125 a 0.51404389,0.51404389 0 0 0 -0.40625,0.59375 c 0.23335,1.60212 -0.0607,3.74792 -1.125,5.4375 -1.06433,1.68958 -2.84446,2.96875 -5.875,2.96875 -3.034,0 -4.79906,-1.22284 -5.8125,-2.875 -1.01344,-1.65216 -1.22977,-3.76727 -0.96875,-5.375 a 0.52407843,0.52407843 0 1 0 -1.03125,-0.1875 c -0.29775,1.83396 -0.053,4.17337 1.125,6.09375 1.17797,1.92038 3.36126,3.375 6.6875,3.375 3.3297,0 5.52336,-1.49024 6.75,-3.4375 1.22664,-1.94726 1.51793,-4.28543 1.25,-6.125 a 0.51404389,0.51404389 0 0 0 -0.59375,-0.46875 z" inkscape:connector-curvature="0" />
442 <rect style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect16805" width="16" height="16" x="649" y="558.36218" />
443-<path transform="matrix(1.5,0,0,1.5,-328.5,482.86218)" d="m 659,57 c 0,1.10457 -0.8954,2 -2,2 -1.1046,0 -2,-0.89543 -2,-2 0,-1.10457 0.8954,-2 2,-2 C 658.1046,55 659,55.89543 659,57 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="57" sodipodi:cx="657" id="path16809" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
444+<path transform="matrix(1.5,0,0,1.5,-328.5,482.86218)" d="m 659,57 c 0,1.10457 -0.8954,2 -2,2 -1.1046,0 -2,-0.89543 -2,-2 0,-1.10457 0.8954,-2 2,-2 1.1046,0 2,0.89543 2,2 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="57" sodipodi:cx="657" id="path16809" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
445 </g>
446 <g id="node-segment-curve" inkscape:label="#node_curve">
447 <g id="g16873">
448@@ -2133,7 +2133,7 @@
449 <path inkscape:connector-curvature="0" id="path4641" d="m 753.23405,561.27338 c -2.15093,0.33041 -4.64192,1.58028 -6.6548,3.42404 -2.01287,1.84377 -3.57785,4.32174 -3.57785,7.04045 a 0.57251396,0.61561931 0 1 0 1.14492,0 c 0,-2.20575 1.2973,-4.38295 3.14851,-6.07864 1.8512,-1.69567 4.22609,-2.90805 6.08234,-3.19319 a 0.57251396,0.61561931 0 1 0 -0.14312,-1.19266 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.00000036;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
450 <path inkscape:connector-curvature="0" id="path4638" d="m 743.48254,560.54592 a 0.54998789,0.76843483 0 0 0 -0.48119,0.81638 l 0,9.2203 a 0.54998789,0.76843483 0 1 0 1.09986,0 l 0,-9.2203 a 0.54998789,0.76843483 0 0 0 -0.61867,-0.81638 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.00000036;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
451 <rect y="568.36218" x="742" height="3.9999974" width="4" id="rect16999" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
452-<path transform="matrix(1.0416758,0,0,1.0416667,-30.98601,510.34135)" d="m 745,48.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 C 744.3284,47 745,47.67157 745,48.5 Z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="48.5" sodipodi:cx="743.5" id="path17001" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
453+<path transform="matrix(1.0416758,0,0,1.0416667,-30.98601,510.34135)" d="m 745,48.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.67157 1.5,1.5 z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="48.5" sodipodi:cx="743.5" id="path17001" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
454 </g>
455 <use transform="translate(768.9613,314.30868)" x="0" y="0" id="use9872" width="1250" height="1250" xlink:href="#g6043" />
456 <use height="1250" width="1250" id="use10185" y="0" x="0" transform="translate(813.9931,374.61038)" xlink:href="#rect10675" />
457@@ -2146,8 +2146,8 @@
458 <rect style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect9258" width="16" height="16" x="768.9375" y="558.36218" />
459 <path transform="translate(0,512.36218)" inkscape:connector-curvature="0" id="path17065" d="m 777.99024,55.054686 0.0527,6.064453 3.90234,-3.164062 z" style="fill:url(#linearGradient19282);stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1" />
460 <rect y="567.36218" x="783" height="5.9999976" width="0.94921875" id="rect17067" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
461-<path transform="translate(0,512.36218)" d="m 784,48.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 C 783.3284,47 784,47.67157 784,48.5 Z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="48.5" sodipodi:cx="782.5" id="path17075" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
462-<path transform="matrix(1,0,0,1.5,0,481.86218)" d="m 773,60 c 0,0.55228 -0.6716,1 -1.5,1 -0.8284,0 -1.5,-0.44772 -1.5,-1 0,-0.55228 0.6716,-1 1.5,-1 C 772.3284,59 773,59.44772 773,60 Z" sodipodi:ry="1" sodipodi:rx="1.5" sodipodi:cy="60" sodipodi:cx="771.5" id="path17077" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
463+<path transform="translate(0,512.36218)" d="m 784,48.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.67157 1.5,1.5 z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="48.5" sodipodi:cx="782.5" id="path17075" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
464+<path transform="matrix(1,0,0,1.5,0,481.86218)" d="m 773,60 c 0,0.55228 -0.6716,1 -1.5,1 -0.8284,0 -1.5,-0.44772 -1.5,-1 0,-0.55228 0.6716,-1 1.5,-1 0.8284,0 1.5,0.44772 1.5,1 z" sodipodi:ry="1" sodipodi:rx="1.5" sodipodi:cy="60" sodipodi:cx="771.5" id="path17077" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
465 <path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path17141" d="m 771.92051,562.57116 c -1.24349,1.86933 -1.27661,4.20671 0.24437,5.61508 1.47922,0.8068 2.95451,0.6486 4.7753,-0.98671 -3.248,0.42633 -4.98993,-1.10298 -5.01967,-4.62837 z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />
466 <path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 777.86091,559.47448 c -1.50986,0.91368 -2.29882,2.50498 -1.66137,3.91829 0.80417,0.98893 1.92136,1.31569 3.77153,0.73258 -2.48515,-0.66596 -3.24257,-2.22728 -2.11016,-4.65087 z" id="path17143" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
467 </g>
468@@ -2166,8 +2166,8 @@
469 <use transform="translate(885.0318,-128.6983)" x="0" y="0" id="use4819" width="1250" height="1250" xlink:href="#rect10675" />
470 <use height="1250" width="1250" id="use4821" y="0" x="0" transform="translate(873.0318,-116.6983)" xlink:href="#rect10675" />
471 </g>
472-<path transform="matrix(1.5,0,0,1.5,-420.5,487.36218)" d="m 843,49 c 0,0.55228 -0.4477,1 -1,1 -0.5523,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477,-1 1,-1 C 842.5523,48 843,48.44772 843,49 Z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="49" sodipodi:cx="842" id="path17299" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
473-<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path17301" sodipodi:cx="842" sodipodi:cy="49" sodipodi:rx="1" sodipodi:ry="1" d="m 843,49 c 0,0.55228 -0.4477,1 -1,1 -0.5523,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477,-1 1,-1 C 842.5523,48 843,48.44772 843,49 Z" transform="matrix(1.5,0,0,1.5,-431.5,498.36218)" />
474+<path transform="matrix(1.5,0,0,1.5,-420.5,487.36218)" d="m 843,49 c 0,0.55228 -0.4477,1 -1,1 -0.5523,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477,-1 1,-1 0.5523,0 1,0.44772 1,1 z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="49" sodipodi:cx="842" id="path17299" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
475+<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path17301" sodipodi:cx="842" sodipodi:cy="49" sodipodi:rx="1" sodipodi:ry="1" d="m 843,49 c 0,0.55228 -0.4477,1 -1,1 -0.5523,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477,-1 1,-1 0.5523,0 1,0.44772 1,1 z" transform="matrix(1.5,0,0,1.5,-431.5,498.36218)" />
476 </g>
477 <g id="path-mask-edit" inkscape:label="#g21113">
478 <path sodipodi:nodetypes="cscscccccccccccccccc" inkscape:connector-curvature="0" id="path3826" d="m 866,564.36218 0,4.84375 c 0,1.71931 2,3.15625 4.46875,4.1875 2.53125,-1.03125 4.5,-2.19533 4.5,-4.125 l 0,-4.90625 z m 1,2 3,0 0,1 0,1 -2,-1 z m 4,0 3,0 -1,1 -2,1 z m -3,3 5,0 c -2.47487,4.48943 -5,0 -5,0 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;marker:none;visibility:visible;display:inline;overflow:visible" />
479@@ -2177,8 +2177,8 @@
480 <use xlink:href="#rect10675" height="1250" width="1250" id="use21096" y="0" x="0" transform="translate(885.0318,-128.6983)" />
481 <use xlink:href="#rect10675" transform="translate(873.0318,-116.6983)" x="0" y="0" id="use21098" width="1250" height="1250" />
482 </g>
483-<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path21100" sodipodi:cx="842" sodipodi:cy="49" sodipodi:rx="1" sodipodi:ry="1" d="m 843,49 c 0,0.55228 -0.4477,1 -1,1 -0.5523,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477,-1 1,-1 C 842.5523,48 843,48.44772 843,49 Z" transform="matrix(1.5,0,0,1.5,-391.5,485.36218)" />
484-<path transform="matrix(1.5,0,0,1.5,-402.5,496.36218)" d="m 843,49 c 0,0.55228 -0.4477,1 -1,1 -0.5523,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477,-1 1,-1 C 842.5523,48 843,48.44772 843,49 Z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="49" sodipodi:cx="842" id="path21102" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
485+<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path21100" sodipodi:cx="842" sodipodi:cy="49" sodipodi:rx="1" sodipodi:ry="1" d="m 843,49 c 0,0.55228 -0.4477,1 -1,1 -0.5523,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477,-1 1,-1 0.5523,0 1,0.44772 1,1 z" transform="matrix(1.5,0,0,1.5,-391.5,485.36218)" />
486+<path transform="matrix(1.5,0,0,1.5,-402.5,496.36218)" d="m 843,49 c 0,0.55228 -0.4477,1 -1,1 -0.5523,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477,-1 1,-1 0.5523,0 1,0.44772 1,1 z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="49" sodipodi:cx="842" id="path21102" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
487 </g>
488 <g id="path-mode-bezier" inkscape:label="#bezier_mode">
489 <rect y="557.36218" x="889" height="15.999998" width="15.999998" id="rect4983" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" />
490@@ -2385,12 +2385,12 @@
491 <path sodipodi:nodetypes="ccccccc" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m 409,682.61218 0,12.5 11,5.5 11,-5.5 0,-12.5 -11,4.5 -11,-4.5 z" id="path4908" inkscape:connector-curvature="0" />
492 <path style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m 420,678.11218 11,4.5 -11,4.5 -11,-4.5 11,-4.5 z" id="path4912" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
493 <path sodipodi:nodetypes="cc" id="path5699" d="m 420,687.11218 0,13.417" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" inkscape:connector-curvature="0" />
494-<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34840238;marker:none;visibility:visible;display:inline" id="use5857" sodipodi:cx="842.25" sodipodi:cy="222.75" sodipodi:rx="0.75" sodipodi:ry="1.25" d="m 843,222.75 c 0,0.6904 -0.3358,1.25 -0.75,1.25 -0.4142,0 -0.75,-0.5596 -0.75,-1.25 0,-0.6904 0.3358,-1.25 0.75,-1.25 C 842.6642,221.5 843,222.0596 843,222.75 Z" transform="matrix(0,1.6966161,-1.5844045,0,769.88791,-746.36383)" />
495-<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34840238;marker:none;visibility:visible;display:inline" id="use5859" sodipodi:cx="842.25" sodipodi:cy="222.75" sodipodi:rx="0.75" sodipodi:ry="1.25" d="m 843,222.75 c 0,0.6904 -0.3358,1.25 -0.75,1.25 -0.4142,0 -0.75,-0.5596 -0.75,-1.25 0,-0.6904 0.3358,-1.25 0.75,-1.25 C 842.6642,221.5 843,222.0596 843,222.75 Z" transform="matrix(0,1.6966161,-1.5844045,0,775.9845,-746.33583)" />
496-<path transform="matrix(1.0629202,0.0998114,-0.11228815,1.1957887,7.2060752,438.93602)" d="m 414,176.5 c 0,0.8284 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.6716 -1.5,-1.5 0,-0.8284 0.6716,-1.5 1.5,-1.5 C 413.3284,175 414,175.6716 414,176.5 Z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="176.5" sodipodi:cx="412.5" id="path15511" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
497-<path transform="matrix(0.88477373,0.00434439,0.00645582,0.91447867,48.342525,528.12557)" d="m 414,176.5 c 0,0.8284 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.6716 -1.5,-1.5 0,-0.8284 0.6716,-1.5 1.5,-1.5 C 413.3284,175 414,175.6716 414,176.5 Z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="176.5" sodipodi:cx="412.5" id="path15515" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
498-<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path15519" sodipodi:cx="412.5" sodipodi:cy="176.5" sodipodi:rx="1.5" sodipodi:ry="1.5" d="m 414,176.5 c 0,0.8284 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.6716 -1.5,-1.5 0,-0.8284 0.6716,-1.5 1.5,-1.5 C 413.3284,175 414,175.6716 414,176.5 Z" transform="matrix(0.9427641,0.00445032,0.00687896,0.93677566,27.036269,528.18063)" />
499-<path transform="matrix(0.91156408,0.0043668,0.00665131,0.91919769,34.804857,523.38108)" d="m 414,176.5 c 0,0.8284 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.6716 -1.5,-1.5 0,-0.8284 0.6716,-1.5 1.5,-1.5 C 413.3284,175 414,175.6716 414,176.5 Z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="176.5" sodipodi:cx="412.5" id="path15521" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
500+<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34840238;marker:none;visibility:visible;display:inline" id="use5857" sodipodi:cx="842.25" sodipodi:cy="222.75" sodipodi:rx="0.75" sodipodi:ry="1.25" d="m 843,222.75 c 0,0.6904 -0.3358,1.25 -0.75,1.25 -0.4142,0 -0.75,-0.5596 -0.75,-1.25 0,-0.6904 0.3358,-1.25 0.75,-1.25 0.4142,0 0.75,0.5596 0.75,1.25 z" transform="matrix(0,1.6966161,-1.5844045,0,769.88791,-746.36383)" />
501+<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34840238;marker:none;visibility:visible;display:inline" id="use5859" sodipodi:cx="842.25" sodipodi:cy="222.75" sodipodi:rx="0.75" sodipodi:ry="1.25" d="m 843,222.75 c 0,0.6904 -0.3358,1.25 -0.75,1.25 -0.4142,0 -0.75,-0.5596 -0.75,-1.25 0,-0.6904 0.3358,-1.25 0.75,-1.25 0.4142,0 0.75,0.5596 0.75,1.25 z" transform="matrix(0,1.6966161,-1.5844045,0,775.9845,-746.33583)" />
502+<path transform="matrix(1.0629202,0.0998114,-0.11228815,1.1957887,7.2060752,438.93602)" d="m 414,176.5 c 0,0.8284 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.6716 -1.5,-1.5 0,-0.8284 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.6716 1.5,1.5 z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="176.5" sodipodi:cx="412.5" id="path15511" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
503+<path transform="matrix(0.88477373,0.00434439,0.00645582,0.91447867,48.342525,528.12557)" d="m 414,176.5 c 0,0.8284 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.6716 -1.5,-1.5 0,-0.8284 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.6716 1.5,1.5 z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="176.5" sodipodi:cx="412.5" id="path15515" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
504+<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path15519" sodipodi:cx="412.5" sodipodi:cy="176.5" sodipodi:rx="1.5" sodipodi:ry="1.5" d="m 414,176.5 c 0,0.8284 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.6716 -1.5,-1.5 0,-0.8284 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.6716 1.5,1.5 z" transform="matrix(0.9427641,0.00445032,0.00687896,0.93677566,27.036269,528.18063)" />
505+<path transform="matrix(0.91156408,0.0043668,0.00665131,0.91919769,34.804857,523.38108)" d="m 414,176.5 c 0,0.8284 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.6716 -1.5,-1.5 0,-0.8284 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.6716 1.5,1.5 z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="176.5" sodipodi:cx="412.5" id="path15521" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
506 </g>
507 <rect y="682.36218" x="498" height="15.999997" width="16" id="rect15564" style="fill:none;stroke:none" />
508 <path inkscape:connector-curvature="0" id="path15581" d="m 501,685.36218 0,2 6,0 0,2 4,-3 -4,-3 0,2 z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="cccccccc" />
509@@ -2987,15 +2987,15 @@
510 </g>
511 <g id="distribute-graph" inkscape:label="#distribute_graph" transform="translate(0,4.1533082e-4)">
512 <rect ry="0.97140813" rx="0" y="823.36218" x="1120" height="23.999998" width="24" id="rect19372" style="fill:none;stroke:none" />
513-<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(-1,511.36218)" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 L 1123,320 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="320" sodipodi:cx="1123" id="path19374" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
514-<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path19376" sodipodi:cx="1123" sodipodi:cy="320" sodipodi:rx="2" sodipodi:ry="2" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 L 1123,320 Z" transform="translate(4,505.36218)" sodipodi:start="0" sodipodi:end="6.2689006" />
515-<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(13.000204,507.39075)" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 L 1123,320 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="320" sodipodi:cx="1123" id="path19378" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
516-<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path19380" sodipodi:cx="1123" sodipodi:cy="320" sodipodi:rx="2" sodipodi:ry="2" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 L 1123,320 Z" transform="translate(12,515.36218)" sodipodi:start="0" sodipodi:end="6.2689006" />
517-<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(4,517.36218)" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 L 1123,320 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="320" sodipodi:cx="1123" id="path19384" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
518-<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path19387" sodipodi:cx="1123" sodipodi:cy="320" sodipodi:rx="2" sodipodi:ry="2" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 L 1123,320 Z" transform="translate(17,523.36218)" sodipodi:start="0" sodipodi:end="6.2689006" />
519+<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(-1,511.36218)" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 l -2,0.029 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="320" sodipodi:cx="1123" id="path19374" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
520+<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path19376" sodipodi:cx="1123" sodipodi:cy="320" sodipodi:rx="2" sodipodi:ry="2" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 l -2,0.029 z" transform="translate(4,505.36218)" sodipodi:start="0" sodipodi:end="6.2689006" />
521+<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(13.000204,507.39075)" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 l -2,0.029 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="320" sodipodi:cx="1123" id="path19378" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
522+<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path19380" sodipodi:cx="1123" sodipodi:cy="320" sodipodi:rx="2" sodipodi:ry="2" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 l -2,0.029 z" transform="translate(12,515.36218)" sodipodi:start="0" sodipodi:end="6.2689006" />
523+<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(4,517.36218)" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 l -2,0.029 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="320" sodipodi:cx="1123" id="path19384" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
524+<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path19387" sodipodi:cx="1123" sodipodi:cy="320" sodipodi:rx="2" sodipodi:ry="2" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 l -2,0.029 z" transform="translate(17,523.36218)" sodipodi:start="0" sodipodi:end="6.2689006" />
525 <path sodipodi:nodetypes="cccccc" inkscape:connector-curvature="0" id="path19391" d="m 1135,835.36218 -8,2 -5,-6 5,-6 9,2 z" inkscape:transform-center-y="-0.17772873" inkscape:transform-center-x="0.46012798" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.02272153000000010;stroke-opacity:1" />
526 <path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path19394" d="m 1135,835.36218 5,8 -8,2 0,0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
527-<path sodipodi:end="6.2689006" sodipodi:start="0" transform="matrix(0.9886057,0,0,1.3257338,11.909739,403.21855)" d="m 1135,333.5 c 0,0.8284 -0.895,1.5 -2,1.5 -1.105,0 -2,-0.6716 -2,-1.5 0,-0.8284 0.895,-1.5 2,-1.5 1.093,0 1.984,0.6586 2,1.4786 L 1133,333.5 Z" sodipodi:ry="1.5" sodipodi:rx="2" sodipodi:cy="333.5" sodipodi:cx="1133" id="path19396" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
528+<path sodipodi:end="6.2689006" sodipodi:start="0" transform="matrix(0.9886057,0,0,1.3257338,11.909739,403.21855)" d="m 1135,333.5 c 0,0.8284 -0.895,1.5 -2,1.5 -1.105,0 -2,-0.6716 -2,-1.5 0,-0.8284 0.895,-1.5 2,-1.5 1.093,0 1.984,0.6586 2,1.4786 l -2,0.021 z" sodipodi:ry="1.5" sodipodi:rx="2" sodipodi:cy="333.5" sodipodi:cx="1133" id="path19396" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
529 </g>
530 <g id="distribute-remove-overlaps" inkscape:label="#g19465" transform="translate(0,4.1533082e-4)">
531 <rect ry="0" y="823.36218" x="1156" height="23.999998" width="22" id="rect19455" style="fill:none;stroke:none" />
532@@ -3006,10 +3006,10 @@
533 </g>
534 <g id="distribute-graph-directed" inkscape:label="#directed_graph" transform="translate(0,4.1533082e-4)">
535 <rect y="823.36218" x="1192" height="24" width="24" id="rect19472" style="fill:none;stroke:none" />
536-<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(-1,509.36218)" d="m 1199,316 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 L 1197,316 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="316" sodipodi:cx="1197" id="path19474" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
537-<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(2,509.36218)" d="m 1212,316 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 L 1210,316 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="316" sodipodi:cx="1210" id="path19476" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
538-<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path19478" sodipodi:cx="1210" sodipodi:cy="316" sodipodi:rx="2" sodipodi:ry="2" d="m 1212,316 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 L 1210,316 Z" transform="translate(-6,518.36218)" sodipodi:start="0" sodipodi:end="6.2689006" />
539-<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(-6,529.36218)" d="m 1212,316 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 L 1210,316 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="316" sodipodi:cx="1210" id="path19480" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
540+<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(-1,509.36218)" d="m 1199,316 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 l -2,0.029 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="316" sodipodi:cx="1197" id="path19474" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
541+<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(2,509.36218)" d="m 1212,316 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 l -2,0.029 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="316" sodipodi:cx="1210" id="path19476" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
542+<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path19478" sodipodi:cx="1210" sodipodi:cy="316" sodipodi:rx="2" sodipodi:ry="2" d="m 1212,316 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 l -2,0.029 z" transform="translate(-6,518.36218)" sodipodi:start="0" sodipodi:end="6.2689006" />
543+<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(-6,529.36218)" d="m 1212,316 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 l -2,0.029 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="316" sodipodi:cx="1210" id="path19480" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
544 <path style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.70516777000000008;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 1209.7199,826.50425 1.1763,1.22636 -2.2484,2.17805 1.4753,1.44852 -4.1231,0.005 0,0 -0.01,-4.12311 1.4766,1.44305 z" id="path19568" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccc" />
545 <path style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.70516777000000008;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 1205,837.36218 -2,0 0,2 -2,0 3,3 0,0 3.0635,-2.9298 -2.0635,-0.0702 z" id="path19570" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccc" />
546 <path sodipodi:nodetypes="ccccccccc" inkscape:connector-curvature="0" id="path19572" d="m 1198.2801,826.50425 -1.1763,1.22636 2.2484,2.17805 -1.4753,1.44852 4.1231,0.005 0,0 0.01,-4.12311 -1.4766,1.44305 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.70516777000000008;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
547@@ -3457,7 +3457,7 @@
548 <g id="reset-default" inkscape:label="#g78883">
549 <g inkscape:label="stock-reset" id="g30155" style="display:inline" transform="translate(-46.0002,548.36218)">
550 <rect style="opacity:0.3;fill:none;stroke:none" id="rect30123" width="16" height="16" x="-120" y="182" transform="translate(241.0002,217)" />
551-<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;color:#000000;fill-rule:nonzero;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path30125" sodipodi:cx="-117" sodipodi:cy="196" sodipodi:rx="2" sodipodi:ry="2" d="m -115,196 c 0,1.1046 -0.8954,2 -2,2 -1.1046,0 -2,-0.8954 -2,-2 0,-1.1046 0.8954,-2 2,-2 C -115.8954,194 -115,194.8954 -115,196 Z" transform="matrix(1.25,0,0,1.25,271.2502,167.5)" />
552+<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;color:#000000;fill-rule:nonzero;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path30125" sodipodi:cx="-117" sodipodi:cy="196" sodipodi:rx="2" sodipodi:ry="2" d="m -115,196 c 0,1.1046 -0.8954,2 -2,2 -1.1046,0 -2,-0.8954 -2,-2 0,-1.1046 0.8954,-2 2,-2 1.1046,0 2,0.8954 2,2 z" transform="matrix(1.25,0,0,1.25,271.2502,167.5)" />
553 <path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;color:#000000;fill-rule:nonzero;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="M 125.02328,409.00001 121.0002,405 l 8,0 z" id="path30137" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
554 <path style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans;fill-rule:nonzero" d="m 124.90645,401 c -0.49158,0.0463 -0.90838,0.50624 -0.90625,1 l 0,4 c -0.007,0.52831 0.47163,1.01424 1,1.01424 0.52837,0 1.00747,-0.48593 1,-1.01424 l 0,-3 8,0 0,9 -4,0 c -0.52831,-0.007 -1.01424,0.47163 -1.01424,1 0,0.52837 0.48593,1.00747 1.01424,1 l 5,0 c 0.52358,-5e-5 0.99995,-0.47642 1,-1 l 0,-11 c -5e-5,-0.52358 -0.47642,-0.99995 -1,-1 l -10,0 c -0.0312,-10e-4 -0.0625,-10e-4 -0.0937,0 z" id="path30149" inkscape:connector-curvature="0" sodipodi:nodetypes="cccscccccscccccccc" />
555 </g>
556@@ -3542,8 +3542,8 @@
557 <rect transform="scale(1,-1)" y="-514.35583" x="745" height="5" width="4" id="rect22662" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
558 <rect transform="scale(1,-1)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22664" width="2" height="1" x="750" y="-511.3558" />
559 <rect transform="scale(1,-1)" y="-511.3558" x="742" height="1" width="2" id="rect22666" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
560-<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path22668" sodipodi:cx="633.5" sodipodi:cy="56.5" sodipodi:rx="1.5" sodipodi:ry="1.5" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 C 634.3284,55 635,55.67157 635,56.5 Z" transform="matrix(1,0,0,-1.0104167,119.5,567.89749)" />
561-<path transform="matrix(1,0,0,-1.0104167,107.5,567.92874)" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 C 634.3284,55 635,55.67157 635,56.5 Z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="56.5" sodipodi:cx="633.5" id="path22670" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
562+<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path22668" sodipodi:cx="633.5" sodipodi:cy="56.5" sodipodi:rx="1.5" sodipodi:ry="1.5" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.67157 1.5,1.5 z" transform="matrix(1,0,0,-1.0104167,119.5,567.89749)" />
563+<path transform="matrix(1,0,0,-1.0104167,107.5,567.92874)" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.67157 1.5,1.5 z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="56.5" sodipodi:cx="633.5" id="path22670" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
564 </g>
565 <g id="snap-nodes-path" inkscape:label="#g26823" transform="translate(0,21)">
566 <path inkscape:connector-curvature="0" id="path22693" d="m 784.3125,522.36218 a 0.51404389,0.51211313 0 0 1 -0.40625,-0.59375 c 0.23335,-1.5961 -0.0607,-3.72302 -1.125,-5.40625 -0.63257,-1.00041 -1.53075,-1.84515 -2.78125,-2.375 l 0,-1.125 c 1.65524,0.59433 2.86068,1.6793 3.65625,2.9375 1.22664,1.93994 1.51793,4.26109 1.25,6.09375 a 0.51404389,0.51211313 0 0 1 -0.59375,0.46875 z m -14.71875,-0.125 a 0.52407843,0.52210998 0 0 1 -0.5,-0.4375 c -0.29775,-1.82706 -0.053,-4.14933 1.125,-6.0625 0.79178,-1.28594 2.03929,-2.36999 3.78125,-2.9375 l 0,1.0625 c -1.3469,0.50157 -2.27285,1.37754 -2.90625,2.40625 -1.01344,1.64596 -1.22977,3.74206 -0.96875,5.34375 a 0.52407843,0.52210998 0 0 1 -0.53125,0.625 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.02798498;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
567@@ -3551,13 +3551,13 @@
568 <rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22697" width="4" height="3.9999278" x="775" y="-513.36218" transform="scale(1,-1)" />
569 <rect y="-511.36215" x="780" height="1" width="2" id="rect22699" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="scale(1,-1)" />
570 <rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22701" width="2" height="1" x="772" y="-511.36215" transform="scale(1,-1)" />
571-<path transform="matrix(1,0,0,-1.0104167,149.5,567.90385)" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 C 634.3284,55 635,55.67157 635,56.5 Z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="56.5" sodipodi:cx="633.5" id="path22703" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
572-<path sodipodi:type="arc" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path22705" sodipodi:cx="633.5" sodipodi:cy="56.5" sodipodi:rx="1.5" sodipodi:ry="1.5" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 C 634.3284,55 635,55.67157 635,56.5 Z" transform="matrix(1,0,0,-1.0104167,137.5,567.9351)" />
573+<path transform="matrix(1,0,0,-1.0104167,149.5,567.90385)" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.67157 1.5,1.5 z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="56.5" sodipodi:cx="633.5" id="path22703" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
574+<path sodipodi:type="arc" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path22705" sodipodi:cx="633.5" sodipodi:cy="56.5" sodipodi:rx="1.5" sodipodi:ry="1.5" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.67157 1.5,1.5 z" transform="matrix(1,0,0,-1.0104167,137.5,567.9351)" />
575 </g>
576 <g id="snap-nodes-smooth" inkscape:label="#g26832" transform="translate(0,21)">
577 <path style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.02798498;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 844.3125,522.36218 a 0.51404389,0.51211313 0 0 1 -0.40625,-0.59375 c 0.23335,-1.5961 -0.0607,-3.72302 -1.125,-5.40625 -0.63257,-1.00041 -1.53075,-1.84515 -2.78125,-2.375 l 0,-1.125 c 1.65524,0.59433 2.86068,1.6793 3.65625,2.9375 1.22664,1.93994 1.51793,4.26109 1.25,6.09375 a 0.51404389,0.51211313 0 0 1 -0.59375,0.46875 z m -14.71875,-0.125 a 0.52407843,0.52210998 0 0 1 -0.5,-0.4375 c -0.29775,-1.82706 -0.053,-4.14933 1.125,-6.0625 0.79178,-1.28594 2.03929,-2.36999 3.78125,-2.9375 l 0,1.0625 c -1.3469,0.50157 -2.27285,1.37754 -2.90625,2.40625 -1.01344,1.64596 -1.22977,3.74206 -0.96875,5.34375 a 0.52407843,0.52210998 0 0 1 -0.53125,0.625 z" id="path22717" inkscape:connector-curvature="0" />
578 <rect transform="scale(1,-1)" y="-522.36218" x="829" height="16" width="16" id="rect22719" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" />
579-<path transform="matrix(0.8,0,0,0.8,167.8,511.96218)" d="M 839,0.5 C 839,1.880712 837.8807,3 836.5,3 835.1193,3 834,1.880712 834,0.5 834,-0.8807119 835.1193,-2 836.5,-2 837.8807,-2 839,-0.8807119 839,0.5 Z" sodipodi:ry="2.5" sodipodi:rx="2.5" sodipodi:cy="0.5" sodipodi:cx="836.5" id="path22731" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
580+<path transform="matrix(0.8,0,0,0.8,167.8,511.96218)" d="M 839,0.5 C 839,1.880712 837.8807,3 836.5,3 835.1193,3 834,1.880712 834,0.5 c 0,-1.3807119 1.1193,-2.5 2.5,-2.5 1.3807,0 2.5,1.1192881 2.5,2.5 z" sodipodi:ry="2.5" sodipodi:rx="2.5" sodipodi:cy="0.5" sodipodi:cx="836.5" id="path22731" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
581 </g>
582 <g id="snap-nodes-midpoint" inkscape:label="#g26837" transform="translate(0,21)">
583 <rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect22787" width="16" height="15.999997" x="-875" y="-522.42468" transform="scale(-1,-1)" />
584@@ -3567,13 +3567,13 @@
585 <path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path22809" d="m 865,518.36218 -6,0 3,4 z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
586 <path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="m 865,510.36218 -6,0 3,-4 z" id="path22811" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
587 <rect transform="translate(0,512.36218)" y="-6" x="872" height="16" width="1" id="rect22813" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
588-<path transform="translate(0,512.36218)" d="M 875,1.5 C 875,2.880712 873.8807,4 872.5,4 871.1193,4 870,2.880712 870,1.5 870,0.1192881 871.1193,-1 872.5,-1 873.8807,-1 875,0.1192881 875,1.5 Z" sodipodi:ry="2.5" sodipodi:rx="2.5" sodipodi:cy="1.5" sodipodi:cx="872.5" id="path22815" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
589+<path transform="translate(0,512.36218)" d="M 875,1.5 C 875,2.880712 873.8807,4 872.5,4 871.1193,4 870,2.880712 870,1.5 c 0,-1.3807119 1.1193,-2.5 2.5,-2.5 1.3807,0 2.5,1.1192881 2.5,2.5 z" sodipodi:ry="2.5" sodipodi:rx="2.5" sodipodi:cy="1.5" sodipodi:cx="872.5" id="path22815" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
590 </g>
591 <g id="snap-nodes-intersection" inkscape:label="#g26847" transform="translate(0,21)">
592 <rect y="506.36218" x="889" height="16" width="16" id="rect22819" style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" />
593 <path style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 903.90625,506.86104 a 0.50005,0.50005 0 0 0 -0.25,0.15625 l -14,14 a 0.50005,0.50005 0 1 0 0.6875,0.6875 l 14,-14 a 0.50005,0.50005 0 0 0 -0.4375,-0.84375 z" id="path22821" inkscape:connector-curvature="0" />
594 <path style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 904.26952,513.31971 a 0.50005006,0.50005006 0 0 0 -0.037,0.0244 l -14.51876,1.09801 a 0.50005006,0.50005006 0 1 0 0.056,0.96864 l 14.51876,-1.09801 a 0.50005006,0.50005006 0 0 0 -0.0191,-0.99295 z" id="path22823" inkscape:connector-curvature="0" />
595-<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.14285719;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path22825" sodipodi:cx="753.5" sodipodi:cy="33" sodipodi:rx="2" sodipodi:ry="2" d="m 755.5,33 c 0,1.10457 -0.8954,2 -2,2 -1.1046,0 -2,-0.89543 -2,-2 0,-1.10457 0.8954,-2 2,-2 C 754.6046,31 755.5,31.89543 755.5,33 Z" transform="matrix(1.5000086,0,0,1.4999826,-233.25652,464.86276)" />
596+<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.14285719;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path22825" sodipodi:cx="753.5" sodipodi:cy="33" sodipodi:rx="2" sodipodi:ry="2" d="m 755.5,33 c 0,1.10457 -0.8954,2 -2,2 -1.1046,0 -2,-0.89543 -2,-2 0,-1.10457 0.8954,-2 2,-2 1.1046,0 2,0.89543 2,2 z" transform="matrix(1.5000086,0,0,1.4999826,-233.25652,464.86276)" />
597 </g>
598 <g id="snap-nodes-center" inkscape:label="#g26853" transform="translate(0,21)">
599 <rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect22833" width="16" height="15.999997" x="-935" y="-522.36224" transform="scale(-1,-1)" />
600@@ -3632,5 +3632,9 @@
601 <path id="symbol-remove-shield" d="m 330.0142,114.1199 c 2.762,-0.781 5.4976,-0.8802 8.1953,0 -0.6623,2.1069 -0.093,4.1052 -0.3615,6.134 -0.2218,1.6719 -1.8714,2.6777 -3.7119,3.5283 -1.5384,-0.8542 -3.4022,-1.5335 -3.7362,-3.5283 C 330.0609,118.2291 330.6095,115.6819 330.0142,114.1199 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
602 <path is="symbol-remove-arrow" d="m 340.1906,115.0143 0,7.25 L 345.6282,118.6394 Z" id="path3035" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
603 </g>
604+<g id="path-mode-bspline" transform="matrix(1.3950659,-1.3663987,1.3663987,1.3950659,-407.71389,1808.6592)" inkscape:label="#bspline_mode">
605+<path inkscape:connector-curvature="0" style="color:#000000;fill:none;stroke:#666666;stroke-width:1.02419376;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m 961.7806,55.380337 c 0,0 1.37815,-1.49823 3.26044,-1.760578 1.88229,-0.262349 3.58408,1.78013 3.58408,1.78013" id="path-mode-spiro-3-8-8" sodipodi:nodetypes="czc" inkscape:label="#spiro_splines_mode" />
606+<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccc" id="path6177-8-2" d="m 960.71597,54.820437 4.50382,-4.574067 4.57382,4.479835" style="fill:none;stroke:#646464;stroke-width:0.51209688;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
607+</g>
608 </g>
609 </svg>
610
611=== modified file 'share/icons/tango_icons.svg'
612--- share/icons/tango_icons.svg 2014-03-27 01:33:44 +0000
613+++ share/icons/tango_icons.svg 2014-05-05 09:51:15 +0000
614@@ -1,48240 +1,8287 @@
615 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
616-<svg
617- xmlns:dc="http://purl.org/dc/elements/1.1/"
618- xmlns:cc="http://creativecommons.org/ns#"
619- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
620- xmlns:svg="http://www.w3.org/2000/svg"
621- xmlns="http://www.w3.org/2000/svg"
622- xmlns:xlink="http://www.w3.org/1999/xlink"
623- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
624- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
625- inkscape:version="0.48+devel r"
626- sodipodi:docname="tango_icons.svg"
627- height="2000"
628- width="2000"
629- sodipodi:version="0.32"
630- id="svg1"
631- inkscape:output_extension="org.inkscape.output.svg.inkscape"
632- version="1.0"
633- style="display:inline">
634- <defs
635- id="defs3">
636- <linearGradient
637- id="linearGradient14411">
638- <stop
639- id="stop14413"
640- offset="0"
641- style="stop-color:#8c8c8c;stop-opacity:1;" />
642- <stop
643- style="stop-color:#6e7279;stop-opacity:1;"
644- offset="0.11148844"
645- id="stop14415" />
646- <stop
647- id="stop14417"
648- offset="1"
649- style="stop-color:#ffffff;stop-opacity:1;" />
650- </linearGradient>
651- <linearGradient
652- id="linearGradient19967">
653- <stop
654- id="stop19969"
655- offset="0"
656- style="stop-color:#73d216" />
657- <stop
658- id="stop19971"
659- offset="1.0000000"
660- style="stop-color:#4e9a06;stop-opacity:1" />
661- </linearGradient>
662- <linearGradient
663- id="linearGradient3480-8">
664- <stop
665- id="stop3482-9"
666- offset="0.0000000"
667- style="stop-color:#646464;stop-opacity:1.0000000;" />
668- <stop
669- id="stop3484-6"
670- offset="1.0000000"
671- style="stop-color:#000000;stop-opacity:1.0000000;" />
672- </linearGradient>
673- <linearGradient
674- gradientTransform="matrix(1.743698,0,0,1.75,717.0189,-377.6785)"
675- y2="239.4902"
676- x2="62.5"
677- y1="235.1341"
678- x1="59"
679- gradientUnits="userSpaceOnUse"
680- id="linearGradient6467"
681- xlink:href="#linearGradient3480-8"
682- inkscape:collect="always" />
683- <linearGradient
684- id="linearGradient2485-9">
685- <stop
686- id="stop2486-3"
687- offset="0.0000000"
688- style="stop-color:#ffffff;stop-opacity:1.0000000" />
689- <stop
690- id="stop2487-1"
691- offset="1.0000000"
692- style="stop-color:#aaaaaa;stop-opacity:1.0000000;" />
693- </linearGradient>
694- <linearGradient
695- gradientTransform="matrix(1.743698,0,0,1.75,717.0189,-377.6785)"
696- y2="240.354"
697- x2="64.5183"
698- y1="236.4112"
699- x1="61.44776"
700- gradientUnits="userSpaceOnUse"
701- id="linearGradient6465"
702- xlink:href="#linearGradient2485-9"
703- inkscape:collect="always" />
704- <linearGradient
705- id="linearGradient15060">
706- <stop
707- id="stop15062"
708- offset="0"
709- style="stop-color:#5e605c;stop-opacity:1" />
710- <stop
711- style="stop-color:#dddddd;stop-opacity:1;"
712- offset="0.66074723"
713- id="stop15066" />
714- <stop
715- id="stop15064"
716- offset="1"
717- style="stop-color:#f7f7f7;stop-opacity:1;" />
718- </linearGradient>
719- <linearGradient
720- id="linearGradient15803">
721- <stop
722- style="stop-color:#8ae234;stop-opacity:1;"
723- offset="0"
724- id="stop15805" />
725- <stop
726- id="stop15807"
727- offset="0.76136363"
728- style="stop-color:#8ae234;stop-opacity:1;" />
729- <stop
730- style="stop-color:#8ae234;stop-opacity:0;"
731- offset="1"
732- id="stop15809" />
733- </linearGradient>
734- <linearGradient
735- id="linearGradient15791">
736- <stop
737- id="stop15793"
738- offset="0"
739- style="stop-color:#204a87;stop-opacity:1;" />
740- <stop
741- style="stop-color:#204a87;stop-opacity:1;"
742- offset="0.76136363"
743- id="stop15795" />
744- <stop
745- id="stop15797"
746- offset="1"
747- style="stop-color:#204a87;stop-opacity:0;" />
748- </linearGradient>
749- <inkscape:path-effect
750- effect="skeletal"
751- id="path-effect9860"
752- prop_scale="1.03"
753- pattern="M 758,-28 C 731.44111,-14.269388 718,-6 718,0 C 718,6 731.20914,26.0201 745.06843,28 C 753.06843,14 745.1344,-7.97121 758,-28 z M 774,-20 C 762.15421,-11.102507 755.37105,10.776225 774,22 C 762.74193,-2.4674498 773.26046,-19.050051 774,-20 z M 794,-14 C 780.8555,-3.853014 784,6 794,14 C 788,2 793.25027,-13.90401 794,-14 z M 824,-19.06843 C 819.14489,-17.910542 817.00991,-10.021547 814,-8 C 808.18381,-4.093675 803.89145,-5.12669 803.9754,-0.01793029 C 804.08433,6.6105697 806.48108,4.5018511 814,8 C 816.34648,9.0916891 821.11389,18.516733 824,18.93157 C 820,4.9315698 820,-7.0684302 824,-19.06843 z"
754- scale_y_rel="true"
755- pattern-nodetypes="czcccccccccssscc" />
756- <linearGradient
757- inkscape:collect="always"
758- id="linearGradient9841">
759- <stop
760- style="stop-color:#000000;stop-opacity:1;"
761- offset="0"
762- id="stop9843" />
763- <stop
764- style="stop-color:#000000;stop-opacity:0;"
765- offset="1"
766- id="stop9845" />
767- </linearGradient>
768- <linearGradient
769- id="linearGradient9819">
770- <stop
771- id="stop9821"
772- offset="0"
773- style="stop-color:#555753;stop-opacity:1;" />
774- <stop
775- id="stop9823"
776- offset="1"
777- style="stop-color:#555753;stop-opacity:0;" />
778- </linearGradient>
779- <linearGradient
780- id="linearGradient9813">
781- <stop
782- style="stop-color:#babdb6;stop-opacity:1;"
783- offset="0"
784- id="stop9815" />
785- <stop
786- style="stop-color:#babdb6;stop-opacity:0;"
787- offset="1"
788- id="stop9817" />
789- </linearGradient>
790- <linearGradient
791- id="linearGradient9688"
792- inkscape:collect="always">
793- <stop
794- id="stop9690"
795- offset="0"
796- style="stop-color:#729fcf;stop-opacity:1;" />
797- <stop
798- id="stop9692"
799- offset="1"
800- style="stop-color:#729fcf;stop-opacity:0" />
801- </linearGradient>
802- <linearGradient
803- id="linearGradient9587">
804- <stop
805- id="stop9589"
806- offset="0"
807- style="stop-color:#729fcf;stop-opacity:1;" />
808- <stop
809- id="stop9591"
810- offset="1"
811- style="stop-color:#729fcf;stop-opacity:0;" />
812- </linearGradient>
813- <linearGradient
814- inkscape:collect="always"
815- id="linearGradient13641">
816- <stop
817- style="stop-color:#ffffff;stop-opacity:1;"
818- offset="0"
819- id="stop13643" />
820- <stop
821- style="stop-color:#ffffff;stop-opacity:0;"
822- offset="1"
823- id="stop13645" />
824- </linearGradient>
825- <linearGradient
826- inkscape:collect="always"
827- id="linearGradient13633">
828- <stop
829- style="stop-color:#cc0000;stop-opacity:1;"
830- offset="0"
831- id="stop13635" />
832- <stop
833- style="stop-color:#cc0000;stop-opacity:0;"
834- offset="1"
835- id="stop13637" />
836- </linearGradient>
837- <linearGradient
838- inkscape:collect="always"
839- id="linearGradient13598">
840- <stop
841- style="stop-color:#a40000;stop-opacity:1;"
842- offset="0"
843- id="stop13600" />
844- <stop
845- style="stop-color:#a40000;stop-opacity:0;"
846- offset="1"
847- id="stop13602" />
848- </linearGradient>
849- <linearGradient
850- inkscape:collect="always"
851- id="linearGradient13517">
852- <stop
853- style="stop-color:#ffffff;stop-opacity:1;"
854- offset="0"
855- id="stop13519" />
856- <stop
857- style="stop-color:#ffffff;stop-opacity:0;"
858- offset="1"
859- id="stop13521" />
860- </linearGradient>
861- <linearGradient
862- inkscape:collect="always"
863- id="linearGradient13507">
864- <stop
865- style="stop-color:#729fcf;stop-opacity:1;"
866- offset="0"
867- id="stop13509" />
868- <stop
869- style="stop-color:#729fcf;stop-opacity:0;"
870- offset="1"
871- id="stop13511" />
872- </linearGradient>
873- <linearGradient
874- inkscape:collect="always"
875- id="linearGradient13498">
876- <stop
877- style="stop-color:#204a87;stop-opacity:1;"
878- offset="0"
879- id="stop13500" />
880- <stop
881- style="stop-color:#204a87;stop-opacity:0;"
882- offset="1"
883- id="stop13502" />
884- </linearGradient>
885- <linearGradient
886- inkscape:collect="always"
887- id="linearGradient13388">
888- <stop
889- style="stop-color:#204a87;stop-opacity:1;"
890- offset="0"
891- id="stop13390" />
892- <stop
893- style="stop-color:#204a87;stop-opacity:0;"
894- offset="1"
895- id="stop13392" />
896- </linearGradient>
897- <linearGradient
898- inkscape:collect="always"
899- id="linearGradient13380">
900- <stop
901- style="stop-color:#204a87;stop-opacity:1;"
902- offset="0"
903- id="stop13382" />
904- <stop
905- style="stop-color:#204a87;stop-opacity:0;"
906- offset="1"
907- id="stop13384" />
908- </linearGradient>
909- <linearGradient
910- inkscape:collect="always"
911- id="linearGradient15196">
912- <stop
913- style="stop-color:#2e3436;stop-opacity:1;"
914- offset="0"
915- id="stop15198" />
916- <stop
917- style="stop-color:#2e3436;stop-opacity:0;"
918- offset="1"
919- id="stop15200" />
920- </linearGradient>
921- <linearGradient
922- inkscape:collect="always"
923- id="linearGradient15188">
924- <stop
925- style="stop-color:#2e3436;stop-opacity:1;"
926- offset="0"
927- id="stop15190" />
928- <stop
929- style="stop-color:#2e3436;stop-opacity:0;"
930- offset="1"
931- id="stop15192" />
932- </linearGradient>
933- <linearGradient
934- id="linearGradient13899">
935- <stop
936- style="stop-color:#880000;stop-opacity:1;"
937- offset="0"
938- id="stop13901" />
939- <stop
940- id="stop13903"
941- offset="0.76136363"
942- style="stop-color:#880000;stop-opacity:1;" />
943- <stop
944- style="stop-color:#880000;stop-opacity:0;"
945- offset="1"
946- id="stop13905" />
947- </linearGradient>
948- <linearGradient
949- id="linearGradient13891">
950- <stop
951- style="stop-color:#4e9a06;stop-opacity:1;"
952- offset="0"
953- id="stop13893" />
954- <stop
955- id="stop13895"
956- offset="0.76136363"
957- style="stop-color:#4e9a06;stop-opacity:1;" />
958- <stop
959- style="stop-color:#4e9a06;stop-opacity:0;"
960- offset="1"
961- id="stop13897" />
962- </linearGradient>
963- <linearGradient
964- id="linearGradient13883">
965- <stop
966- id="stop13885"
967- offset="0"
968- style="stop-color:#729fcf;stop-opacity:1;" />
969- <stop
970- style="stop-color:#729fcf;stop-opacity:1;"
971- offset="0.76136363"
972- id="stop13887" />
973- <stop
974- id="stop13889"
975- offset="1"
976- style="stop-color:#729fcf;stop-opacity:0;" />
977- </linearGradient>
978- <linearGradient
979- id="linearGradient13760">
980- <stop
981- style="stop-color:#ef2929;stop-opacity:1;"
982- offset="0"
983- id="stop13762" />
984- <stop
985- id="stop13778"
986- offset="0.76136363"
987- style="stop-color:#ef2929;stop-opacity:1;" />
988- <stop
989- style="stop-color:#ef2929;stop-opacity:0;"
990- offset="1"
991- id="stop13764" />
992- </linearGradient>
993- <linearGradient
994- id="linearGradient13409">
995- <stop
996- id="stop13411"
997- offset="0"
998- style="stop-color:#f9f9f9;stop-opacity:1;" />
999- <stop
1000- id="stop13413"
1001- offset="1"
1002- style="stop-color:#555753;stop-opacity:1;" />
1003- </linearGradient>
1004- <linearGradient
1005- id="linearGradient13391">
1006- <stop
1007- id="stop13393"
1008- offset="0"
1009- style="stop-color:#bfc4c8;stop-opacity:1;" />
1010- <stop
1011- id="stop13395"
1012- offset="1"
1013- style="stop-color:#f0f2f5;stop-opacity:1;" />
1014- </linearGradient>
1015- <linearGradient
1016- id="linearGradient13385">
1017- <stop
1018- style="stop-color:#ffffff;stop-opacity:1;"
1019- offset="0"
1020- id="stop13387" />
1021- <stop
1022- style="stop-color:#d5d9dc;stop-opacity:1;"
1023- offset="1"
1024- id="stop13389" />
1025- </linearGradient>
1026- <linearGradient
1027- id="linearGradient13345">
1028- <stop
1029- id="stop13347"
1030- offset="0"
1031- style="stop-color:#000000;stop-opacity:0.28354979;" />
1032- <stop
1033- id="stop13349"
1034- offset="1"
1035- style="stop-color:#000000;stop-opacity:0;" />
1036- </linearGradient>
1037- <linearGradient
1038- id="linearGradient13302">
1039- <stop
1040- style="stop-color:#babdb6;stop-opacity:1;"
1041- offset="0"
1042- id="stop13304" />
1043- <stop
1044- style="stop-color:#ffffff;stop-opacity:1;"
1045- offset="1"
1046- id="stop13306" />
1047- </linearGradient>
1048- <linearGradient
1049- id="linearGradient13288">
1050- <stop
1051- style="stop-color:#eef1f5;stop-opacity:1;"
1052- offset="0"
1053- id="stop13290" />
1054- <stop
1055- style="stop-color:#729fcf;stop-opacity:1;"
1056- offset="1"
1057- id="stop13292" />
1058- </linearGradient>
1059- <linearGradient
1060- inkscape:collect="always"
1061- id="linearGradient12733">
1062- <stop
1063- style="stop-color:#000000;stop-opacity:1;"
1064- offset="0"
1065- id="stop12735" />
1066- <stop
1067- style="stop-color:#000000;stop-opacity:0;"
1068- offset="1"
1069- id="stop12737" />
1070- </linearGradient>
1071- <linearGradient
1072- inkscape:collect="always"
1073- id="linearGradient12156">
1074- <stop
1075- style="stop-color:#e7c9c2;stop-opacity:1"
1076- offset="0"
1077- id="stop12158" />
1078- <stop
1079- style="stop-color:#e2aaa1;stop-opacity:0;"
1080- offset="1"
1081- id="stop12160" />
1082- </linearGradient>
1083- <linearGradient
1084- inkscape:collect="always"
1085- id="linearGradient5602">
1086- <stop
1087- style="stop-color:#cccccc;stop-opacity:1"
1088- offset="0"
1089- id="stop5604" />
1090- <stop
1091- style="stop-color:#000000;stop-opacity:1"
1092- offset="1"
1093- id="stop5606" />
1094- </linearGradient>
1095- <linearGradient
1096- inkscape:collect="always"
1097- xlink:href="#linearGradient8482"
1098- id="linearGradient5633"
1099- x1="770.5"
1100- y1="200.25"
1101- x2="783"
1102- y2="214.25"
1103- gradientUnits="userSpaceOnUse" />
1104- <radialGradient
1105- inkscape:collect="always"
1106- xlink:href="#linearGradient5724"
1107- id="radialGradient8474"
1108- gradientUnits="userSpaceOnUse"
1109- gradientTransform="matrix(1.434932,0,0,0.608696,-337.9418,82.56952)"
1110- cx="777"
1111- cy="209.35"
1112- fx="777"
1113- fy="209.35"
1114- r="11.5" />
1115- <linearGradient
1116- id="linearGradient8482"
1117- inkscape:collect="always">
1118- <stop
1119- id="stop8484"
1120- offset="0"
1121- style="stop-color:#b3b3b3;stop-opacity:1" />
1122- <stop
1123- id="stop8486"
1124- offset="1"
1125- style="stop-color:#000000;stop-opacity:1" />
1126- </linearGradient>
1127- <linearGradient
1128- inkscape:collect="always"
1129- xlink:href="#linearGradient8482"
1130- id="linearGradient5637"
1131- x1="763"
1132- y1="216.875"
1133- x2="782"
1134- y2="218.25"
1135- gradientUnits="userSpaceOnUse" />
1136- <linearGradient
1137- id="linearGradient5724">
1138- <stop
1139- style="stop-color:#fffdf8;stop-opacity:1.0000000;"
1140- offset="0.0000000"
1141- id="stop5726" />
1142- <stop
1143- id="stop5730"
1144- offset="0.43478271"
1145- style="stop-color:#fcfaf5;stop-opacity:1;" />
1146- <stop
1147- style="stop-color:#cdccc7;stop-opacity:1.0000000;"
1148- offset="1.0000000"
1149- id="stop5728" />
1150- </linearGradient>
1151- <radialGradient
1152- inkscape:collect="always"
1153- xlink:href="#linearGradient5724"
1154- id="radialGradient8472"
1155- gradientUnits="userSpaceOnUse"
1156- gradientTransform="matrix(1,0,0,0.826087,0,38.17391)"
1157- cx="778"
1158- cy="216.47368"
1159- fx="778"
1160- fy="216.47368"
1161- r="11.5" />
1162- <linearGradient
1163- inkscape:collect="always"
1164- xlink:href="#eraserFill"
1165- id="linearGradient7426"
1166- gradientUnits="userSpaceOnUse"
1167- gradientTransform="matrix(0.809546,0,0,0.809417,342.9983,-4.125322)"
1168- x1="144.08243"
1169- y1="157.82079"
1170- x2="176.86269"
1171- y2="188.41277" />
1172- <linearGradient
1173- id="eraserFill">
1174- <stop
1175- id="stop5742_1"
1176- offset="0.0000000"
1177- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
1178- <stop
1179- id="stop5744_1"
1180- offset="1.0000000"
1181- style="stop-color:#f3b698;stop-opacity:1.0000000;" />
1182- </linearGradient>
1183- <linearGradient
1184- inkscape:collect="always"
1185- xlink:href="#eraserFill"
1186- id="linearGradient7424"
1187- gradientUnits="userSpaceOnUse"
1188- gradientTransform="matrix(1.13356,0,0,1.133368,339.5737,-131.407)"
1189- x1="101.09393"
1190- y1="221.06877"
1191- x2="112.20101"
1192- y2="234.00311" />
1193- <linearGradient
1194- inkscape:collect="always"
1195- id="linearGradient7772">
1196- <stop
1197- style="stop-color:#000000;stop-opacity:1;"
1198- offset="0"
1199- id="stop7774" />
1200- <stop
1201- style="stop-color:#000000;stop-opacity:0;"
1202- offset="1"
1203- id="stop7776" />
1204- </linearGradient>
1205- <linearGradient
1206- inkscape:collect="always"
1207- id="linearGradient7780">
1208- <stop
1209- style="stop-color:#000000;stop-opacity:1;"
1210- offset="0"
1211- id="stop7782" />
1212- <stop
1213- style="stop-color:#000000;stop-opacity:0;"
1214- offset="1"
1215- id="stop7784" />
1216- </linearGradient>
1217- <linearGradient
1218- inkscape:collect="always"
1219- id="linearGradient7836">
1220- <stop
1221- style="stop-color:#000000;stop-opacity:1;"
1222- offset="0"
1223- id="stop7838" />
1224- <stop
1225- style="stop-color:#000000;stop-opacity:0;"
1226- offset="1"
1227- id="stop7840" />
1228- </linearGradient>
1229- <linearGradient
1230- inkscape:collect="always"
1231- id="linearGradient7788">
1232- <stop
1233- style="stop-color:#000000;stop-opacity:1;"
1234- offset="0"
1235- id="stop7790" />
1236- <stop
1237- style="stop-color:#000000;stop-opacity:0;"
1238- offset="1"
1239- id="stop7792" />
1240- </linearGradient>
1241- <linearGradient
1242- inkscape:collect="always"
1243- id="linearGradient7804">
1244- <stop
1245- style="stop-color:#000000;stop-opacity:1;"
1246- offset="0"
1247- id="stop7806" />
1248- <stop
1249- style="stop-color:#000000;stop-opacity:0;"
1250- offset="1"
1251- id="stop7808" />
1252- </linearGradient>
1253- <linearGradient
1254- inkscape:collect="always"
1255- id="linearGradient7828">
1256- <stop
1257- style="stop-color:#000000;stop-opacity:1;"
1258- offset="0"
1259- id="stop7830" />
1260- <stop
1261- style="stop-color:#000000;stop-opacity:0;"
1262- offset="1"
1263- id="stop7832" />
1264- </linearGradient>
1265- <linearGradient
1266- inkscape:collect="always"
1267- id="linearGradient7820">
1268- <stop
1269- style="stop-color:#000000;stop-opacity:1;"
1270- offset="0"
1271- id="stop7822" />
1272- <stop
1273- style="stop-color:#000000;stop-opacity:0;"
1274- offset="1"
1275- id="stop7824" />
1276- </linearGradient>
1277- <linearGradient
1278- inkscape:collect="always"
1279- id="linearGradient7796">
1280- <stop
1281- style="stop-color:#000000;stop-opacity:1;"
1282- offset="0"
1283- id="stop7798" />
1284- <stop
1285- style="stop-color:#000000;stop-opacity:0;"
1286- offset="1"
1287- id="stop7800" />
1288- </linearGradient>
1289- <linearGradient
1290- inkscape:collect="always"
1291- id="linearGradient7812">
1292- <stop
1293- style="stop-color:#000000;stop-opacity:1;"
1294- offset="0"
1295- id="stop7814" />
1296- <stop
1297- style="stop-color:#000000;stop-opacity:0;"
1298- offset="1"
1299- id="stop7816" />
1300- </linearGradient>
1301- <clipPath
1302- clipPathUnits="userSpaceOnUse"
1303- id="clipPath5905">
1304- <rect
1305- style="opacity:1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.3344132;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;"
1306- id="rect5907"
1307- width="11.98896"
1308- height="11.88748"
1309- x="375.8356"
1310- y="138.7635" />
1311- </clipPath>
1312- <clipPath
1313- id="cieClip"
1314- clipPathUnits="userSpaceOnUse">
1315- <path
1316- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
1317- d="M 8.3599997,47.759998 C 7.7515743,47.515279 7.222277,46.901819 6.7843235,46.39273 C 5.6082715,45.025655 4.9648259,43.302806 4.3800001,41.630001 C 3.4463938,38.959561 2.6271155,36.199224 2.1141648,33.410416 C 1.4157915,29.613502 0.61298459,25.784236 0.39598041,21.942782 C 0.20936341,18.639248 -0.036735009,15.098988 0.67000002,11.99 C 1.0212715,10.444727 2.3352289,8.406245 3.5699999,7.98 C 4.6660199,7.6016521 6.4569453,8.7469868 7.6985305,9.5047548 C 9.5843038,10.655686 11.337786,12.013685 12.995799,13.4917 C 17.541311,17.54374 21.813011,21.891764 26.139096,26.173982 C 29.192346,29.196273 32.227767,32.236821 35.27,35.27 C 26.3,39.433333 17.33,43.596666 8.3599997,47.759998 z "
1318- id="path2430"
1319- sodipodi:nodetypes="cssssssssscc" />
1320- </clipPath>
1321- <linearGradient
1322- inkscape:collect="always"
1323- id="linearGradient14241">
1324- <stop
1325- style="stop-color:#3465a4;stop-opacity:1;"
1326- offset="0"
1327- id="stop14243" />
1328- <stop
1329- style="stop-color:#3465a4;stop-opacity:0;"
1330- offset="1"
1331- id="stop14245" />
1332- </linearGradient>
1333- <linearGradient
1334- inkscape:collect="always"
1335- id="linearGradient14233">
1336- <stop
1337- style="stop-color:#204a87;stop-opacity:1;"
1338- offset="0"
1339- id="stop14235" />
1340- <stop
1341- style="stop-color:#204a87;stop-opacity:0;"
1342- offset="1"
1343- id="stop14237" />
1344- </linearGradient>
1345- <linearGradient
1346- inkscape:collect="always"
1347- id="linearGradient14224">
1348- <stop
1349- style="stop-color:#729fcf;stop-opacity:1;"
1350- offset="0"
1351- id="stop14226" />
1352- <stop
1353- style="stop-color:#729fcf;stop-opacity:0;"
1354- offset="1"
1355- id="stop14229" />
1356- </linearGradient>
1357- <linearGradient
1358- id="linearGradient13947">
1359- <stop
1360- style="stop-color:#f5be00;stop-opacity:1;"
1361- offset="0"
1362- id="stop13949" />
1363- <stop
1364- style="stop-color:#f57f00;stop-opacity:1;"
1365- offset="1"
1366- id="stop13951" />
1367- </linearGradient>
1368- <linearGradient
1369- id="linearGradient13800">
1370- <stop
1371- style="stop-color:#000000;stop-opacity:1;"
1372- offset="0"
1373- id="stop13802" />
1374- <stop
1375- style="stop-color:#ffffff;stop-opacity:1;"
1376- offset="1"
1377- id="stop13804" />
1378- </linearGradient>
1379- <linearGradient
1380- id="linearGradient13616">
1381- <stop
1382- style="stop-color:#3465a4;stop-opacity:1;"
1383- offset="0"
1384- id="stop13618" />
1385- <stop
1386- style="stop-color:#729fcf;stop-opacity:1"
1387- offset="0.86907172"
1388- id="stop13620" />
1389- </linearGradient>
1390- <linearGradient
1391- inkscape:collect="always"
1392- id="linearGradient13691">
1393- <stop
1394- style="stop-color:#ffffff;stop-opacity:1;"
1395- offset="0"
1396- id="stop13693" />
1397- <stop
1398- style="stop-color:#ffffff;stop-opacity:0;"
1399- offset="1"
1400- id="stop13695" />
1401- </linearGradient>
1402- <linearGradient
1403- id="linearGradient13683">
1404- <stop
1405- style="stop-color:#2e3436;stop-opacity:1;"
1406- offset="0"
1407- id="stop13685" />
1408- <stop
1409- style="stop-color:#4f595c;stop-opacity:1;"
1410- offset="1"
1411- id="stop13687" />
1412- </linearGradient>
1413- <linearGradient
1414- inkscape:collect="always"
1415- id="linearGradient13547">
1416- <stop
1417- style="stop-color:#4e9a06;stop-opacity:1;"
1418- offset="0"
1419- id="stop13549" />
1420- <stop
1421- style="stop-color:#4e9a06;stop-opacity:0;"
1422- offset="1"
1423- id="stop13551" />
1424- </linearGradient>
1425- <linearGradient
1426- inkscape:collect="always"
1427- id="linearGradient13489">
1428- <stop
1429- style="stop-color:#555753;stop-opacity:1;"
1430- offset="0"
1431- id="stop13491" />
1432- <stop
1433- style="stop-color:#555753;stop-opacity:0;"
1434- offset="1"
1435- id="stop13493" />
1436- </linearGradient>
1437- <linearGradient
1438- inkscape:collect="always"
1439- id="linearGradient14230">
1440- <stop
1441- style="stop-color:#555753;stop-opacity:1;"
1442- offset="0"
1443- id="stop14232" />
1444- <stop
1445- style="stop-color:#555753;stop-opacity:0;"
1446- offset="1"
1447- id="stop14234" />
1448- </linearGradient>
1449- <linearGradient
1450- id="linearGradient13707">
1451- <stop
1452- id="stop13709"
1453- offset="0"
1454- style="stop-color:#ffffff;stop-opacity:1;" />
1455- <stop
1456- style="stop-color:#ffffff;stop-opacity:1;"
1457- offset="0.55299991"
1458- id="stop13711" />
1459- <stop
1460- id="stop13713"
1461- offset="1"
1462- style="stop-color:#a2a2a2;stop-opacity:1;" />
1463- </linearGradient>
1464- <linearGradient
1465- inkscape:collect="always"
1466- id="linearGradient13602">
1467- <stop
1468- style="stop-color:#888a85;stop-opacity:1;"
1469- offset="0"
1470- id="stop13604" />
1471- <stop
1472- style="stop-color:#888a85;stop-opacity:0;"
1473- offset="1"
1474- id="stop13606" />
1475- </linearGradient>
1476- <linearGradient
1477- id="linearGradient14313">
1478- <stop
1479- id="stop14315"
1480- offset="0"
1481- style="stop-color:#d5d5d5;stop-opacity:1;" />
1482- <stop
1483- style="stop-color:#dadada;stop-opacity:1;"
1484- offset="0.55299991"
1485- id="stop14317" />
1486- <stop
1487- id="stop14319"
1488- offset="0.80015606"
1489- style="stop-color:#b6b6b6;stop-opacity:1;" />
1490- <stop
1491- id="stop14321"
1492- offset="1"
1493- style="stop-color:#a2a2a2;stop-opacity:1;" />
1494- </linearGradient>
1495- <linearGradient
1496- inkscape:collect="always"
1497- xlink:href="#linearGradient13302"
1498- id="linearGradient14320"
1499- gradientUnits="userSpaceOnUse"
1500- gradientTransform="matrix(0.7420636,0,0,0.9166667,-859.04766,-1054.3334)"
1501- x1="1175.5026"
1502- y1="1169.2727"
1503- x2="1175.8395"
1504- y2="1158.9089" />
1505- <linearGradient
1506- inkscape:collect="always"
1507- xlink:href="#linearGradient13302"
1508- id="linearGradient14323"
1509- gradientUnits="userSpaceOnUse"
1510- gradientTransform="matrix(0.7420667,0,0,0.7312474,-859.05134,-839.76419)"
1511- x1="1172.7272"
1512- y1="1154.3483"
1513- x2="1172.7272"
1514- y2="1160.7494" />
1515- <filter
1516- inkscape:collect="always"
1517- id="filter14326"
1518- x="-0.05760023"
1519- width="1.1152005"
1520- y="-0.28800115"
1521- height="1.5760023">
1522- <feGaussianBlur
1523- inkscape:collect="always"
1524- stdDeviation="0.6000024"
1525- id="feGaussianBlur14328" />
1526- </filter>
1527- <linearGradient
1528- inkscape:collect="always"
1529- id="linearGradient8789">
1530- <stop
1531- style="stop-color:#ffffff;stop-opacity:1;"
1532- offset="0"
1533- id="stop8791" />
1534- <stop
1535- style="stop-color:#ffffff;stop-opacity:0;"
1536- offset="1"
1537- id="stop8793" />
1538- </linearGradient>
1539- <linearGradient
1540- inkscape:collect="always"
1541- id="linearGradient8781">
1542- <stop
1543- style="stop-color:#3465a4;stop-opacity:1;"
1544- offset="0"
1545- id="stop8783" />
1546- <stop
1547- style="stop-color:#3465a4;stop-opacity:0;"
1548- offset="1"
1549- id="stop8785" />
1550- </linearGradient>
1551- <linearGradient
1552- id="linearGradient8713">
1553- <stop
1554- style="stop-color:#608bbe;stop-opacity:1;"
1555- offset="0"
1556- id="stop8715" />
1557- <stop
1558- style="stop-color:#4c7cb5;stop-opacity:1;"
1559- offset="1"
1560- id="stop8717" />
1561- </linearGradient>
1562- <linearGradient
1563- id="linearGradient8471">
1564- <stop
1565- style="stop-color:#5382b9;stop-opacity:1"
1566- offset="0"
1567- id="stop8473" />
1568- <stop
1569- style="stop-color:#3565a5;stop-opacity:1"
1570- offset="1"
1571- id="stop8475" />
1572- </linearGradient>
1573- <linearGradient
1574- id="linearGradient12842">
1575- <stop
1576- style="stop-color:#babdb6;stop-opacity:0;"
1577- offset="0"
1578- id="stop12844" />
1579- <stop
1580- style="stop-color:#babdb6;stop-opacity:1;"
1581- offset="1"
1582- id="stop12846" />
1583- </linearGradient>
1584- <linearGradient
1585- id="linearGradient12552">
1586- <stop
1587- style="stop-color:#569619;stop-opacity:1;"
1588- offset="0"
1589- id="stop12554" />
1590- <stop
1591- style="stop-color:#3c6415;stop-opacity:1;"
1592- offset="1"
1593- id="stop12556" />
1594- </linearGradient>
1595- <linearGradient
1596- inkscape:collect="always"
1597- id="linearGradient12712">
1598- <stop
1599- style="stop-color:#2e3436;stop-opacity:1;"
1600- offset="0"
1601- id="stop12715" />
1602- <stop
1603- style="stop-color:#2e3436;stop-opacity:0;"
1604- offset="1"
1605- id="stop12717" />
1606- </linearGradient>
1607- <linearGradient
1608- inkscape:collect="always"
1609- id="linearGradient12533">
1610- <stop
1611- style="stop-color:#d3d7cf;stop-opacity:1;"
1612- offset="0"
1613- id="stop12535" />
1614- <stop
1615- style="stop-color:#d3d7cf;stop-opacity:0;"
1616- offset="1"
1617- id="stop12537" />
1618- </linearGradient>
1619- <linearGradient
1620- id="linearGradient12716">
1621- <stop
1622- id="stop12718"
1623- offset="0"
1624- style="stop-color:#fcaf3e;stop-opacity:0;" />
1625- <stop
1626- style="stop-color:#fcaf3e;stop-opacity:1;"
1627- offset="0.23427092"
1628- id="stop12720" />
1629- <stop
1630- style="stop-color:#fcaf3e;stop-opacity:1;"
1631- offset="0.73789984"
1632- id="stop12722" />
1633- <stop
1634- id="stop12724"
1635- offset="1"
1636- style="stop-color:#fcaf3e;stop-opacity:0;" />
1637- </linearGradient>
1638- <linearGradient
1639- id="linearGradient12706">
1640- <stop
1641- id="stop12708"
1642- offset="0"
1643- style="stop-color:#ce5c00;stop-opacity:0;" />
1644- <stop
1645- style="stop-color:#ce5c00;stop-opacity:1;"
1646- offset="0.27794591"
1647- id="stop12710" />
1648- <stop
1649- style="stop-color:#ce5c00;stop-opacity:1;"
1650- offset="0.65109503"
1651- id="stop12712" />
1652- <stop
1653- id="stop12714"
1654- offset="1"
1655- style="stop-color:#ce5c00;stop-opacity:0;" />
1656- </linearGradient>
1657- <linearGradient
1658- inkscape:collect="always"
1659- id="linearGradient12876">
1660- <stop
1661- style="stop-color:#ce5c00;stop-opacity:1;"
1662- offset="0"
1663- id="stop12878" />
1664- <stop
1665- style="stop-color:#ce5c00;stop-opacity:0;"
1666- offset="1"
1667- id="stop12880" />
1668- </linearGradient>
1669- <linearGradient
1670- inkscape:collect="always"
1671- xlink:href="#linearGradient8343"
1672- id="linearGradient7554"
1673- gradientUnits="userSpaceOnUse"
1674- gradientTransform="matrix(1.294118,0,0,1,1.705882,-10.5436)"
1675- x1="-16.000221"
1676- y1="423.58575"
1677- x2="0.58696824"
1678- y2="423.58575" />
1679- <linearGradient
1680- inkscape:collect="always"
1681- id="linearGradient12362">
1682- <stop
1683- style="stop-color:#ead7ce;stop-opacity:1;"
1684- offset="0"
1685- id="stop12364" />
1686- <stop
1687- style="stop-color:#ead7ce;stop-opacity:0;"
1688- offset="1"
1689- id="stop12366" />
1690- </linearGradient>
1691- <linearGradient
1692- id="linearGradient12352">
1693- <stop
1694- style="stop-color:#8a4a01;stop-opacity:1;"
1695- offset="0"
1696- id="stop12354" />
1697- <stop
1698- style="stop-color:#8f5902;stop-opacity:0;"
1699- offset="1"
1700- id="stop12356" />
1701- </linearGradient>
1702- <linearGradient
1703- id="linearGradient12319">
1704- <stop
1705- style="stop-color:#ce5c00;stop-opacity:0;"
1706- offset="0"
1707- id="stop12321" />
1708- <stop
1709- id="stop12329"
1710- offset="0.09044679"
1711- style="stop-color:#ce5c00;stop-opacity:1;" />
1712- <stop
1713- id="stop12327"
1714- offset="0.90803826"
1715- style="stop-color:#ce5c00;stop-opacity:1;" />
1716- <stop
1717- style="stop-color:#ce5c00;stop-opacity:0;"
1718- offset="1"
1719- id="stop12323" />
1720- </linearGradient>
1721- <linearGradient
1722- id="linearGradient12306">
1723- <stop
1724- style="stop-color:#fcaf3e;stop-opacity:0;"
1725- offset="0"
1726- id="stop12308" />
1727- <stop
1728- id="stop12317"
1729- offset="0.08843765"
1730- style="stop-color:#fcaf3e;stop-opacity:1;" />
1731- <stop
1732- id="stop12315"
1733- offset="0.90803868"
1734- style="stop-color:#fcaf3e;stop-opacity:1;" />
1735- <stop
1736- style="stop-color:#fcaf3e;stop-opacity:0;"
1737- offset="1"
1738- id="stop12310" />
1739- </linearGradient>
1740- <linearGradient
1741- inkscape:collect="always"
1742- id="linearGradient12068">
1743- <stop
1744- style="stop-color:#ffffff;stop-opacity:1;"
1745- offset="0"
1746- id="stop12070" />
1747- <stop
1748- style="stop-color:#ffffff;stop-opacity:0;"
1749- offset="1"
1750- id="stop12072" />
1751- </linearGradient>
1752- <linearGradient
1753- inkscape:collect="always"
1754- id="linearGradient11970">
1755- <stop
1756- style="stop-color:#3465a4;stop-opacity:1;"
1757- offset="0"
1758- id="stop11972" />
1759- <stop
1760- style="stop-color:#3465a4;stop-opacity:0;"
1761- offset="1"
1762- id="stop11974" />
1763- </linearGradient>
1764- <linearGradient
1765- inkscape:collect="always"
1766- id="linearGradient12136">
1767- <stop
1768- style="stop-color:#ffffff;stop-opacity:1;"
1769- offset="0"
1770- id="stop12138" />
1771- <stop
1772- style="stop-color:#ffffff;stop-opacity:0;"
1773- offset="1"
1774- id="stop12140" />
1775- </linearGradient>
1776- <linearGradient
1777- inkscape:collect="always"
1778- xlink:href="#linearGradient13302"
1779- id="linearGradient19733"
1780- gradientUnits="userSpaceOnUse"
1781- gradientTransform="matrix(1.0602686,0,0,1.0617493,-1258.6663,-0.9857992)"
1782- x1="1232.4244"
1783- y1="44.976086"
1784- x2="1201.0042"
1785- y2="2.5693133" />
1786- <linearGradient
1787- y2="23.855772"
1788- x2="16.784855"
1789- y1="41.668785"
1790- x1="38.622978"
1791- gradientUnits="userSpaceOnUse"
1792- id="linearGradient5138"
1793- xlink:href="#linearGradient13302"
1794- inkscape:collect="always" />
1795- <linearGradient
1796- inkscape:collect="always"
1797- xlink:href="#linearGradient13302"
1798- id="linearGradient6202"
1799- gradientUnits="userSpaceOnUse"
1800- x1="22.523418"
1801- y1="21.335377"
1802- x2="9.4813538"
1803- y2="-3.2306066" />
1804- <linearGradient
1805- inkscape:collect="always"
1806- id="linearGradient11360">
1807- <stop
1808- style="stop-color:#729fcf;stop-opacity:1;"
1809- offset="0"
1810- id="stop11362" />
1811- <stop
1812- style="stop-color:#729fcf;stop-opacity:0;"
1813- offset="1"
1814- id="stop11364" />
1815- </linearGradient>
1816- <linearGradient
1817- id="linearGradient11346">
1818- <stop
1819- style="stop-color:#4e9a06;stop-opacity:1;"
1820- offset="0"
1821- id="stop11348" />
1822- <stop
1823- style="stop-color:#448705;stop-opacity:1;"
1824- offset="1"
1825- id="stop11350" />
1826- </linearGradient>
1827- <linearGradient
1828- id="linearGradient11215">
1829- <stop
1830- style="stop-color:#888a85;stop-opacity:1;"
1831- offset="0"
1832- id="stop11217" />
1833- <stop
1834- style="stop-color:#888a85;stop-opacity:1;"
1835- offset="1"
1836- id="stop11219" />
1837- </linearGradient>
1838- <linearGradient
1839- id="linearGradient11207">
1840- <stop
1841- style="stop-color:#d3d7cf;stop-opacity:1;"
1842- offset="0"
1843- id="stop11209" />
1844- <stop
1845- style="stop-color:#d3d7cf;stop-opacity:1;"
1846- offset="1"
1847- id="stop11211" />
1848- </linearGradient>
1849- <linearGradient
1850- id="linearGradient11201">
1851- <stop
1852- style="stop-color:#ffffff;stop-opacity:1;"
1853- offset="0"
1854- id="stop11203" />
1855- <stop
1856- style="stop-color:#ffffff;stop-opacity:1;"
1857- offset="1"
1858- id="stop11205" />
1859- </linearGradient>
1860- <linearGradient
1861- id="linearGradient10843">
1862- <stop
1863- style="stop-color:#000000;stop-opacity:1.0000000"
1864- offset="0.0000000"
1865- id="stop10845" />
1866- <stop
1867- style="stop-color:#7f7f7f;stop-opacity:1.0000000"
1868- offset="0.35076979"
1869- id="stop10847" />
1870- <stop
1871- style="stop-color:#bfbfbf;stop-opacity:1.0000000"
1872- offset="0.59668732"
1873- id="stop10849" />
1874- <stop
1875- style="stop-color:#ffffff;stop-opacity:1.0000000"
1876- offset="1.0000000"
1877- id="stop10853" />
1878- </linearGradient>
1879- <linearGradient
1880- id="linearGradient10721">
1881- <stop
1882- id="stop10723"
1883- offset="0"
1884- style="stop-color:#729fcf;stop-opacity:1" />
1885- <stop
1886- id="stop10725"
1887- offset="1"
1888- style="stop-color:#3465a4;stop-opacity:1" />
1889- </linearGradient>
1890- <linearGradient
1891- inkscape:collect="always"
1892- xlink:href="#linearGradient10737"
1893- id="linearGradient10756"
1894- gradientUnits="userSpaceOnUse"
1895- x1="314.63306"
1896- y1="224.45227"
1897- x2="314.63306"
1898- y2="209.0123" />
1899- <linearGradient
1900- id="linearGradient10737">
1901- <stop
1902- style="stop-color:#a7bfd9;stop-opacity:1;"
1903- offset="0"
1904- id="stop10740" />
1905- <stop
1906- style="stop-color:#4581c1;stop-opacity:1;"
1907- offset="1"
1908- id="stop10742" />
1909- </linearGradient>
1910- <linearGradient
1911- id="linearGradient10735">
1912- <stop
1913- style="stop-color:#c0c0c0;stop-opacity:0;"
1914- offset="0"
1915- id="stop10737" />
1916- <stop
1917- style="stop-color:#c0c0c0;stop-opacity:0;"
1918- offset="1"
1919- id="stop10739" />
1920- </linearGradient>
1921- <linearGradient
1922- id="linearGradient10672">
1923- <stop
1924- id="stop10674"
1925- offset="0.0000000"
1926- style="stop-color:#cad0c6;stop-opacity:1.0000000;" />
1927- <stop
1928- style="stop-color:#eaece9;stop-opacity:1.0000000;"
1929- offset="0.5"
1930- id="stop10676" />
1931- <stop
1932- id="stop10678"
1933- offset="1.0000000"
1934- style="stop-color:#c5cbc0;stop-opacity:1.0000000;" />
1935- </linearGradient>
1936- <linearGradient
1937- inkscape:collect="always"
1938- xlink:href="#linearGradient2798"
1939- id="linearGradient7083"
1940- gradientUnits="userSpaceOnUse"
1941- gradientTransform="translate(-6,-3)"
1942- x1="13.5"
1943- y1="3.3125"
1944- x2="13.125"
1945- y2="1.75" />
1946- <linearGradient
1947- inkscape:collect="always"
1948- xlink:href="#linearGradient2828"
1949- id="linearGradient7081"
1950- gradientUnits="userSpaceOnUse"
1951- gradientTransform="translate(-6,-3)"
1952- x1="14.40625"
1953- y1="5.078125"
1954- x2="13.828125"
1955- y2="6.453125" />
1956- <linearGradient
1957- inkscape:collect="always"
1958- xlink:href="#linearGradient2810"
1959- id="linearGradient7063"
1960- gradientUnits="userSpaceOnUse"
1961- gradientTransform="translate(20,226)"
1962- x1="6.375"
1963- y1="2.75"
1964- x2="10.78125"
1965- y2="29.75" />
1966- <radialGradient
1967- inkscape:collect="always"
1968- xlink:href="#linearGradient2778"
1969- id="radialGradient7066"
1970- gradientUnits="userSpaceOnUse"
1971- gradientTransform="matrix(2.231851,0,0,2.456675,13.8408,217.98309)"
1972- cx="4.8879852"
1973- cy="5.044178"
1974- fx="4.8879852"
1975- fy="5.044178"
1976- r="11" />
1977- <linearGradient
1978- inkscape:collect="always"
1979- xlink:href="#linearGradient4816"
1980- id="linearGradient6997"
1981- gradientUnits="userSpaceOnUse"
1982- x1="13.267747"
1983- y1="7.7190704"
1984- x2="13.267747"
1985- y2="12.480761"
1986- gradientTransform="matrix(0.4605061,0,0,0.4517508,3.292189,4.5508334)" />
1987- <linearGradient
1988- inkscape:collect="always"
1989- xlink:href="#linearGradient3832"
1990- id="linearGradient6995"
1991- gradientUnits="userSpaceOnUse"
1992- gradientTransform="matrix(0.5139498,0,0,0.5905313,2.4340729,2.5224871)"
1993- x1="17.88068"
1994- y1="11.072588"
1995- x2="17.88068"
1996- y2="21.767578" />
1997- <linearGradient
1998- inkscape:collect="always"
1999- xlink:href="#linearGradient800"
2000- id="linearGradient12429"
2001- x1="26.011667"
2002- y1="210.95692"
2003- x2="38.991261"
2004- y2="210.95692"
2005- gradientUnits="userSpaceOnUse" />
2006- <linearGradient
2007- inkscape:collect="always"
2008- xlink:href="#linearGradient4816"
2009- id="linearGradient7711"
2010- gradientUnits="userSpaceOnUse"
2011- gradientTransform="matrix(0.4605061,0,0,0.4517508,3.292189,4.5508334)"
2012- x1="13.267747"
2013- y1="7.7190704"
2014- x2="13.267747"
2015- y2="12.480761" />
2016- <linearGradient
2017- inkscape:collect="always"
2018- xlink:href="#linearGradient3832"
2019- id="linearGradient7709"
2020- gradientUnits="userSpaceOnUse"
2021- gradientTransform="matrix(0.5139498,0,0,0.5905313,2.4340729,2.5224871)"
2022- x1="17.88068"
2023- y1="11.072588"
2024- x2="17.88068"
2025- y2="21.767578" />
2026- <linearGradient
2027- inkscape:collect="always"
2028- xlink:href="#linearGradient9845"
2029- id="linearGradient13031"
2030- gradientUnits="userSpaceOnUse"
2031- gradientTransform="matrix(0.1816493,0,0,0.1991284,149.14312,228.84216)"
2032- x1="10.907269"
2033- y1="25.002281"
2034- x2="30.875446"
2035- y2="36.127281" />
2036- <linearGradient
2037- inkscape:collect="always"
2038- xlink:href="#linearGradient11327"
2039- id="linearGradient13037"
2040- gradientUnits="userSpaceOnUse"
2041- gradientTransform="matrix(0.2225266,0,0,0.2670606,148.26654,226.61685)"
2042- x1="31.630468"
2043- y1="41.791817"
2044- x2="8.6713638"
2045- y2="25.793524" />
2046- <linearGradient
2047- inkscape:collect="always"
2048- xlink:href="#linearGradient2092"
2049- id="linearGradient13035"
2050- gradientUnits="userSpaceOnUse"
2051- gradientTransform="matrix(0.2225266,0,0,0.2670606,148.26654,226.3417)"
2052- x1="6.72682"
2053- y1="32.161697"
2054- x2="40.938126"
2055- y2="32.161697" />
2056- <linearGradient
2057- inkscape:collect="always"
2058- xlink:href="#linearGradient9845"
2059- id="linearGradient13071"
2060- gradientUnits="userSpaceOnUse"
2061- gradientTransform="matrix(0.1816493,0,0,0.1991284,147.14312,228.84216)"
2062- x1="10.907269"
2063- y1="25.002281"
2064- x2="30.875446"
2065- y2="36.127281" />
2066- <linearGradient
2067- inkscape:collect="always"
2068- xlink:href="#linearGradient11327"
2069- id="linearGradient13069"
2070- gradientUnits="userSpaceOnUse"
2071- gradientTransform="matrix(0.2225266,0,0,0.2670606,146.26654,226.61685)"
2072- x1="31.630468"
2073- y1="41.791817"
2074- x2="8.6713638"
2075- y2="25.793524" />
2076- <linearGradient
2077- inkscape:collect="always"
2078- xlink:href="#linearGradient2092"
2079- id="linearGradient13067"
2080- gradientUnits="userSpaceOnUse"
2081- gradientTransform="matrix(0.2225266,0,0,0.2670606,146.26654,226.3417)"
2082- x1="6.72682"
2083- y1="32.161697"
2084- x2="40.938126"
2085- y2="32.161697" />
2086- <linearGradient
2087- id="linearGradient2326"
2088- inkscape:collect="always">
2089- <stop
2090- id="stop2328"
2091- offset="0"
2092- style="stop-color:#ffffff;stop-opacity:1;" />
2093- <stop
2094- id="stop2330"
2095- offset="1"
2096- style="stop-color:#ffffff;stop-opacity:0;" />
2097- </linearGradient>
2098- <radialGradient
2099- inkscape:collect="always"
2100- xlink:href="#linearGradient2326"
2101- id="radialGradient11596"
2102- gradientUnits="userSpaceOnUse"
2103- gradientTransform="matrix(0.8890471,-1.4337516e-8,0,0.8194693,132.77797,121.35477)"
2104- cx="15.09403"
2105- cy="13.282721"
2106- fx="15.09403"
2107- fy="13.282721"
2108- r="10.16466" />
2109- <radialGradient
2110- inkscape:collect="always"
2111- xlink:href="#linearGradient2778"
2112- id="radialGradient12198"
2113- gradientUnits="userSpaceOnUse"
2114- gradientTransform="matrix(2.9758018,0,0,3.275568,20.621037,207.14417)"
2115- cx="4.8879852"
2116- cy="5.044178"
2117- fx="4.8879852"
2118- fy="5.044178"
2119- r="11" />
2120- <linearGradient
2121- inkscape:collect="always"
2122- id="linearGradient2187">
2123- <stop
2124- style="stop-color:#ffffff;stop-opacity:1;"
2125- offset="0"
2126- id="stop2189" />
2127- <stop
2128- style="stop-color:#ffffff;stop-opacity:0;"
2129- offset="1"
2130- id="stop2191" />
2131- </linearGradient>
2132- <linearGradient
2133- inkscape:collect="always"
2134- xlink:href="#linearGradient2187"
2135- id="linearGradient11599"
2136- gradientUnits="userSpaceOnUse"
2137- gradientTransform="matrix(0,-0.4174217,-0.4174217,0,158.32056,147.72824)"
2138- x1="17.060806"
2139- y1="11.39502"
2140- x2="10.07895"
2141- y2="14.530241" />
2142- <linearGradient
2143- id="linearGradient2316"
2144- inkscape:collect="always">
2145- <stop
2146- id="stop2318"
2147- offset="0"
2148- style="stop-color:#c4a000;stop-opacity:1;" />
2149- <stop
2150- id="stop2320"
2151- offset="1"
2152- style="stop-color:#c4a000;stop-opacity:0;" />
2153- </linearGradient>
2154- <linearGradient
2155- inkscape:collect="always"
2156- xlink:href="#linearGradient2316"
2157- id="linearGradient11604"
2158- gradientUnits="userSpaceOnUse"
2159- x1="16.489479"
2160- y1="40.512375"
2161- x2="8.1764917"
2162- y2="47.071392"
2163- gradientTransform="matrix(0.3561843,0,0,0.3393282,142.51711,127.32532)" />
2164- <linearGradient
2165- id="linearGradient2308"
2166- inkscape:collect="always">
2167- <stop
2168- id="stop2310"
2169- offset="0"
2170- style="stop-color:#edd400;stop-opacity:1;" />
2171- <stop
2172- id="stop2312"
2173- offset="1"
2174- style="stop-color:#edd400;stop-opacity:0;" />
2175- </linearGradient>
2176- <linearGradient
2177- inkscape:collect="always"
2178- xlink:href="#linearGradient2308"
2179- id="linearGradient11602"
2180- gradientUnits="userSpaceOnUse"
2181- x1="16.489479"
2182- y1="40.512375"
2183- x2="8.1764917"
2184- y2="47.071392"
2185- gradientTransform="matrix(0.3561843,0,0,0.3393282,142.51711,127.32532)" />
2186- <radialGradient
2187- r="17.171415"
2188- fy="1.5350308"
2189- fx="15.987216"
2190- cy="1.5350308"
2191- cx="15.987216"
2192- gradientTransform="matrix(0,-2.046729,-1.55761,0,44.11559,66.93275)"
2193- gradientUnits="userSpaceOnUse"
2194- id="radialGradient1471"
2195- xlink:href="#linearGradient8650"
2196- inkscape:collect="always" />
2197- <linearGradient
2198- id="linearGradient1442">
2199- <stop
2200- style="stop-color:#73d216"
2201- offset="0"
2202- id="stop1444" />
2203- <stop
2204- style="stop-color:#4e9a06"
2205- offset="1.0000000"
2206- id="stop1446" />
2207- </linearGradient>
2208- <radialGradient
2209- r="16.9562"
2210- fy="20.494493"
2211- fx="35.292667"
2212- cy="20.494493"
2213- cx="35.292667"
2214- gradientTransform="matrix(0,-0.843022,1.020168,0,0.606436,42.58614)"
2215- gradientUnits="userSpaceOnUse"
2216- id="radialGradient1469"
2217- xlink:href="#linearGradient1442"
2218- inkscape:collect="always" />
2219- <linearGradient
2220- inkscape:collect="always"
2221- xlink:href="#linearGradient2251"
2222- id="linearGradient12908"
2223- gradientUnits="userSpaceOnUse"
2224- gradientTransform="matrix(0.3363251,0,0,0.3393025,142.33397,150.26197)"
2225- x1="33.396004"
2226- y1="36.921333"
2227- x2="34.170048"
2228- y2="38.070381" />
2229- <linearGradient
2230- id="linearGradient2224">
2231- <stop
2232- id="stop2226"
2233- offset="0"
2234- style="stop-color:#7c7c7c;stop-opacity:1;" />
2235- <stop
2236- id="stop2228"
2237- offset="1"
2238- style="stop-color:#b8b8b8;stop-opacity:1;" />
2239- </linearGradient>
2240- <linearGradient
2241- inkscape:collect="always"
2242- xlink:href="#linearGradient2224"
2243- id="linearGradient12910"
2244- gradientUnits="userSpaceOnUse"
2245- gradientTransform="matrix(0.3363251,0,0,0.3393025,142.33397,150.26197)"
2246- x1="35.996582"
2247- y1="40.458221"
2248- x2="33.664921"
2249- y2="37.770721" />
2250- <linearGradient
2251- inkscape:collect="always"
2252- xlink:href="#linearGradient15234"
2253- id="linearGradient12922"
2254- gradientUnits="userSpaceOnUse"
2255- gradientTransform="matrix(0.3888889,0,0,0.4227031,141.47223,152.57775)"
2256- x1="25.404572"
2257- y1="3.8180194"
2258- x2="25.464211"
2259- y2="9.3233509" />
2260- <linearGradient
2261- inkscape:collect="always"
2262- xlink:href="#linearGradient2259"
2263- id="linearGradient12912"
2264- gradientUnits="userSpaceOnUse"
2265- gradientTransform="matrix(0.2441719,0,0,0.2360898,145.17764,154.83895)"
2266- x1="26.076092"
2267- y1="26.696676"
2268- x2="30.811172"
2269- y2="42.007351" />
2270- <linearGradient
2271- inkscape:collect="always"
2272- xlink:href="#linearGradient15218"
2273- id="linearGradient12905"
2274- gradientUnits="userSpaceOnUse"
2275- gradientTransform="matrix(0.3158146,0,0,0.2774678,143.40473,153.65275)"
2276- x1="22.308331"
2277- y1="18.99214"
2278- x2="35.785294"
2279- y2="39.498238" />
2280- <linearGradient
2281- inkscape:collect="always"
2282- xlink:href="#linearGradient14484"
2283- id="linearGradient12903"
2284- gradientUnits="userSpaceOnUse"
2285- gradientTransform="matrix(0.3330286,0,0,0.3410854,143.01325,151.96511)"
2286- x1="6.1071744"
2287- y1="10.45129"
2288- x2="33.857143"
2289- y2="37.87986" />
2290- <linearGradient
2291- inkscape:collect="always"
2292- xlink:href="#linearGradient8059"
2293- id="linearGradient11975"
2294- gradientUnits="userSpaceOnUse"
2295- gradientTransform="matrix(1.332493,0,0,2.661873,129.84234,-391.15912)"
2296- x1="21.884281"
2297- y1="219.0054"
2298- x2="16.37369"
2299- y2="214.44499" />
2300- <linearGradient
2301- id="linearGradient15234">
2302- <stop
2303- id="stop15236"
2304- offset="0.0000000"
2305- style="stop-color:#97978a;stop-opacity:1.0000000;" />
2306- <stop
2307- style="stop-color:#c2c2b9;stop-opacity:1.0000000;"
2308- offset="0.50000000"
2309- id="stop15242" />
2310- <stop
2311- id="stop15238"
2312- offset="1.0000000"
2313- style="stop-color:#7d7d6f;stop-opacity:1.0000000;" />
2314- </linearGradient>
2315- <linearGradient
2316- inkscape:collect="always"
2317- xlink:href="#linearGradient15234"
2318- id="linearGradient11973"
2319- gradientUnits="userSpaceOnUse"
2320- gradientTransform="matrix(0.3888889,0,0,0.4227031,141.47223,176.57775)"
2321- x1="25.404572"
2322- y1="3.8180194"
2323- x2="25.464211"
2324- y2="9.3233509" />
2325- <linearGradient
2326- id="linearGradient2259"
2327- inkscape:collect="always">
2328- <stop
2329- id="stop2261"
2330- offset="0"
2331- style="stop-color:#ffffff;stop-opacity:1;" />
2332- <stop
2333- id="stop2263"
2334- offset="1"
2335- style="stop-color:#ffffff;stop-opacity:0;" />
2336- </linearGradient>
2337- <linearGradient
2338- inkscape:collect="always"
2339- xlink:href="#linearGradient2259"
2340- id="linearGradient11971"
2341- gradientUnits="userSpaceOnUse"
2342- gradientTransform="matrix(0.2441719,0,0,0.2360898,145.17764,178.83895)"
2343- x1="26.076092"
2344- y1="26.696676"
2345- x2="30.811172"
2346- y2="42.007351" />
2347- <linearGradient
2348- id="linearGradient15218">
2349- <stop
2350- id="stop15220"
2351- offset="0.0000000"
2352- style="stop-color:#f0f0ef;stop-opacity:1.0000000;" />
2353- <stop
2354- style="stop-color:#e8e8e8;stop-opacity:1;"
2355- offset="0.59928656"
2356- id="stop2269" />
2357- <stop
2358- style="stop-color:#ffffff;stop-opacity:1;"
2359- offset="0.82758623"
2360- id="stop2267" />
2361- <stop
2362- id="stop15222"
2363- offset="1.0000000"
2364- style="stop-color:#d8d8d3;stop-opacity:1.0000000;" />
2365- </linearGradient>
2366- <linearGradient
2367- inkscape:collect="always"
2368- xlink:href="#linearGradient15218"
2369- id="linearGradient11969"
2370- gradientUnits="userSpaceOnUse"
2371- gradientTransform="matrix(0.3158146,0,0,0.2774678,143.40473,177.65275)"
2372- x1="22.308331"
2373- y1="18.99214"
2374- x2="35.785294"
2375- y2="39.498238" />
2376- <linearGradient
2377- id="linearGradient14484">
2378- <stop
2379- id="stop14486"
2380- offset="0.0000000"
2381- style="stop-color:#c68827;stop-opacity:1.0000000;" />
2382- <stop
2383- id="stop14488"
2384- offset="1.0000000"
2385- style="stop-color:#89601f;stop-opacity:1.0000000;" />
2386- </linearGradient>
2387- <linearGradient
2388- inkscape:collect="always"
2389- xlink:href="#linearGradient14484"
2390- id="linearGradient11967"
2391- gradientUnits="userSpaceOnUse"
2392- gradientTransform="matrix(0.3330286,0,0,0.3410854,143.01325,175.96511)"
2393- x1="6.1071744"
2394- y1="10.45129"
2395- x2="33.857143"
2396- y2="37.87986" />
2397- <linearGradient
2398- inkscape:collect="always"
2399- xlink:href="#linearGradient3480"
2400- id="linearGradient12604"
2401- gradientUnits="userSpaceOnUse"
2402- gradientTransform="matrix(-1,0,0,1,410.0303,203.00002)"
2403- x1="266.0303"
2404- y1="70.980736"
2405- x2="258.01514"
2406- y2="77.990372" />
2407- <linearGradient
2408- inkscape:collect="always"
2409- xlink:href="#linearGradient5704"
2410- id="linearGradient12602"
2411- gradientUnits="userSpaceOnUse"
2412- gradientTransform="matrix(-0.939394,0,0,1,394.3788,206.50002)"
2413- x1="256.89447"
2414- y1="73.65818"
2415- x2="250.66499"
2416- y2="80.141884" />
2417- <linearGradient
2418- inkscape:collect="always"
2419- xlink:href="#linearGradient3466"
2420- id="linearGradient12581"
2421- gradientUnits="userSpaceOnUse"
2422- x1="256.3262"
2423- y1="80.005852"
2424- x2="258.91818"
2425- y2="78.5" />
2426- <linearGradient
2427- inkscape:collect="always"
2428- xlink:href="#linearGradient3480"
2429- id="linearGradient12598"
2430- gradientUnits="userSpaceOnUse"
2431- gradientTransform="translate(-410.0303,203.00002)"
2432- x1="266.64761"
2433- y1="74.382683"
2434- x2="262.53848"
2435- y2="78.836052" />
2436- <linearGradient
2437- inkscape:collect="always"
2438- xlink:href="#linearGradient1610"
2439- id="linearGradient12596"
2440- gradientUnits="userSpaceOnUse"
2441- gradientTransform="translate(-409.5,203.50002)"
2442- x1="261.1073"
2443- y1="79.5"
2444- x2="269.54849"
2445- y2="79.5" />
2446- <linearGradient
2447- inkscape:collect="always"
2448- xlink:href="#linearGradient3480"
2449- id="linearGradient12593"
2450- gradientUnits="userSpaceOnUse"
2451- gradientTransform="matrix(-1,0,0,0.982332,410.0303,204.27221)"
2452- x1="261.03427"
2453- y1="69.714012"
2454- x2="256.5"
2455- y2="71.037422" />
2456- <radialGradient
2457- inkscape:collect="always"
2458- xlink:href="#linearGradient16754"
2459- id="radialGradient13104"
2460- gradientUnits="userSpaceOnUse"
2461- gradientTransform="matrix(0.8191553,0,0,1.0706844,115.82096,44.90855)"
2462- cx="48.158638"
2463- cy="245.53783"
2464- fx="48.158638"
2465- fy="245.53783"
2466- r="20.145752" />
2467- <linearGradient
2468- inkscape:collect="always"
2469- xlink:href="#linearGradient4816"
2470- id="linearGradient12617"
2471- gradientUnits="userSpaceOnUse"
2472- gradientTransform="matrix(0.8354865,0,0,0.7224155,284.90156,460.19647)"
2473- x1="13.267747"
2474- y1="7.7190704"
2475- x2="13.267747"
2476- y2="12.480761" />
2477- <linearGradient
2478- inkscape:collect="always"
2479- xlink:href="#linearGradient3832"
2480- id="linearGradient12615"
2481- gradientUnits="userSpaceOnUse"
2482- gradientTransform="matrix(0.9324483,0,0,0.9443458,283.3447,456.95285)"
2483- x1="17.88068"
2484- y1="11.072588"
2485- x2="17.88068"
2486- y2="21.767578" />
2487- <linearGradient
2488- inkscape:collect="always"
2489- xlink:href="#linearGradient4816"
2490- id="linearGradient12648"
2491- gradientUnits="userSpaceOnUse"
2492- gradientTransform="matrix(0.8354865,0,0,0.7224155,260.92838,460.19647)"
2493- x1="13.267747"
2494- y1="7.7190704"
2495- x2="13.267747"
2496- y2="12.480761" />
2497- <linearGradient
2498- inkscape:collect="always"
2499- xlink:href="#linearGradient3832"
2500- id="linearGradient12651"
2501- gradientUnits="userSpaceOnUse"
2502- gradientTransform="matrix(0.9324483,0,0,0.9443458,259.37152,456.95285)"
2503- x1="17.88068"
2504- y1="11.072588"
2505- x2="17.88068"
2506- y2="21.767578" />
2507- <linearGradient
2508- inkscape:collect="always"
2509- xlink:href="#linearGradient8331"
2510- id="linearGradient7542"
2511- gradientUnits="userSpaceOnUse"
2512- gradientTransform="matrix(1.294118,0,0,1.333333,1.705882,-151.2103)"
2513- x1="-16.000061"
2514- y1="423.45538"
2515- x2="1.0000585"
2516- y2="423.45538" />
2517- <linearGradient
2518- inkscape:collect="always"
2519- xlink:href="#linearGradient8331"
2520- id="linearGradient7552"
2521- gradientUnits="userSpaceOnUse"
2522- gradientTransform="matrix(1.294118,0,0,1.333333,1.705882,-151.2103)"
2523- x1="-16.000061"
2524- y1="423.45538"
2525- x2="1.0000585"
2526- y2="423.45538" />
2527- <linearGradient
2528- inkscape:collect="always"
2529- xlink:href="#linearGradient8357"
2530- id="linearGradient6651"
2531- gradientUnits="userSpaceOnUse"
2532- x1="-8.6875"
2533- y1="410.10919"
2534- x2="-8.6875"
2535- y2="417.38632"
2536- gradientTransform="matrix(0.825,0,0,0.8250133,-1.4000259,72.28586)" />
2537- <linearGradient
2538- inkscape:collect="always"
2539- xlink:href="#linearGradient11905"
2540- id="linearGradient12816"
2541- gradientUnits="userSpaceOnUse"
2542- x1="162.2023"
2543- y1="413.94385"
2544- x2="162.2023"
2545- y2="409.06992" />
2546- <linearGradient
2547- inkscape:collect="always"
2548- xlink:href="#linearGradient11913"
2549- id="linearGradient12814"
2550- gradientUnits="userSpaceOnUse"
2551- x1="162.09949"
2552- y1="414.01666"
2553- x2="162.09949"
2554- y2="409.02002" />
2555- <linearGradient
2556- inkscape:collect="always"
2557- xlink:href="#linearGradient11905"
2558- id="linearGradient11933"
2559- gradientUnits="userSpaceOnUse"
2560- x1="162.2023"
2561- y1="414.66092"
2562- x2="162.2023"
2563- y2="409.06992" />
2564- <linearGradient
2565- inkscape:collect="always"
2566- xlink:href="#linearGradient11913"
2567- id="linearGradient11931"
2568- gradientUnits="userSpaceOnUse"
2569- x1="162.09949"
2570- y1="414.01666"
2571- x2="162.09949"
2572- y2="409.02002" />
2573- <linearGradient
2574- inkscape:collect="always"
2575- xlink:href="#linearGradient8343"
2576- id="linearGradient17263"
2577- gradientUnits="userSpaceOnUse"
2578- gradientTransform="matrix(1.294118,0,0,1,1.705882,-10.5436)"
2579- x1="-16.000221"
2580- y1="423.58575"
2581- x2="0.58696824"
2582- y2="423.58575" />
2583- <linearGradient
2584- inkscape:collect="always"
2585- xlink:href="#linearGradient8331"
2586- id="linearGradient17261"
2587- gradientUnits="userSpaceOnUse"
2588- gradientTransform="matrix(1.294118,0,0,1.333333,1.705882,-151.2103)"
2589- x1="-16.000061"
2590- y1="423.45538"
2591- x2="1.0000585"
2592- y2="423.45538" />
2593- <linearGradient
2594- inkscape:collect="always"
2595- xlink:href="#linearGradient11905"
2596- id="linearGradient19952"
2597- gradientUnits="userSpaceOnUse"
2598- x1="162.2023"
2599- y1="409.81949"
2600- x2="162.2023"
2601- y2="409.06992"
2602- gradientTransform="translate(-0.7661448,1.143809)" />
2603- <linearGradient
2604- inkscape:collect="always"
2605- xlink:href="#linearGradient11913"
2606- id="linearGradient19950"
2607- gradientUnits="userSpaceOnUse"
2608- x1="162.09949"
2609- y1="409.61749"
2610- x2="162.09949"
2611- y2="409.02002"
2612- gradientTransform="matrix(1.1057945,0,0,1.1172822,-17.765464,-48.304282)" />
2613- <linearGradient
2614- inkscape:collect="always"
2615- xlink:href="#linearGradient8343"
2616- id="linearGradient7702"
2617- gradientUnits="userSpaceOnUse"
2618- gradientTransform="matrix(1.294118,0,0,1.3749958,1.705882,-170.87325)"
2619- x1="-16.000221"
2620- y1="423.58575"
2621- x2="0.58696824"
2622- y2="423.58575" />
2623- <linearGradient
2624- inkscape:collect="always"
2625- xlink:href="#linearGradient8331"
2626- id="linearGradient7700"
2627- gradientUnits="userSpaceOnUse"
2628- gradientTransform="matrix(1.294118,0,0,1.375001,1.705882,-170.87605)"
2629- x1="-16.000061"
2630- y1="423.45538"
2631- x2="1.0000585"
2632- y2="423.45538" />
2633- <linearGradient
2634- inkscape:collect="always"
2635- xlink:href="#linearGradient8343"
2636- id="linearGradient9454"
2637- gradientUnits="userSpaceOnUse"
2638- gradientTransform="matrix(1.294118,0,0,1.3750008,1.705879,-156.7502)"
2639- x1="-16.000221"
2640- y1="423.58575"
2641- x2="-11.467163"
2642- y2="423.58575" />
2643- <linearGradient
2644- inkscape:collect="always"
2645- xlink:href="#linearGradient8331"
2646- id="linearGradient9452"
2647- gradientUnits="userSpaceOnUse"
2648- gradientTransform="matrix(1.294118,0,0,1.3749997,1.705879,-156.75012)"
2649- x1="-16.000061"
2650- y1="423.45538"
2651- x2="-11.80596"
2652- y2="423.45538" />
2653- <linearGradient
2654- inkscape:collect="always"
2655- xlink:href="#linearGradient8343"
2656- id="linearGradient7642"
2657- gradientUnits="userSpaceOnUse"
2658- gradientTransform="matrix(1.294118,0,0,1.3750007,1.705879,-156.87557)"
2659- x1="-16.000221"
2660- y1="423.58575"
2661- x2="-11.467163"
2662- y2="423.58575" />
2663- <linearGradient
2664- inkscape:collect="always"
2665- xlink:href="#linearGradient8331"
2666- id="linearGradient7640"
2667- gradientUnits="userSpaceOnUse"
2668- gradientTransform="matrix(1.294118,0,0,1.3749994,1.705879,-156.87543)"
2669- x1="-16.000061"
2670- y1="423.45538"
2671- x2="-11.80596"
2672- y2="423.45538" />
2673- <linearGradient
2674- inkscape:collect="always"
2675- xlink:href="#linearGradient8343"
2676- id="linearGradient12917"
2677- gradientUnits="userSpaceOnUse"
2678- gradientTransform="matrix(1.4117651,0,0,1.4948457,2.5882778,-222.31451)"
2679- x1="-16.000221"
2680- y1="423.58575"
2681- x2="0.58696824"
2682- y2="423.58575" />
2683- <linearGradient
2684- inkscape:collect="always"
2685- xlink:href="#linearGradient8331"
2686- id="linearGradient12915"
2687- gradientUnits="userSpaceOnUse"
2688- gradientTransform="matrix(1.4117651,0,0,1.4999999,2.5882778,-224.50049)"
2689- x1="-16.000061"
2690- y1="423.45538"
2691- x2="1.0000585"
2692- y2="423.45538" />
2693- <linearGradient
2694- inkscape:collect="always"
2695- xlink:href="#linearGradient8343"
2696- id="linearGradient12913"
2697- gradientUnits="userSpaceOnUse"
2698- gradientTransform="matrix(1.411765,0,0,1.4997799,2.5882779,-209.90683)"
2699- x1="-16.000221"
2700- y1="423.58575"
2701- x2="-11.467163"
2702- y2="423.58575" />
2703- <linearGradient
2704- inkscape:collect="always"
2705- xlink:href="#linearGradient8331"
2706- id="linearGradient12911"
2707- gradientUnits="userSpaceOnUse"
2708- gradientTransform="matrix(1.411765,0,0,1.4999989,2.5882779,-209.99987)"
2709- x1="-16.000061"
2710- y1="423.45538"
2711- x2="-11.80596"
2712- y2="423.45538" />
2713- <linearGradient
2714- inkscape:collect="always"
2715- xlink:href="#linearGradient8343"
2716- id="linearGradient12909"
2717- gradientUnits="userSpaceOnUse"
2718- gradientTransform="matrix(1.411765,0,0,1.4999399,2.5881909,-209.47473)"
2719- x1="-16.000221"
2720- y1="423.58575"
2721- x2="-11.467163"
2722- y2="423.58575" />
2723- <linearGradient
2724- inkscape:collect="always"
2725- xlink:href="#linearGradient8331"
2726- id="linearGradient12907"
2727- gradientUnits="userSpaceOnUse"
2728- gradientTransform="matrix(1.411765,0,0,1.4999989,2.5881909,-209.50016)"
2729- x1="-16.000061"
2730- y1="423.45538"
2731- x2="-11.80596"
2732- y2="423.45538" />
2733- <linearGradient
2734- inkscape:collect="always"
2735- id="linearGradient5932">
2736- <stop
2737- style="stop-color:#aa8a00;stop-opacity:1"
2738- offset="0"
2739- id="stop5934" />
2740- <stop
2741- style="stop-color:#685400;stop-opacity:1"
2742- offset="1"
2743- id="stop5936" />
2744- </linearGradient>
2745- <linearGradient
2746- inkscape:collect="always"
2747- xlink:href="#linearGradient5932"
2748- id="linearGradient5938"
2749- x1="15.785038"
2750- y1="7.033917"
2751- x2="15.785038"
2752- y2="11.669251"
2753- gradientUnits="userSpaceOnUse" />
2754- <linearGradient
2755- inkscape:collect="always"
2756- id="linearGradient5904">
2757- <stop
2758- style="stop-color:#6b99ca;stop-opacity:1;"
2759- offset="0"
2760- id="stop5906" />
2761- <stop
2762- style="stop-color:#6b99ca;stop-opacity:0;"
2763- offset="1"
2764- id="stop5908" />
2765- </linearGradient>
2766- <linearGradient
2767- inkscape:collect="always"
2768- xlink:href="#linearGradient5904"
2769- id="linearGradient5910"
2770- x1="19.666338"
2771- y1="19.245584"
2772- x2="21.732088"
2773- y2="19.245584"
2774- gradientUnits="userSpaceOnUse"
2775- gradientTransform="translate(-4.958783,4.4652e-2)" />
2776- <linearGradient
2777- inkscape:collect="always"
2778- id="linearGradient5924">
2779- <stop
2780- style="stop-color:#edd400;stop-opacity:1;"
2781- offset="0"
2782- id="stop5926" />
2783- <stop
2784- style="stop-color:#fffbce;stop-opacity:1"
2785- offset="1"
2786- id="stop5928" />
2787- </linearGradient>
2788- <radialGradient
2789- inkscape:collect="always"
2790- xlink:href="#linearGradient5924"
2791- id="radialGradient5930"
2792- cx="20.539745"
2793- cy="14.45822"
2794- fx="20.539745"
2795- fy="14.45822"
2796- r="4.561861"
2797- gradientTransform="matrix(-2.1933856e-2,-1.4404292,1.1932891,-1.852436e-2,-1.2022609,43.884324)"
2798- gradientUnits="userSpaceOnUse" />
2799- <linearGradient
2800- inkscape:collect="always"
2801- id="linearGradient5398">
2802- <stop
2803- style="stop-color:#729fcf;stop-opacity:1;"
2804- offset="0"
2805- id="stop5400" />
2806- <stop
2807- style="stop-color:#729fcf;stop-opacity:0;"
2808- offset="1"
2809- id="stop5402" />
2810- </linearGradient>
2811- <linearGradient
2812- inkscape:collect="always"
2813- xlink:href="#linearGradient5398"
2814- id="linearGradient7413"
2815- gradientUnits="userSpaceOnUse"
2816- x1="-1.650571"
2817- y1="229.18515"
2818- x2="6.1053252"
2819- y2="250.19063" />
2820- <linearGradient
2821- inkscape:collect="always"
2822- id="linearGradient7659">
2823- <stop
2824- style="stop-color:#555753;stop-opacity:1;"
2825- offset="0"
2826- id="stop7661" />
2827- <stop
2828- style="stop-color:#555753;stop-opacity:0;"
2829- offset="1"
2830- id="stop7663" />
2831- </linearGradient>
2832- <radialGradient
2833- inkscape:collect="always"
2834- xlink:href="#linearGradient7659"
2835- id="radialGradient7411"
2836- gradientUnits="userSpaceOnUse"
2837- gradientTransform="matrix(0.973425,0,0,0.24,0.401944,173.945)"
2838- cx="15.125"
2839- cy="229.39583"
2840- fx="15.125"
2841- fy="229.39583"
2842- r="9.375" />
2843- <linearGradient
2844- inkscape:collect="always"
2845- id="linearGradient5388">
2846- <stop
2847- style="stop-color:#bcd2e9;stop-opacity:1"
2848- offset="0"
2849- id="stop5390" />
2850- <stop
2851- style="stop-color:#93b6db;stop-opacity:1"
2852- offset="1"
2853- id="stop5392" />
2854- </linearGradient>
2855- <radialGradient
2856- inkscape:collect="always"
2857- xlink:href="#linearGradient5388"
2858- id="radialGradient7409"
2859- gradientUnits="userSpaceOnUse"
2860- cx="2.96875"
2861- cy="240.416"
2862- fx="2.96875"
2863- fy="240.416"
2864- r="8.96875" />
2865- <linearGradient
2866- inkscape:collect="always"
2867- xlink:href="#linearGradient7629"
2868- id="linearGradient7407"
2869- gradientUnits="userSpaceOnUse"
2870- gradientTransform="translate(235.4321,-644.2117)"
2871- x1="-164.73708"
2872- y1="182.09869"
2873- x2="-162.92517"
2874- y2="182.10544" />
2875- <linearGradient
2876- id="linearGradient5631">
2877- <stop
2878- style="stop-color:white;stop-opacity:1;"
2879- offset="0"
2880- id="stop5633" />
2881- <stop
2882- style="stop-color:#729fcf;stop-opacity:1;"
2883- offset="1"
2884- id="stop5635" />
2885- </linearGradient>
2886- <linearGradient
2887- inkscape:collect="always"
2888- id="linearGradient2874">
2889- <stop
2890- style="stop-color:white;stop-opacity:1;"
2891- offset="0"
2892- id="stop2876" />
2893- <stop
2894- style="stop-color:white;stop-opacity:0;"
2895- offset="1"
2896- id="stop2878" />
2897- </linearGradient>
2898- <linearGradient
2899- inkscape:collect="always"
2900- id="linearGradient2788">
2901- <stop
2902- style="stop-color:#888a85;stop-opacity:1;"
2903- offset="0"
2904- id="stop2790" />
2905- <stop
2906- style="stop-color:#888a85;stop-opacity:0;"
2907- offset="1"
2908- id="stop2792" />
2909- </linearGradient>
2910- <linearGradient
2911- id="linearGradient2798">
2912- <stop
2913- id="stop2800"
2914- offset="0"
2915- style="stop-color:white;stop-opacity:1" />
2916- <stop
2917- id="stop2802"
2918- offset="1"
2919- style="stop-color:#d3d7cf;stop-opacity:0;" />
2920- </linearGradient>
2921- <linearGradient
2922- inkscape:collect="always"
2923- id="linearGradient2828">
2924- <stop
2925- style="stop-color:black;stop-opacity:1;"
2926- offset="0"
2927- id="stop2830" />
2928- <stop
2929- style="stop-color:black;stop-opacity:0;"
2930- offset="1"
2931- id="stop2832" />
2932- </linearGradient>
2933- <linearGradient
2934- inkscape:collect="always"
2935- id="linearGradient2810">
2936- <stop
2937- style="stop-color:white;stop-opacity:1;"
2938- offset="0"
2939- id="stop2812" />
2940- <stop
2941- style="stop-color:white;stop-opacity:0;"
2942- offset="1"
2943- id="stop2814" />
2944- </linearGradient>
2945- <linearGradient
2946- id="linearGradient2778">
2947- <stop
2948- style="stop-color:#eeeeec;stop-opacity:1"
2949- offset="0"
2950- id="stop2780" />
2951- <stop
2952- style="stop-color:#d3d7cf;stop-opacity:1"
2953- offset="1"
2954- id="stop2782" />
2955- </linearGradient>
2956- <linearGradient
2957- inkscape:collect="always"
2958- xlink:href="#linearGradient7443"
2959- id="linearGradient2098"
2960- gradientUnits="userSpaceOnUse"
2961- x1="25.058096"
2962- y1="47.027729"
2963- x2="25.058096"
2964- y2="39.999443"
2965- gradientTransform="matrix(0.987013,0,0,1.2000019,0.3116856,-96.40009)" />
2966- <linearGradient
2967- inkscape:collect="always"
2968- id="linearGradient3688">
2969- <stop
2970- style="stop-color:black;stop-opacity:1;"
2971- offset="0"
2972- id="stop3690" />
2973- <stop
2974- style="stop-color:black;stop-opacity:0;"
2975- offset="1"
2976- id="stop3692" />
2977- </linearGradient>
2978- <linearGradient
2979- id="linearGradient4816">
2980- <stop
2981- style="stop-color:#204a87;stop-opacity:1.0000000"
2982- offset="0.0000000"
2983- id="stop4818" />
2984- <stop
2985- style="stop-color:#204a87;stop-opacity:0.0000000"
2986- offset="1.0000000"
2987- id="stop4820" />
2988- </linearGradient>
2989- <linearGradient
2990- id="linearGradient16754">
2991- <stop
2992- style="stop-color:white;stop-opacity:1"
2993- offset="0.0000000"
2994- id="stop16756" />
2995- <stop
2996- style="stop-color:#cdcdcd;stop-opacity:1"
2997- offset="1.0000000"
2998- id="stop16758" />
2999- </linearGradient>
3000- <linearGradient
3001- inkscape:collect="always"
3002- id="linearGradient8163">
3003- <stop
3004- style="stop-color:#b2cbe5;stop-opacity:1"
3005- offset="0"
3006- id="stop8165" />
3007- <stop
3008- style="stop-color:#7fa9d5;stop-opacity:1"
3009- offset="1"
3010- id="stop8167" />
3011- </linearGradient>
3012- <linearGradient
3013- id="linearGradient11327">
3014- <stop
3015- style="stop-color:#7d6400;stop-opacity:1;"
3016- offset="0"
3017- id="stop11329" />
3018- <stop
3019- style="stop-color:#be9700;stop-opacity:1.0000000;"
3020- offset="1.0000000"
3021- id="stop11331" />
3022- </linearGradient>
3023- <linearGradient
3024- id="linearGradient9845">
3025- <stop
3026- style="stop-color:#ffffff;stop-opacity:1;"
3027- offset="0"
3028- id="stop9847" />
3029- <stop
3030- style="stop-color:#ffffff;stop-opacity:0.49484536;"
3031- offset="1.0000000"
3032- id="stop9849" />
3033- </linearGradient>
3034- <linearGradient
3035- id="linearGradient2092">
3036- <stop
3037- id="stop2094"
3038- offset="0"
3039- style="stop-color:#fff7b0;stop-opacity:1;" />
3040- <stop
3041- style="stop-color:#ffec41;stop-opacity:1.0000000;"
3042- offset="0.20999999"
3043- id="stop2098" />
3044- <stop
3045- id="stop43205"
3046- offset="0.83999997"
3047- style="stop-color:#e2cc00;stop-opacity:1;" />
3048- <stop
3049- id="stop2100"
3050- offset="1"
3051- style="stop-color:#c3af00;stop-opacity:1;" />
3052- </linearGradient>
3053- <linearGradient
3054- inkscape:collect="always"
3055- id="linearGradient12071">
3056- <stop
3057- style="stop-color:#ffffff;stop-opacity:1;"
3058- offset="0"
3059- id="stop12073" />
3060- <stop
3061- style="stop-color:#ffffff;stop-opacity:0;"
3062- offset="1"
3063- id="stop12075" />
3064- </linearGradient>
3065- <linearGradient
3066- inkscape:collect="always"
3067- id="linearGradient8710">
3068- <stop
3069- style="stop-color:#a40000;stop-opacity:1;"
3070- offset="0"
3071- id="stop8712" />
3072- <stop
3073- style="stop-color:#a40000;stop-opacity:0;"
3074- offset="1"
3075- id="stop8714" />
3076- </linearGradient>
3077- <linearGradient
3078- inkscape:collect="always"
3079- id="linearGradient8718">
3080- <stop
3081- style="stop-color:#f57a7a;stop-opacity:1;"
3082- offset="0"
3083- id="stop8720" />
3084- <stop
3085- style="stop-color:#f57a7a;stop-opacity:0;"
3086- offset="1"
3087- id="stop8722" />
3088- </linearGradient>
3089- <linearGradient
3090- inkscape:collect="always"
3091- id="linearGradient8487">
3092- <stop
3093- style="stop-color:#ef2929;stop-opacity:1;"
3094- offset="0"
3095- id="stop8489" />
3096- <stop
3097- style="stop-color:#c00;stop-opacity:1"
3098- offset="1"
3099- id="stop8491" />
3100- </linearGradient>
3101- <linearGradient
3102- inkscape:collect="always"
3103- id="linearGradient8506">
3104- <stop
3105- style="stop-color:#a40000;stop-opacity:1;"
3106- offset="0"
3107- id="stop8508" />
3108- <stop
3109- style="stop-color:#a40000;stop-opacity:0;"
3110- offset="1"
3111- id="stop8510" />
3112- </linearGradient>
3113- <linearGradient
3114- inkscape:collect="always"
3115- id="linearGradient7553">
3116- <stop
3117- style="stop-color:white;stop-opacity:1;"
3118- offset="0"
3119- id="stop7555" />
3120- <stop
3121- style="stop-color:white;stop-opacity:0;"
3122- offset="1"
3123- id="stop7557" />
3124- </linearGradient>
3125- <linearGradient
3126- id="linearGradient8545"
3127- inkscape:collect="always">
3128- <stop
3129- id="stop8547"
3130- offset="0"
3131- style="stop-color:white;stop-opacity:0.67487687" />
3132- <stop
3133- id="stop8549"
3134- offset="1"
3135- style="stop-color:white;stop-opacity:0;" />
3136- </linearGradient>
3137- <linearGradient
3138- inkscape:collect="always"
3139- id="linearGradient8527">
3140- <stop
3141- style="stop-color:#204a87;stop-opacity:1;"
3142- offset="0"
3143- id="stop8529" />
3144- <stop
3145- style="stop-color:#204a87;stop-opacity:0;"
3146- offset="1"
3147- id="stop8531" />
3148- </linearGradient>
3149- <linearGradient
3150- inkscape:collect="always"
3151- id="linearGradient8535">
3152- <stop
3153- style="stop-color:#3465a4;stop-opacity:1;"
3154- offset="0"
3155- id="stop8537" />
3156- <stop
3157- style="stop-color:#3465a4;stop-opacity:0;"
3158- offset="1"
3159- id="stop8539" />
3160- </linearGradient>
3161- <linearGradient
3162- inkscape:collect="always"
3163- id="linearGradient7569">
3164- <stop
3165- style="stop-color:#fff8c6;stop-opacity:1"
3166- offset="0"
3167- id="stop7571" />
3168- <stop
3169- style="stop-color:#edd400;stop-opacity:1"
3170- offset="1"
3171- id="stop7573" />
3172- </linearGradient>
3173- <linearGradient
3174- inkscape:collect="always"
3175- id="linearGradient7584">
3176- <stop
3177- style="stop-color:black;stop-opacity:1;"
3178- offset="0"
3179- id="stop7586" />
3180- <stop
3181- style="stop-color:black;stop-opacity:0;"
3182- offset="1"
3183- id="stop7588" />
3184- </linearGradient>
3185- <linearGradient
3186- id="linearGradient9320">
3187- <stop
3188- style="stop-color:#fef088;stop-opacity:1.0000000;"
3189- offset="0.0000000"
3190- id="stop9322" />
3191- <stop
3192- id="stop9324"
3193- offset="0.50000000"
3194- style="stop-color:#fde63a;stop-opacity:1.0000000;" />
3195- <stop
3196- style="stop-color:#dac203;stop-opacity:1.0000000;"
3197- offset="1.0000000"
3198- id="stop9326" />
3199- </linearGradient>
3200- <linearGradient
3201- inkscape:collect="always"
3202- id="linearGradient8796">
3203- <stop
3204- style="stop-color:white;stop-opacity:1;"
3205- offset="0"
3206- id="stop8798" />
3207- <stop
3208- style="stop-color:white;stop-opacity:0;"
3209- offset="1"
3210- id="stop8800" />
3211- </linearGradient>
3212- <linearGradient
3213- id="linearGradient11647">
3214- <stop
3215- id="stop11649"
3216- offset="0"
3217- style="stop-color:#c17d10;stop-opacity:1;" />
3218- <stop
3219- id="stop11651"
3220- offset="1.0000000"
3221- style="stop-color:#9b650c;stop-opacity:1.0000000;" />
3222- </linearGradient>
3223- <linearGradient
3224- id="linearGradient8650">
3225- <stop
3226- style="stop-color:#ffffff;stop-opacity:1;"
3227- offset="0"
3228- id="stop8652" />
3229- <stop
3230- style="stop-color:#ffffff;stop-opacity:0;"
3231- offset="1"
3232- id="stop8654" />
3233- </linearGradient>
3234- <linearGradient
3235- id="linearGradient2591">
3236- <stop
3237- style="stop-color:#73d216"
3238- offset="0"
3239- id="stop2593" />
3240- <stop
3241- style="stop-color:#4e9a06"
3242- offset="1.0000000"
3243- id="stop2595" />
3244- </linearGradient>
3245- <linearGradient
3246- inkscape:collect="always"
3247- id="linearGradient11905">
3248- <stop
3249- style="stop-color:#babdb6;stop-opacity:1;"
3250- offset="0"
3251- id="stop11907" />
3252- <stop
3253- style="stop-color:#babdb6;stop-opacity:0;"
3254- offset="1"
3255- id="stop11909" />
3256- </linearGradient>
3257- <linearGradient
3258- inkscape:collect="always"
3259- id="linearGradient11913">
3260- <stop
3261- style="stop-color:#555753;stop-opacity:1;"
3262- offset="0"
3263- id="stop11915" />
3264- <stop
3265- style="stop-color:#555753;stop-opacity:0;"
3266- offset="1"
3267- id="stop11917" />
3268- </linearGradient>
3269- <linearGradient
3270- inkscape:collect="always"
3271- id="linearGradient8357">
3272- <stop
3273- style="stop-color:white;stop-opacity:1;"
3274- offset="0"
3275- id="stop8359" />
3276- <stop
3277- style="stop-color:white;stop-opacity:0;"
3278- offset="1"
3279- id="stop8361" />
3280- </linearGradient>
3281- <linearGradient
3282- inkscape:collect="always"
3283- id="linearGradient7430">
3284- <stop
3285- style="stop-color:#d3d7cf;stop-opacity:1;"
3286- offset="0"
3287- id="stop7432" />
3288- <stop
3289- style="stop-color:#fafbfa;stop-opacity:1"
3290- offset="1"
3291- id="stop7434" />
3292- </linearGradient>
3293- <linearGradient
3294- id="linearGradient8343">
3295- <stop
3296- style="stop-color:#babdb6;stop-opacity:0;"
3297- offset="0"
3298- id="stop8345" />
3299- <stop
3300- id="stop8351"
3301- offset="0.2"
3302- style="stop-color:#babdb6;stop-opacity:1;" />
3303- <stop
3304- style="stop-color:#babdb6;stop-opacity:1;"
3305- offset="0.84444445"
3306- id="stop8353" />
3307- <stop
3308- style="stop-color:#babdb6;stop-opacity:0;"
3309- offset="1"
3310- id="stop8347" />
3311- </linearGradient>
3312- <linearGradient
3313- id="linearGradient8331">
3314- <stop
3315- style="stop-color:#555753;stop-opacity:0;"
3316- offset="0"
3317- id="stop8333" />
3318- <stop
3319- id="stop8339"
3320- offset="0.12418549"
3321- style="stop-color:#555753;stop-opacity:1;" />
3322- <stop
3323- style="stop-color:#555753;stop-opacity:1;"
3324- offset="0.86629128"
3325- id="stop8341" />
3326- <stop
3327- style="stop-color:#555753;stop-opacity:0;"
3328- offset="1"
3329- id="stop8335" />
3330- </linearGradient>
3331- <linearGradient
3332- inkscape:collect="always"
3333- id="linearGradient11817">
3334- <stop
3335- style="stop-color:black;stop-opacity:1;"
3336- offset="0"
3337- id="stop11819" />
3338- <stop
3339- style="stop-color:black;stop-opacity:0;"
3340- offset="1"
3341- id="stop11821" />
3342- </linearGradient>
3343- <linearGradient
3344- id="linearGradient8271"
3345- inkscape:collect="always">
3346- <stop
3347- id="stop8273"
3348- offset="0"
3349- style="stop-color:#eee;stop-opacity:1" />
3350- <stop
3351- id="stop8275"
3352- offset="1"
3353- style="stop-color:#888a85;stop-opacity:1" />
3354- </linearGradient>
3355- <linearGradient
3356- id="linearGradient2994">
3357- <stop
3358- id="stop2996"
3359- offset="0"
3360- style="stop-color:#000000;stop-opacity:1;" />
3361- <stop
3362- id="stop2998"
3363- offset="1"
3364- style="stop-color:#c9c9c9;stop-opacity:1;" />
3365- </linearGradient>
3366- <linearGradient
3367- inkscape:collect="always"
3368- xlink:href="#linearGradient2994"
3369- id="linearGradient8306"
3370- gradientUnits="userSpaceOnUse"
3371- gradientTransform="matrix(0.671524,-0.180531,0.318096,0.720791,-22.43351,-4.3859e-2)"
3372- x1="25.71875"
3373- y1="31.046875"
3374- x2="25.514589"
3375- y2="30.703125" />
3376- <linearGradient
3377- id="linearGradient2984"
3378- inkscape:collect="always">
3379- <stop
3380- id="stop2986"
3381- offset="0"
3382- style="stop-color:#e7e2b8;stop-opacity:1;" />
3383- <stop
3384- id="stop2988"
3385- offset="1"
3386- style="stop-color:#e7e2b8;stop-opacity:0;" />
3387- </linearGradient>
3388- <radialGradient
3389- inkscape:collect="always"
3390- xlink:href="#linearGradient2984"
3391- id="radialGradient8304"
3392- gradientUnits="userSpaceOnUse"
3393- gradientTransform="matrix(1.963246,-0.527794,0.645645,1.463001,-68.76703,-10.17169)"
3394- cx="29.053354"
3395- cy="27.640751"
3396- fx="29.053354"
3397- fy="27.640751"
3398- r="3.2408545" />
3399- <linearGradient
3400- id="linearGradient2974">
3401- <stop
3402- id="stop2976"
3403- offset="0"
3404- style="stop-color:#c1c1c1;stop-opacity:1;" />
3405- <stop
3406- id="stop2978"
3407- offset="1"
3408- style="stop-color:#acacac;stop-opacity:1;" />
3409- </linearGradient>
3410- <linearGradient
3411- inkscape:collect="always"
3412- xlink:href="#linearGradient2974"
3413- id="linearGradient8302"
3414- gradientUnits="userSpaceOnUse"
3415- gradientTransform="matrix(0.671524,-0.180531,0.318096,0.720791,-21.77422,-0.735191)"
3416- x1="46"
3417- y1="19.8125"
3418- x2="47.6875"
3419- y2="22.625" />
3420- <linearGradient
3421- id="linearGradient2966">
3422- <stop
3423- id="stop2968"
3424- offset="0"
3425- style="stop-color:#ffd1d1;stop-opacity:1;" />
3426- <stop
3427- style="stop-color:#ff1d1d;stop-opacity:1;"
3428- offset="0.5"
3429- id="stop3006" />
3430- <stop
3431- id="stop2970"
3432- offset="1"
3433- style="stop-color:#6f0000;stop-opacity:1;" />
3434- </linearGradient>
3435- <linearGradient
3436- inkscape:collect="always"
3437- xlink:href="#linearGradient2966"
3438- id="linearGradient8300"
3439- gradientUnits="userSpaceOnUse"
3440- gradientTransform="matrix(0.671524,-0.180531,0.318096,0.720791,-21.32231,-1.235235)"
3441- x1="48.628307"
3442- y1="17.415211"
3443- x2="50.988335"
3444- y2="22.250591" />
3445- <linearGradient
3446- id="linearGradient3897"
3447- inkscape:collect="always">
3448- <stop
3449- id="stop3899"
3450- offset="0"
3451- style="stop-color:#2e3436;stop-opacity:1;" />
3452- <stop
3453- id="stop3901"
3454- offset="1"
3455- style="stop-color:#2e3436;stop-opacity:0;" />
3456- </linearGradient>
3457- <radialGradient
3458- inkscape:collect="always"
3459- xlink:href="#linearGradient3897"
3460- id="radialGradient8298"
3461- gradientUnits="userSpaceOnUse"
3462- gradientTransform="matrix(1.021276,-4.728053e-3,1.050666e-3,0.226948,-0.359172,15.42575)"
3463- cx="15.892858"
3464- cy="20.014528"
3465- fx="15.892858"
3466- fy="20.014528"
3467- r="7.5535712" />
3468- <linearGradient
3469- id="linearGradient2834">
3470- <stop
3471- id="stop2836"
3472- offset="0"
3473- style="stop-color:#ffffff;stop-opacity:1;" />
3474- <stop
3475- id="stop2838"
3476- offset="1.0000000"
3477- style="stop-color:#b3b3b3;stop-opacity:0.0000000;" />
3478- </linearGradient>
3479- <linearGradient
3480- inkscape:collect="always"
3481- xlink:href="#linearGradient2834"
3482- id="linearGradient6336"
3483- gradientUnits="userSpaceOnUse"
3484- gradientTransform="matrix(0.498259,0,0,0.466519,-0.799974,-0.839637)"
3485- x1="19.944447"
3486- y1="16.527262"
3487- x2="24.133829"
3488- y2="19.642126" />
3489- <linearGradient
3490- id="linearGradient3682">
3491- <stop
3492- id="stop3684"
3493- offset="0.0000000"
3494- style="stop-color:#1f1f1f;stop-opacity:1.0000000;" />
3495- <stop
3496- id="stop3686"
3497- offset="1.0000000"
3498- style="stop-color:#5c5c5c;stop-opacity:1.0000000;" />
3499- </linearGradient>
3500- <linearGradient
3501- inkscape:collect="always"
3502- xlink:href="#linearGradient3682"
3503- id="linearGradient6334"
3504- gradientUnits="userSpaceOnUse"
3505- gradientTransform="matrix(0.498259,0,0,0.4886,-0.799974,-1.273557)"
3506- x1="23.30562"
3507- y1="24.843527"
3508- x2="14.388516"
3509- y2="9.5902243" />
3510- <linearGradient
3511- id="linearGradient3558"
3512- inkscape:collect="always">
3513- <stop
3514- id="stop3560"
3515- offset="0"
3516- style="stop-color:#000000;stop-opacity:1;" />
3517- <stop
3518- id="stop3562"
3519- offset="1"
3520- style="stop-color:#000000;stop-opacity:0;" />
3521- </linearGradient>
3522- <radialGradient
3523- inkscape:collect="always"
3524- xlink:href="#linearGradient3558"
3525- id="radialGradient6332"
3526- gradientUnits="userSpaceOnUse"
3527- gradientTransform="matrix(1,0,0,0.651376,0,10.75754)"
3528- cx="22.571428"
3529- cy="30.857143"
3530- fx="22.571428"
3531- fy="30.857143"
3532- r="15.571428" />
3533- <linearGradient
3534- inkscape:collect="always"
3535- xlink:href="#linearGradient11528"
3536- id="linearGradient15925"
3537- gradientUnits="userSpaceOnUse"
3538- x1="69.1875"
3539- y1="234.1875"
3540- x2="76.0625"
3541- y2="252.02116"
3542- gradientTransform="matrix(1.1292967,0,0,0.9959643,-10.085138,1.9847293)" />
3543- <linearGradient
3544- inkscape:collect="always"
3545- xlink:href="#linearGradient8896"
3546- id="linearGradient15923"
3547- gradientUnits="userSpaceOnUse"
3548- x1="72.678635"
3549- y1="244.4375"
3550- x2="87"
3551- y2="244.4375"
3552- gradientTransform="matrix(1.1227256,0,0,0.9968231,-9.642765,1.7751551)" />
3553- <radialGradient
3554- inkscape:collect="always"
3555- xlink:href="#linearGradient14157"
3556- id="radialGradient15921"
3557- gradientUnits="userSpaceOnUse"
3558- gradientTransform="matrix(1,0,0,0.182573,0,206.088)"
3559- cx="77.118835"
3560- cy="252.11775"
3561- fx="77.118835"
3562- fy="252.11775"
3563- r="10.650796" />
3564- <linearGradient
3565- id="linearGradient8059">
3566- <stop
3567- id="stop8061"
3568- offset="0.0000000"
3569- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
3570- <stop
3571- id="stop8063"
3572- offset="1.0000000"
3573- style="stop-color:#9d9d9d;stop-opacity:1" />
3574- </linearGradient>
3575- <radialGradient
3576- inkscape:collect="always"
3577- xlink:href="#linearGradient8059"
3578- id="radialGradient8086"
3579- gradientUnits="userSpaceOnUse"
3580- cx="24.660349"
3581- cy="21.21833"
3582- fx="24.660349"
3583- fy="21.21833"
3584- r="4.3006992" />
3585- <linearGradient
3586- inkscape:collect="always"
3587- xlink:href="#linearGradient14411"
3588- id="linearGradient8084"
3589- gradientUnits="userSpaceOnUse"
3590- gradientTransform="matrix(0.373813,-0.222635,0.215821,0.385616,-33.16474,24.90046)"
3591- x1="80.82019"
3592- y1="27.165281"
3593- x2="104.74687"
3594- y2="27.652287"
3595- spreadMethod="reflect" />
3596- <linearGradient
3597- id="linearGradient5737">
3598- <stop
3599- id="stop5739"
3600- offset="0.0000000"
3601- style="stop-color:#c0d5f0;stop-opacity:1.0000000;" />
3602- <stop
3603- id="stop5741"
3604- offset="1.0000000"
3605- style="stop-color:#77a4df;stop-opacity:1.0000000;" />
3606- </linearGradient>
3607- <linearGradient
3608- inkscape:collect="always"
3609- xlink:href="#linearGradient5737"
3610- id="linearGradient8082"
3611- gradientUnits="userSpaceOnUse"
3612- gradientTransform="matrix(0.438799,0,0,0.438799,0.565693,-0.279792)"
3613- x1="2"
3614- y1="27.182352"
3615- x2="8.9176159"
3616- y2="27.182352" />
3617- <linearGradient
3618- id="linearGradient16370">
3619- <stop
3620- id="stop16372"
3621- offset="0.0000000"
3622- style="stop-color:#50534b;stop-opacity:0.46391752;" />
3623- <stop
3624- id="stop16374"
3625- offset="1"
3626- style="stop-color:#50534b;stop-opacity:0;" />
3627- </linearGradient>
3628- <radialGradient
3629- inkscape:collect="always"
3630- xlink:href="#linearGradient16370"
3631- id="radialGradient8080"
3632- gradientUnits="userSpaceOnUse"
3633- gradientTransform="matrix(1,0,0,0.2,0,36.5)"
3634- cx="27.125"
3635- cy="45.625"
3636- fx="27.125"
3637- fy="45.625"
3638- r="22.5" />
3639- <linearGradient
3640- inkscape:collect="always"
3641- id="linearGradient7249">
3642- <stop
3643- style="stop-color:white;stop-opacity:1;"
3644- offset="0"
3645- id="stop7251" />
3646- <stop
3647- style="stop-color:white;stop-opacity:0;"
3648- offset="1"
3649- id="stop7253" />
3650- </linearGradient>
3651- <linearGradient
3652- inkscape:collect="always"
3653- xlink:href="#linearGradient7249"
3654- id="linearGradient7319"
3655- gradientUnits="userSpaceOnUse"
3656- gradientTransform="matrix(0.707107,0.707107,-0.707107,0.707107,141.2585,86.08787)"
3657- x1="-37.5"
3658- y1="199.34375"
3659- x2="-37.5"
3660- y2="204.34619" />
3661- <linearGradient
3662- inkscape:collect="always"
3663- id="linearGradient7295">
3664- <stop
3665- style="stop-color:black;stop-opacity:1;"
3666- offset="0"
3667- id="stop7297" />
3668- <stop
3669- style="stop-color:black;stop-opacity:0;"
3670- offset="1"
3671- id="stop7299" />
3672- </linearGradient>
3673- <radialGradient
3674- inkscape:collect="always"
3675- xlink:href="#linearGradient7295"
3676- id="radialGradient7317"
3677- gradientUnits="userSpaceOnUse"
3678- gradientTransform="matrix(0.400886,0.839675,-0.909148,0.53153,175.855,133.5929)"
3679- cx="-39.332813"
3680- cy="216.23209"
3681- fx="-38.732441"
3682- fy="221.93825"
3683- r="6.5407376" />
3684- <linearGradient
3685- id="linearGradient2340">
3686- <stop
3687- id="stop2342"
3688- offset="0"
3689- style="stop-color:#000000;stop-opacity:1;" />
3690- <stop
3691- id="stop2344"
3692- offset="1"
3693- style="stop-color:#ffffff;stop-opacity:1;" />
3694- </linearGradient>
3695- <linearGradient
3696- y2="18.803572"
3697- x2="1.7368622"
3698- y1="19.071428"
3699- x1="2.2089286"
3700- gradientTransform="matrix(2.246119,0,0,2.17914,-1.270794,-0.429923)"
3701- gradientUnits="userSpaceOnUse"
3702- id="linearGradient2302"
3703- xlink:href="#linearGradient2340"
3704- inkscape:collect="always" />
3705- <linearGradient
3706- id="linearGradient2272">
3707- <stop
3708- style="stop-color:#8f5902;stop-opacity:1;"
3709- offset="0"
3710- id="stop2282" />
3711- <stop
3712- id="stop2276"
3713- offset="1"
3714- style="stop-color:#8f5902;stop-opacity:0;" />
3715- </linearGradient>
3716- <linearGradient
3717- gradientTransform="matrix(1.029063,0,0,1.02215,-0.774165,0.641734)"
3718- y2="24.718227"
3719- x2="16.752289"
3720- y1="20.172541"
3721- x1="25.518404"
3722- gradientUnits="userSpaceOnUse"
3723- id="linearGradient2306"
3724- xlink:href="#linearGradient2272"
3725- inkscape:collect="always" />
3726- <linearGradient
3727- y2="8.5892859"
3728- x2="13.903571"
3729- y1="-4.8465223"
3730- x1="-3.1085217"
3731- gradientTransform="matrix(2.126475,0,0,2.132848,4.837027e-2,0.112692)"
3732- gradientUnits="userSpaceOnUse"
3733- id="linearGradient2311"
3734- xlink:href="#linearGradient2251"
3735- inkscape:collect="always" />
3736- <linearGradient
3737- id="linearGradient2251">
3738- <stop
3739- id="stop2253"
3740- offset="0"
3741- style="stop-color:#c7581d;stop-opacity:1;" />
3742- <stop
3743- id="stop2255"
3744- offset="1"
3745- style="stop-color:#faedd9;stop-opacity:1;" />
3746- </linearGradient>
3747- <linearGradient
3748- y2="9.75"
3749- x2="21.85"
3750- y1="9.75"
3751- x1="2.6500001"
3752- gradientTransform="matrix(2.126475,0,0,2.132848,4.837027e-2,0.112692)"
3753- gradientUnits="userSpaceOnUse"
3754- id="linearGradient2309"
3755- xlink:href="#linearGradient2251"
3756- inkscape:collect="always" />
3757- <linearGradient
3758- id="linearGradient3089">
3759- <stop
3760- id="stop3091"
3761- offset="0"
3762- style="stop-color:#000000;stop-opacity:0.28880867;" />
3763- <stop
3764- id="stop3093"
3765- offset="1.0000000"
3766- style="stop-color:#000000;stop-opacity:0.0000000;" />
3767- </linearGradient>
3768- <radialGradient
3769- r="22.589285"
3770- fy="40.321404"
3771- fx="14.359877"
3772- cy="40.321404"
3773- cx="14.359877"
3774- gradientTransform="matrix(1.371241,0,0,0.324111,-4.377575,27.25282)"
3775- gradientUnits="userSpaceOnUse"
3776- id="radialGradient2291"
3777- xlink:href="#linearGradient3089"
3778- inkscape:collect="always" />
3779- <linearGradient
3780- inkscape:collect="always"
3781- id="linearGradient9117">
3782- <stop
3783- style="stop-color:white;stop-opacity:1;"
3784- offset="0"
3785- id="stop9119" />
3786- <stop
3787- style="stop-color:white;stop-opacity:0;"
3788- offset="1"
3789- id="stop9121" />
3790- </linearGradient>
3791- <linearGradient
3792- inkscape:collect="always"
3793- id="linearGradient7629">
3794- <stop
3795- style="stop-color:#555753;stop-opacity:1"
3796- offset="0"
3797- id="stop7631" />
3798- <stop
3799- style="stop-color:#babdb6;stop-opacity:1"
3800- offset="1"
3801- id="stop7633" />
3802- </linearGradient>
3803- <linearGradient
3804- id="linearGradient3832">
3805- <stop
3806- id="stop3834"
3807- offset="0"
3808- style="stop-color:#ffffff;stop-opacity:1;" />
3809- <stop
3810- id="stop3836"
3811- offset="1"
3812- style="stop-color:#e0e0e0;stop-opacity:1;" />
3813- </linearGradient>
3814- <linearGradient
3815- id="linearGradient130">
3816- <stop
3817- style="stop-color:#ffffff;stop-opacity:1.0000000;"
3818- offset="0.0000000"
3819- id="stop131" />
3820- <stop
3821- style="stop-color:#e95072;stop-opacity:1.0000000;"
3822- offset="1.0000000"
3823- id="stop132" />
3824- </linearGradient>
3825- <linearGradient
3826- id="linearGradient715">
3827- <stop
3828- style="stop-color:#ff4f76;stop-opacity:1.0000000;"
3829- offset="0"
3830- id="stop719" />
3831- <stop
3832- style="stop-color:#ee7f93;stop-opacity:1.0000000;"
3833- offset="0.86810666"
3834- id="stop720" />
3835- <stop
3836- style="stop-color:#ddb0b0;stop-opacity:0.0000000;"
3837- offset="1.0000000"
3838- id="stop717" />
3839- </linearGradient>
3840- <linearGradient
3841- inkscape:collect="always"
3842- id="linearGradient473">
3843- <stop
3844- style="stop-color:#6b2b2b;stop-opacity:1;"
3845- offset="0"
3846- id="stop474" />
3847- <stop
3848- style="stop-color:#6b2b2b;stop-opacity:0;"
3849- offset="1"
3850- id="stop475" />
3851- </linearGradient>
3852- <radialGradient
3853- inkscape:collect="always"
3854- xlink:href="#linearGradient13302"
3855- id="radialGradient78"
3856- gradientUnits="userSpaceOnUse"
3857- gradientTransform="matrix(0.6365372,5.388467e-2,-3.9206389e-2,0.4631432,60.230887,248.2756)"
3858- cx="314.72086"
3859- cy="362.26859"
3860- fx="314.72086"
3861- fy="362.26859"
3862- r="12.509617" />
3863- <linearGradient
3864- inkscape:collect="always"
3865- id="linearGradient7442">
3866- <stop
3867- style="stop-color:white;stop-opacity:1;"
3868- offset="0"
3869- id="stop7444" />
3870- <stop
3871- style="stop-color:white;stop-opacity:0;"
3872- offset="1"
3873- id="stop7446" />
3874- </linearGradient>
3875- <linearGradient
3876- id="linearGradient7431">
3877- <stop
3878- style="stop-color:#e6e6e6;stop-opacity:0"
3879- offset="0"
3880- id="stop7433" />
3881- <stop
3882- id="stop7435"
3883- offset="0.10416666"
3884- style="stop-color:white;stop-opacity:1;" />
3885- <stop
3886- style="stop-color:white;stop-opacity:1;"
3887- offset="0.6267361"
3888- id="stop7438" />
3889- <stop
3890- style="stop-color:white;stop-opacity:0;"
3891- offset="1"
3892- id="stop7440" />
3893- </linearGradient>
3894- <linearGradient
3895- inkscape:collect="always"
3896- xlink:href="#linearGradient7431"
3897- id="linearGradient7972"
3898- gradientUnits="userSpaceOnUse"
3899- x1="191.80257"
3900- y1="403.65472"
3901- x2="212.50331"
3902- y2="403.65472"
3903- gradientTransform="matrix(1,0,0,0.333336,0,269.4743)" />
3904- <linearGradient
3905- id="linearGradient7443">
3906- <stop
3907- id="stop7445"
3908- offset="0"
3909- style="stop-color:#888a85;stop-opacity:0;" />
3910- <stop
3911- style="stop-color:#888a85;stop-opacity:1;"
3912- offset="0.10416666"
3913- id="stop7447" />
3914- <stop
3915- id="stop7449"
3916- offset="0.7013889"
3917- style="stop-color:#888a85;stop-opacity:1;" />
3918- <stop
3919- id="stop7451"
3920- offset="1"
3921- style="stop-color:#888a85;stop-opacity:0;" />
3922- </linearGradient>
3923- <linearGradient
3924- inkscape:collect="always"
3925- xlink:href="#linearGradient7443"
3926- id="linearGradient7964"
3927- x1="190.87645"
3928- y1="403.65472"
3929- x2="209.8775"
3930- y2="403.65472"
3931- gradientUnits="userSpaceOnUse" />
3932- <radialGradient
3933- inkscape:collect="always"
3934- xlink:href="#linearGradient8773"
3935- id="radialGradient10565"
3936- gradientUnits="userSpaceOnUse"
3937- gradientTransform="matrix(1,0,0,0.234973,0,18.5877)"
3938- cx="-57.850174"
3939- cy="24.296782"
3940- fx="-58.028885"
3941- fy="27.01318"
3942- r="8.087534" />
3943- <linearGradient
3944- inkscape:collect="always"
3945- id="linearGradient10554">
3946- <stop
3947- style="stop-color:white;stop-opacity:1;"
3948- offset="0"
3949- id="stop10556" />
3950- <stop
3951- style="stop-color:white;stop-opacity:0;"
3952- offset="1"
3953- id="stop10558" />
3954- </linearGradient>
3955- <linearGradient
3956- inkscape:collect="always"
3957- xlink:href="#linearGradient10554"
3958- id="linearGradient7949"
3959- gradientUnits="userSpaceOnUse"
3960- gradientTransform="translate(-11.21634,-21.61956)"
3961- x1="240.9062"
3962- y1="425.18195"
3963- x2="248.28683"
3964- y2="437.96558" />
3965- <radialGradient
3966- inkscape:collect="always"
3967- xlink:href="#linearGradient124"
3968- id="radialGradient81"
3969- gradientUnits="userSpaceOnUse"
3970- gradientTransform="matrix(0.833516,0,0,1.199737,2.4375,-23.45032)"
3971- cx="307.7507"
3972- cy="361.47824"
3973- fx="307.7507"
3974- fy="361.47824"
3975- r="12.509617" />
3976- <linearGradient
3977- inkscape:collect="always"
3978- xlink:href="#linearGradient124"
3979- id="linearGradient80"
3980- gradientUnits="userSpaceOnUse"
3981- gradientTransform="matrix(2,0,0,0.5,-20.55174,-11.55357)"
3982- x1="253.75711"
3983- y1="-129.52815"
3984- x2="252.00447"
3985- y2="-135.47408" />
3986- <linearGradient
3987- inkscape:collect="always"
3988- id="linearGradient8773">
3989- <stop
3990- style="stop-color:black;stop-opacity:0.3137255"
3991- offset="0"
3992- id="stop8775" />
3993- <stop
3994- style="stop-color:black;stop-opacity:0;"
3995- offset="1"
3996- id="stop8777" />
3997- </linearGradient>
3998- <radialGradient
3999- inkscape:collect="always"
4000- xlink:href="#linearGradient8773"
4001- id="radialGradient8779"
4002- cx="-57.850174"
4003- cy="24.296782"
4004- fx="-58.028885"
4005- fy="27.01318"
4006- r="8.087534"
4007- gradientTransform="matrix(1,0,0,0.234973,0,18.5877)"
4008- gradientUnits="userSpaceOnUse" />
4009- <linearGradient
4010- inkscape:collect="always"
4011- id="linearGradient11528">
4012- <stop
4013- style="stop-color:white;stop-opacity:1;"
4014- offset="0"
4015- id="stop11530" />
4016- <stop
4017- style="stop-color:white;stop-opacity:0.2360515"
4018- offset="1"
4019- id="stop11532" />
4020- </linearGradient>
4021- <linearGradient
4022- inkscape:collect="always"
4023- id="linearGradient8896">
4024- <stop
4025- style="stop-color:#5e605c;stop-opacity:1"
4026- offset="0"
4027- id="stop8898" />
4028- <stop
4029- style="stop-color:#ddd;stop-opacity:1"
4030- offset="1"
4031- id="stop8900" />
4032- </linearGradient>
4033- <linearGradient
4034- inkscape:collect="always"
4035- id="linearGradient14157">
4036- <stop
4037- style="stop-color:black;stop-opacity:1;"
4038- offset="0"
4039- id="stop14159" />
4040- <stop
4041- style="stop-color:black;stop-opacity:0;"
4042- offset="1"
4043- id="stop14161" />
4044- </linearGradient>
4045- <linearGradient
4046- id="linearGradient124">
4047- <stop
4048- style="stop-color:#ffffff;stop-opacity:1.0000000;"
4049- offset="0.0000000"
4050- id="stop125" />
4051- <stop
4052- style="stop-color:silver;stop-opacity:1;"
4053- offset="1"
4054- id="stop126" />
4055- </linearGradient>
4056- <linearGradient
4057- id="linearGradient6581">
4058- <stop
4059- id="stop6583"
4060- offset="0"
4061- style="stop-color:#eeeeec;stop-opacity:1;" />
4062- <stop
4063- id="stop6585"
4064- offset="1.0000000"
4065- style="stop-color:#e0e0de;stop-opacity:1.0000000;" />
4066- </linearGradient>
4067- <linearGradient
4068- id="linearGradient2195">
4069- <stop
4070- id="stop2197"
4071- offset="0"
4072- style="stop-color:#000000;stop-opacity:1;" />
4073- <stop
4074- id="stop2199"
4075- offset="1"
4076- style="stop-color:#000000;stop-opacity:0;" />
4077- </linearGradient>
4078- <linearGradient
4079- inkscape:collect="always"
4080- id="linearGradient7318">
4081- <stop
4082- style="stop-color:#d3d7cf;stop-opacity:1"
4083- offset="0"
4084- id="stop7320" />
4085- <stop
4086- style="stop-color:#eff0ee;stop-opacity:1"
4087- offset="1"
4088- id="stop7322" />
4089- </linearGradient>
4090- <linearGradient
4091- id="linearGradient4832"
4092- inkscape:collect="always">
4093- <stop
4094- id="stop4834"
4095- offset="0"
4096- style="stop-color:#8686bf;stop-opacity:1" />
4097- <stop
4098- id="stop4836"
4099- offset="1"
4100- style="stop-color:#9191b6;stop-opacity:0" />
4101- </linearGradient>
4102- <linearGradient
4103- id="linearGradient4826"
4104- inkscape:collect="always">
4105- <stop
4106- id="stop4828"
4107- offset="0"
4108- style="stop-color:#d7d7ff;stop-opacity:1" />
4109- <stop
4110- id="stop4830"
4111- offset="1"
4112- style="stop-color:#d7d7ff;stop-opacity:0" />
4113- </linearGradient>
4114- <linearGradient
4115- id="linearGradient4820"
4116- inkscape:collect="always">
4117- <stop
4118- id="stop4822"
4119- offset="0"
4120- style="stop-color:#393986;stop-opacity:1" />
4121- <stop
4122- id="stop4824"
4123- offset="1"
4124- style="stop-color:#53536c;stop-opacity:0" />
4125- </linearGradient>
4126- <linearGradient
4127- id="linearGradient7944">
4128- <stop
4129- style="stop-color:#3daff6;stop-opacity:1;"
4130- offset="0"
4131- id="stop7946" />
4132- <stop
4133- style="stop-color:#000000;stop-opacity:0;"
4134- offset="1"
4135- id="stop7948" />
4136- </linearGradient>
4137- <linearGradient
4138- inkscape:collect="always"
4139- xlink:href="#linearGradient5376"
4140- id="linearGradient5775"
4141- x1="508.50006"
4142- y1="154.99997"
4143- x2="508.50006"
4144- y2="162.32036"
4145- gradientUnits="userSpaceOnUse"
4146- gradientTransform="translate(0,1.7e-6)" />
4147- <linearGradient
4148- id="linearGradient5376">
4149- <stop
4150- id="stop5378"
4151- offset="0"
4152- style="stop-color:#3daff6;stop-opacity:1;" />
4153- <stop
4154- id="stop5380"
4155- offset="1"
4156- style="stop-color:#000000;stop-opacity:0;" />
4157- </linearGradient>
4158- <linearGradient
4159- inkscape:collect="always"
4160- xlink:href="#linearGradient7944"
4161- id="linearGradient4394"
4162- gradientUnits="userSpaceOnUse"
4163- gradientTransform="translate(71.737908,-613.10672)"
4164- x1="436.76215"
4165- y1="768.10669"
4166- x2="436.76215"
4167- y2="775.42706" />
4168- <linearGradient
4169- id="linearGradient4798">
4170- <stop
4171- style="stop-color:#ffffff;stop-opacity:1.0000000;"
4172- offset="0"
4173- id="stop4802" />
4174- <stop
4175- style="stop-color:#5eba69;stop-opacity:1;"
4176- offset="1"
4177- id="stop4800" />
4178- </linearGradient>
4179- <linearGradient
4180- id="linearGradient4935">
4181- <stop
4182- style="stop-color:#5eba69;stop-opacity:1;"
4183- offset="0"
4184- id="stop4939" />
4185- <stop
4186- style="stop-color:#ffffff;stop-opacity:1.0000000;"
4187- offset="1"
4188- id="stop4937" />
4189- </linearGradient>
4190- <linearGradient
4191- inkscape:collect="always"
4192- xlink:href="#linearGradient700"
4193- id="linearGradient3352"
4194- gradientUnits="userSpaceOnUse"
4195- x1="-30.512699"
4196- y1="-1.11146"
4197- x2="-16.435499"
4198- y2="-0.473952"
4199- gradientTransform="matrix(-0.42698,-0.87201,0.87201,-0.42698,11.5331,-7.26288)" />
4200- <linearGradient
4201- inkscape:collect="always"
4202- id="linearGradient4721">
4203- <stop
4204- style="stop-color:#f57900;stop-opacity:1"
4205- offset="0"
4206- id="stop4723" />
4207- <stop
4208- style="stop-color:#73d216;stop-opacity:0;"
4209- offset="1"
4210- id="stop4725" />
4211- </linearGradient>
4212- <linearGradient
4213- id="linearGradient4709"
4214- inkscape:collect="always">
4215- <stop
4216- id="stop4711"
4217- offset="0"
4218- style="stop-color:#75507b;stop-opacity:1" />
4219- <stop
4220- id="stop4713"
4221- offset="1"
4222- style="stop-color:#73d216;stop-opacity:0;" />
4223- </linearGradient>
4224- <linearGradient
4225- inkscape:collect="always"
4226- id="linearGradient4696">
4227- <stop
4228- style="stop-color:#73d216;stop-opacity:1;"
4229- offset="0"
4230- id="stop4698" />
4231- <stop
4232- style="stop-color:#73d216;stop-opacity:0;"
4233- offset="1"
4234- id="stop4701" />
4235- </linearGradient>
4236- <marker
4237- inkscape:stockid="Arrow1Send"
4238- orient="auto"
4239- refY="0"
4240- refX="0"
4241- id="Arrow1Send"
4242- style="overflow:visible">
4243- <path
4244- id="path4834"
4245- d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
4246- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
4247- transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
4248- </marker>
4249- <linearGradient
4250- inkscape:collect="always"
4251- xlink:href="#linearGradient3480"
4252- id="linearGradient4618"
4253- x1="693.40259"
4254- y1="306.07037"
4255- x2="696.86676"
4256- y2="311.81979"
4257- gradientUnits="userSpaceOnUse"
4258- gradientTransform="translate(-0.999998,-0.937496)" />
4259- <linearGradient
4260- inkscape:collect="always"
4261- xlink:href="#linearGradient3480"
4262- id="linearGradient4610"
4263- x1="693.27899"
4264- y1="303.70065"
4265- x2="698.26788"
4266- y2="311.07904"
4267- gradientUnits="userSpaceOnUse"
4268- gradientTransform="translate(-0.999998,-0.937496)" />
4269- <linearGradient
4270- inkscape:collect="always"
4271- xlink:href="#linearGradient5704"
4272- id="linearGradient4649"
4273- x1="695.0141"
4274- y1="304.22421"
4275- x2="698.72687"
4276- y2="309.73383"
4277- gradientUnits="userSpaceOnUse" />
4278- <linearGradient
4279- inkscape:collect="always"
4280- xlink:href="#linearGradient16137"
4281- id="linearGradient4849"
4282- gradientUnits="userSpaceOnUse"
4283- gradientTransform="matrix(1.007189,0,0,0.98662,-0.460106,9.713565)"
4284- x1="54.463463"
4285- y1="715.91296"
4286- x2="60.495438"
4287- y2="729.99908" />
4288- <linearGradient
4289- inkscape:collect="always"
4290- xlink:href="#linearGradient16137"
4291- id="linearGradient4859"
4292- gradientUnits="userSpaceOnUse"
4293- gradientTransform="matrix(1.007189,0,0,0.98662,-0.460106,9.713565)"
4294- x1="64.23671"
4295- y1="729.3028"
4296- x2="54.737839"
4297- y2="719.93756" />
4298- <linearGradient
4299- inkscape:collect="always"
4300- xlink:href="#linearGradient3480"
4301- id="linearGradient4811"
4302- x1="84.629395"
4303- y1="125.31617"
4304- x2="91.620605"
4305- y2="125.31617"
4306- gradientUnits="userSpaceOnUse" />
4307- <linearGradient
4308- inkscape:collect="always"
4309- xlink:href="#linearGradient3480"
4310- id="linearGradient4819"
4311- x1="171.28307"
4312- y1="159"
4313- x2="186.71693"
4314- y2="159"
4315- gradientUnits="userSpaceOnUse" />
4316- <linearGradient
4317- id="linearGradient12513">
4318- <stop
4319- style="stop-color:black;stop-opacity:1;"
4320- offset="0"
4321- id="stop12515" />
4322- <stop
4323- style="stop-color:#2a2a2a;stop-opacity:1;"
4324- offset="1"
4325- id="stop12517" />
4326- </linearGradient>
4327- <linearGradient
4328- inkscape:collect="always"
4329- xlink:href="#linearGradient12513"
4330- id="linearGradient12519"
4331- x1="64.608963"
4332- y1="715.75946"
4333- x2="61.995983"
4334- y2="712.16724"
4335- gradientUnits="userSpaceOnUse" />
4336- <linearGradient
4337- inkscape:collect="always"
4338- xlink:href="#linearGradient2485"
4339- id="linearGradient12592"
4340- gradientUnits="userSpaceOnUse"
4341- gradientTransform="matrix(1,0,0,-1,0.453976,493.3688)"
4342- x1="712.98596"
4343- y1="249.98053"
4344- x2="717.60321"
4345- y2="244.67865" />
4346- <linearGradient
4347- inkscape:collect="always"
4348- xlink:href="#linearGradient2485"
4349- id="linearGradient12555"
4350- gradientUnits="userSpaceOnUse"
4351- gradientTransform="matrix(1.016495,0,0,-1,-11.43409,493.3688)"
4352- x1="713.50842"
4353- y1="248.91472"
4354- x2="717.6405"
4355- y2="240.87608" />
4356- <linearGradient
4357- inkscape:collect="always"
4358- xlink:href="#linearGradient5740"
4359- id="linearGradient4803"
4360- gradientUnits="userSpaceOnUse"
4361- gradientTransform="matrix(1.074481,0,0,0.516867,-52.4747,82.48618)"
4362- x1="15.741557"
4363- y1="213.87196"
4364- x2="17.946985"
4365- y2="219.67934" />
4366- <linearGradient
4367- inkscape:collect="always"
4368- xlink:href="#linearGradient5740"
4369- id="linearGradient4801"
4370- gradientUnits="userSpaceOnUse"
4371- gradientTransform="matrix(1.427647,0,0,0.862651,-58.98949,7.443876)"
4372- x1="20.216892"
4373- y1="219.93051"
4374- x2="18.823143"
4375- y2="214.65544" />
4376- <linearGradient
4377- inkscape:collect="always"
4378- xlink:href="#linearGradient5704"
4379- id="linearGradient4799"
4380- gradientUnits="userSpaceOnUse"
4381- gradientTransform="matrix(1.275458,0,0,0.617087,-51.07375,65.67334)"
4382- x1="10.041666"
4383- y1="203.36577"
4384- x2="14.010839"
4385- y2="209.27737" />
4386- <linearGradient
4387- inkscape:collect="always"
4388- xlink:href="#linearGradient5740"
4389- id="linearGradient4797"
4390- gradientUnits="userSpaceOnUse"
4391- x1="184.75294"
4392- y1="-35.833363"
4393- x2="187.89511"
4394- y2="-32.760307" />
4395- <linearGradient
4396- inkscape:collect="always"
4397- xlink:href="#linearGradient5740"
4398- id="linearGradient4795"
4399- gradientUnits="userSpaceOnUse"
4400- x1="191.40715"
4401- y1="-32.760307"
4402- x2="185.51312"
4403- y2="-34.577286" />
4404- <linearGradient
4405- inkscape:collect="always"
4406- xlink:href="#linearGradient5704"
4407- id="linearGradient4793"
4408- gradientUnits="userSpaceOnUse"
4409- gradientTransform="matrix(0.761633,0,0,0.73832,-7.689547,50.44869)"
4410- x1="-36.601665"
4411- y1="182.98401"
4412- x2="-31.903492"
4413- y2="190.66341" />
4414- <linearGradient
4415- inkscape:collect="always"
4416- xlink:href="#linearGradient5740"
4417- id="linearGradient4791"
4418- gradientUnits="userSpaceOnUse"
4419- gradientTransform="matrix(2.404063,0,0,1.001693,-138.4499,-25.31992)"
4420- x1="16.04734"
4421- y1="213.21643"
4422- x2="17.310535"
4423- y2="217.82336" />
4424- <linearGradient
4425- inkscape:collect="always"
4426- xlink:href="#linearGradient5740"
4427- id="linearGradient4789"
4428- gradientUnits="userSpaceOnUse"
4429- gradientTransform="matrix(3.19424,0,0,1.671823,-153.0264,-170.7525)"
4430- x1="18.846861"
4431- y1="218.97954"
4432- x2="17.752359"
4433- y2="215.20985" />
4434- <linearGradient
4435- inkscape:collect="always"
4436- xlink:href="#linearGradient5704"
4437- id="linearGradient4787"
4438- gradientUnits="userSpaceOnUse"
4439- gradientTransform="matrix(2.635962,0,0,1.002646,-132.1469,-17.5056)"
4440- x1="10.041666"
4441- y1="203.36577"
4442- x2="14.010839"
4443- y2="209.27737" />
4444- <linearGradient
4445- id="linearGradient4698">
4446- <stop
4447- id="stop4700"
4448- offset="0"
4449- style="stop-color:#a2d3ff;stop-opacity:1" />
4450- <stop
4451- id="stop4702"
4452- offset="1.0000000"
4453- style="stop-color:#004c91;stop-opacity:1" />
4454- </linearGradient>
4455- <linearGradient
4456- id="linearGradient4528">
4457- <stop
4458- style="stop-color:#ffffff;stop-opacity:1.0000000;"
4459- offset="0.0000000"
4460- id="stop4530" />
4461- <stop
4462- id="stop4534"
4463- offset="0.37719297"
4464- style="stop-color:#d4e0ef;stop-opacity:1;" />
4465- <stop
4466- style="stop-color:#98b6d3;stop-opacity:1.0000000;"
4467- offset="1.0000000"
4468- id="stop4532" />
4469- </linearGradient>
4470- <linearGradient
4471- id="linearGradient6679">
4472- <stop
4473- style="stop-color:#ffeb74;stop-opacity:1;"
4474- offset="0"
4475- id="stop6681" />
4476- <stop
4477- style="stop-color:#ffffff;stop-opacity:1;"
4478- offset="1"
4479- id="stop6683" />
4480- </linearGradient>
4481- <linearGradient
4482- id="linearGradient5899">
4483- <stop
4484- style="stop-color:#ffffff;stop-opacity:1;"
4485- offset="0"
4486- id="stop5901" />
4487- <stop
4488- style="stop-color:#ffacb5;stop-opacity:1;"
4489- offset="1"
4490- id="stop5903" />
4491- </linearGradient>
4492- <linearGradient
4493- id="linearGradient5858">
4494- <stop
4495- style="stop-color:#ffa01e"
4496- offset="0.0000000"
4497- id="stop5860" />
4498- <stop
4499- style="stop-color:#000000;stop-opacity:1.0000000;"
4500- offset="1.0000000"
4501- id="stop5862" />
4502- </linearGradient>
4503- <linearGradient
4504- id="linearGradient5740">
4505- <stop
4506- id="stop5742"
4507- offset="0.0000000"
4508- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
4509- <stop
4510- id="stop5744"
4511- offset="1.0000000"
4512- style="stop-color:#98b6d3;stop-opacity:1.0000000;" />
4513- </linearGradient>
4514- <linearGradient
4515- id="linearGradient5734">
4516- <stop
4517- id="stop5736"
4518- offset="0"
4519- style="stop-color:#8ab3df;stop-opacity:1;" />
4520- <stop
4521- id="stop5738"
4522- offset="1"
4523- style="stop-color:#ffffff" />
4524- </linearGradient>
4525- <linearGradient
4526- id="linearGradient5704">
4527- <stop
4528- style="stop-color:#5a5a5a;stop-opacity:1;"
4529- offset="0"
4530- id="stop5706" />
4531- <stop
4532- style="stop-color:#000000;stop-opacity:1.0000000;"
4533- offset="1.0000000"
4534- id="stop5708" />
4535- </linearGradient>
4536- <linearGradient
4537- id="linearGradient16137">
4538- <stop
4539- style="stop-color:#db5d00;stop-opacity:1.0000000;"
4540- offset="0.0000000"
4541- id="stop16139" />
4542- <stop
4543- style="stop-color:#ffd749;stop-opacity:1.0000000;"
4544- offset="0.35076979"
4545- id="stop16141" />
4546- <stop
4547- style="stop-color:#fff593;stop-opacity:1.0000000;"
4548- offset="0.59668732"
4549- id="stop16143" />
4550- <stop
4551- style="stop-color:#fff7c2;stop-opacity:1.0000000;"
4552- offset="0.78382427"
4553- id="stop16145" />
4554- <stop
4555- style="stop-color:#ffffff;stop-opacity:1.0000000;"
4556- offset="1.0000000"
4557- id="stop16147" />
4558- </linearGradient>
4559- <linearGradient
4560- inkscape:collect="always"
4561- id="linearGradient14614">
4562- <stop
4563- style="stop-color:#c80000"
4564- offset="0"
4565- id="stop14616" />
4566- <stop
4567- style="stop-color:#bf0000;stop-opacity:0;"
4568- offset="1"
4569- id="stop14618" />
4570- </linearGradient>
4571- <linearGradient
4572- id="linearGradient5204">
4573- <stop
4574- style="stop-color:#4e6e90;stop-opacity:1;"
4575- offset="0"
4576- id="stop5206" />
4577- <stop
4578- style="stop-color:#000000;stop-opacity:1.0000000;"
4579- offset="1.0000000"
4580- id="stop5208" />
4581- </linearGradient>
4582- <linearGradient
4583- inkscape:collect="always"
4584- id="linearGradient4343">
4585- <stop
4586- style="stop-color:#fff9f9;stop-opacity:1;"
4587- offset="0"
4588- id="stop4345" />
4589- <stop
4590- style="stop-color:#fff9f9;stop-opacity:0;"
4591- offset="1"
4592- id="stop4347" />
4593- </linearGradient>
4594- <linearGradient
4595- id="linearGradient6684">
4596- <stop
4597- style="stop-color:#ffbf00;stop-opacity:1.0000000;"
4598- offset="0.0000000"
4599- id="stop6686" />
4600- <stop
4601- style="stop-color:#ffffff;stop-opacity:1.0000000;"
4602- offset="1.0000000"
4603- id="stop6688" />
4604- </linearGradient>
4605- <linearGradient
4606- id="linearGradient6524">
4607- <stop
4608- style="stop-color:#ffffff;stop-opacity:1.0000000"
4609- offset="0.0000000"
4610- id="stop6526" />
4611- <stop
4612- style="stop-color:#e2e1e1;stop-opacity:1.0000000;"
4613- offset="1.0000000"
4614- id="stop6528" />
4615- </linearGradient>
4616- <linearGradient
4617- inkscape:collect="always"
4618- id="linearGradient5663">
4619- <stop
4620- style="stop-color:#000000;stop-opacity:1;"
4621- offset="0"
4622- id="stop5665" />
4623- <stop
4624- style="stop-color:#000000;stop-opacity:0;"
4625- offset="1"
4626- id="stop5667" />
4627- </linearGradient>
4628- <linearGradient
4629- id="linearGradient10585">
4630- <stop
4631- style="stop-color:#d7d7d7;stop-opacity:1.0000000;"
4632- offset="0.0000000"
4633- id="stop10587" />
4634- <stop
4635- style="stop-color:#000000;stop-opacity:1.0000000;"
4636- offset="1.0000000"
4637- id="stop10595" />
4638- </linearGradient>
4639- <linearGradient
4640- id="linearGradient3480">
4641- <stop
4642- id="stop3482"
4643- offset="0.0000000"
4644- style="stop-color:#646464;stop-opacity:1.0000000;" />
4645- <stop
4646- id="stop3484"
4647- offset="1.0000000"
4648- style="stop-color:#000000;stop-opacity:1.0000000;" />
4649- </linearGradient>
4650- <linearGradient
4651- id="linearGradient3466">
4652- <stop
4653- style="stop-color:#ffffff;stop-opacity:1.0000000"
4654- offset="0.0000000"
4655- id="stop3468" />
4656- <stop
4657- style="stop-color:#a0a0a0;stop-opacity:1.0000000;"
4658- offset="1.0000000"
4659- id="stop3470" />
4660- </linearGradient>
4661- <linearGradient
4662- id="linearGradient1887">
4663- <stop
4664- id="stop1888"
4665- offset="0.0000000"
4666- style="stop-color:#fffdf8;stop-opacity:1.0000000;" />
4667- <stop
4668- id="stop1889"
4669- offset="1.0000000"
4670- style="stop-color:#cdccc7;stop-opacity:1.0000000;" />
4671- </linearGradient>
4672- <linearGradient
4673- id="linearGradient2485">
4674- <stop
4675- id="stop2486"
4676- offset="0.0000000"
4677- style="stop-color:#ffffff;stop-opacity:1.0000000" />
4678- <stop
4679- id="stop2487"
4680- offset="1.0000000"
4681- style="stop-color:#aaaaaa;stop-opacity:1.0000000;" />
4682- </linearGradient>
4683- <linearGradient
4684- id="linearGradient2888">
4685- <stop
4686- id="stop2889"
4687- offset="0.0000000"
4688- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
4689- <stop
4690- id="stop2894"
4691- offset="1"
4692- style="stop-color:#8ab3de;stop-opacity:1;" />
4693- </linearGradient>
4694- <linearGradient
4695- id="linearGradient1610">
4696- <stop
4697- id="stop1611"
4698- offset="0.0000000"
4699- style="stop-color:#000000;stop-opacity:1.0000000" />
4700- <stop
4701- id="stop3053"
4702- offset="0.35076979"
4703- style="stop-color:#7f7f7f;stop-opacity:1.0000000" />
4704- <stop
4705- id="stop3054"
4706- offset="0.59668732"
4707- style="stop-color:#bfbfbf;stop-opacity:1.0000000" />
4708- <stop
4709- id="stop3055"
4710- offset="0.78382427"
4711- style="stop-color:#dfdfdf;stop-opacity:1.0000000" />
4712- <stop
4713- id="stop1612"
4714- offset="1.0000000"
4715- style="stop-color:#ffffff;stop-opacity:1.0000000" />
4716- </linearGradient>
4717- <linearGradient
4718- id="linearGradient500">
4719- <stop
4720- id="stop1007"
4721- offset="0.0000000"
4722- style="stop-color:#e7eaf0;stop-opacity:1.0000000;" />
4723- <stop
4724- id="stop1008"
4725- offset="1.0000000"
4726- style="stop-color:#bacadd;stop-opacity:1.0000000;" />
4727- </linearGradient>
4728- <linearGradient
4729- id="linearGradient700">
4730- <stop
4731- id="stop347"
4732- offset="0"
4733- style="stop-color:#376796;stop-opacity:1;" />
4734- <stop
4735- id="stop348"
4736- offset="1.0000000"
4737- style="stop-color:#b0dde2;stop-opacity:1.0000000;" />
4738- </linearGradient>
4739- <linearGradient
4740- id="linearGradient800">
4741- <stop
4742- id="stop998"
4743- offset="0"
4744- style="stop-color:#f3ff49;stop-opacity:1;" />
4745- <stop
4746- id="stop999"
4747- offset="1"
4748- style="stop-color:#ffa01e;stop-opacity:1;" />
4749- </linearGradient>
4750- <linearGradient
4751- id="linearGradient900">
4752- <stop
4753- id="stop1014"
4754- offset="0.0000000"
4755- style="stop-color:#e4ffa6;stop-opacity:1.0000000;" />
4756- <stop
4757- id="stop1015"
4758- offset="1.0000000"
4759- style="stop-color:#3a7801;stop-opacity:1.0000000;" />
4760- </linearGradient>
4761- <linearGradient
4762- inkscape:collect="always"
4763- xlink:href="#linearGradient5734"
4764- id="linearGradient3628"
4765- x1="22.452934"
4766- y1="170.37819"
4767- x2="23.615282"
4768- y2="164.95464"
4769- gradientUnits="userSpaceOnUse"
4770- gradientTransform="translate(1.863401,-1.999999)" />
4771- <linearGradient
4772- inkscape:collect="always"
4773- xlink:href="#linearGradient4935"
4774- id="linearGradient10520"
4775- x1="-0.53531498"
4776- y1="107.85"
4777- x2="-14.7622"
4778- y2="96.397003"
4779- gradientUnits="userSpaceOnUse"
4780- gradientTransform="matrix(0.89781,0,0,0.89781,-0.81747,10.4227)" />
4781- <linearGradient
4782- inkscape:collect="always"
4783- xlink:href="#linearGradient2485"
4784- id="linearGradient4005"
4785- x1="61.447758"
4786- y1="236.41124"
4787- x2="64.518295"
4788- y2="240.35397"
4789- gradientUnits="userSpaceOnUse" />
4790- <linearGradient
4791- inkscape:collect="always"
4792- xlink:href="#linearGradient2485"
4793- id="linearGradient4013"
4794- x1="59.432198"
4795- y1="239.1431"
4796- x2="62.515686"
4797- y2="243.43013"
4798- gradientUnits="userSpaceOnUse" />
4799- <linearGradient
4800- inkscape:collect="always"
4801- xlink:href="#linearGradient3480"
4802- id="linearGradient4072"
4803- x1="58.952152"
4804- y1="236"
4805- x2="63.40303"
4806- y2="239.27582"
4807- gradientUnits="userSpaceOnUse" />
4808- <linearGradient
4809- inkscape:collect="always"
4810- xlink:href="#linearGradient3480"
4811- id="linearGradient4080"
4812- x1="59"
4813- y1="235.13408"
4814- x2="62.5"
4815- y2="239.49016"
4816- gradientUnits="userSpaceOnUse" />
4817- <linearGradient
4818- inkscape:collect="always"
4819- xlink:href="#linearGradient3480"
4820- id="linearGradient4088"
4821- x1="8"
4822- y1="251"
4823- x2="14.320742"
4824- y2="257.66202"
4825- gradientUnits="userSpaceOnUse"
4826- gradientTransform="translate(0,2.076809e-2)" />
4827- <linearGradient
4828- inkscape:collect="always"
4829- xlink:href="#linearGradient3480"
4830- id="linearGradient3208"
4831- gradientUnits="userSpaceOnUse"
4832- x1="8"
4833- y1="251"
4834- x2="14.320742"
4835- y2="257.66202" />
4836- <linearGradient
4837- inkscape:collect="always"
4838- xlink:href="#linearGradient3480"
4839- id="linearGradient6665"
4840- gradientUnits="userSpaceOnUse"
4841- gradientTransform="matrix(0,1.686539,-1.016949,0,148.1771,249.4699)"
4842- x1="-43.562527"
4843- y1="186.11075"
4844- x2="-35.449852"
4845- y2="186.1308" />
4846- <linearGradient
4847- inkscape:collect="always"
4848- xlink:href="#linearGradient3480"
4849- id="linearGradient6667"
4850- gradientUnits="userSpaceOnUse"
4851- x1="-43.950001"
4852- y1="187"
4853- x2="-30.049999"
4854- y2="187"
4855- gradientTransform="matrix(0,1.007194,-1.016949,0,148.1771,220.2629)" />
4856- <linearGradient
4857- inkscape:collect="always"
4858- xlink:href="#linearGradient3480"
4859- id="linearGradient7544"
4860- x1="-43.950001"
4861- y1="187"
4862- x2="-30.049999"
4863- y2="187"
4864- gradientUnits="userSpaceOnUse"
4865- gradientTransform="matrix(1.003713,0,0,1,0.163202,0)" />
4866- <linearGradient
4867- inkscape:collect="always"
4868- xlink:href="#linearGradient3480"
4869- id="linearGradient7548"
4870- gradientUnits="userSpaceOnUse"
4871- x1="-42.133953"
4872- y1="183.3679"
4873- x2="-34.245693"
4874- y2="186.74951" />
4875- <linearGradient
4876- inkscape:collect="always"
4877- xlink:href="#linearGradient1610"
4878- id="linearGradient10560"
4879- gradientUnits="userSpaceOnUse"
4880- x1="-33.566422"
4881- y1="183.8118"
4882- x2="-34.677124"
4883- y2="182.35056"
4884- gradientTransform="translate(-0.96863,1.05455)" />
4885- <linearGradient
4886- inkscape:collect="always"
4887- xlink:href="#linearGradient800"
4888- id="linearGradient10579"
4889- x1="107.94834"
4890- y1="163.43726"
4891- x2="110.12064"
4892- y2="166.19142"
4893- gradientUnits="userSpaceOnUse"
4894- gradientTransform="translate(-139.9686,15.05455)" />
4895- <radialGradient
4896- inkscape:collect="always"
4897- xlink:href="#linearGradient10585"
4898- id="radialGradient10597"
4899- cx="-39.006454"
4900- cy="185.37962"
4901- fx="-39.006454"
4902- fy="185.37962"
4903- r="4.7721405"
4904- gradientTransform="matrix(0.173327,0.323606,-0.837131,0.448376,121.9729,116.365)"
4905- gradientUnits="userSpaceOnUse" />
4906- <linearGradient
4907- inkscape:collect="always"
4908- xlink:href="#linearGradient1610"
4909- id="linearGradient10641"
4910- x1="148"
4911- y1="214.81735"
4912- x2="143.22507"
4913- y2="215.9465"
4914- gradientUnits="userSpaceOnUse" />
4915- <linearGradient
4916- inkscape:collect="always"
4917- xlink:href="#linearGradient800"
4918- id="linearGradient11815"
4919- x1="361.70941"
4920- y1="261.24731"
4921- x2="366.09814"
4922- y2="264.68918"
4923- gradientUnits="userSpaceOnUse"
4924- gradientTransform="matrix(1.02198,0,0,1,-8.949568,-1)" />
4925- <linearGradient
4926- inkscape:collect="always"
4927- xlink:href="#linearGradient3466"
4928- id="linearGradient11021"
4929- gradientUnits="userSpaceOnUse"
4930- gradientTransform="matrix(0.707107,-0.707107,0.707107,0.707107,16.25566,275.4833)"
4931- x1="337.11661"
4932- y1="117.24895"
4933- x2="338.0838"
4934- y2="126.52245" />
4935- <linearGradient
4936- inkscape:collect="always"
4937- xlink:href="#linearGradient5740"
4938- id="linearGradient13469"
4939- gradientUnits="userSpaceOnUse"
4940- gradientTransform="matrix(0.539989,0,0,0.883257,-125.2513,264.0607)"
4941- x1="404.67871"
4942- y1="46.338985"
4943- x2="414.62341"
4944- y2="46.338959" />
4945- <linearGradient
4946- inkscape:collect="always"
4947- xlink:href="#linearGradient5740"
4948- id="linearGradient13473"
4949- gradientUnits="userSpaceOnUse"
4950- gradientTransform="matrix(0.666914,0,0,0.896427,-159.6137,266.4372)"
4951- x1="404.67871"
4952- y1="46.338985"
4953- x2="415.16632"
4954- y2="46.339054" />
4955- <linearGradient
4956- inkscape:collect="always"
4957- xlink:href="#linearGradient5740"
4958- id="linearGradient13477"
4959- gradientUnits="userSpaceOnUse"
4960- gradientTransform="matrix(0.868799,0,0,0.896064,-239.3931,260.4497)"
4961- x1="404.67871"
4962- y1="46.338985"
4963- x2="415.20053"
4964- y2="46.339008" />
4965- <linearGradient
4966- inkscape:collect="always"
4967- xlink:href="#linearGradient5740"
4968- id="linearGradient14343"
4969- x1="70"
4970- y1="293"
4971- x2="76.136215"
4972- y2="293"
4973- gradientUnits="userSpaceOnUse"
4974- gradientTransform="translate(41.00246,10.00003)" />
4975- <linearGradient
4976- inkscape:collect="always"
4977- xlink:href="#linearGradient5734"
4978- id="linearGradient14389"
4979- x1="83.829369"
4980- y1="311.45078"
4981- x2="80.622993"
4982- y2="307.83109"
4983- gradientUnits="userSpaceOnUse" />
4984- <linearGradient
4985- inkscape:collect="always"
4986- xlink:href="#linearGradient4528"
4987- id="linearGradient18352"
4988- gradientUnits="userSpaceOnUse"
4989- gradientTransform="matrix(1.124999,0,0,1.125,-85.22497,-7.125909)"
4990- x1="705.22168"
4991- y1="67.59227"
4992- x2="690"
4993- y2="76.983932" />
4994- <linearGradient
4995- inkscape:collect="always"
4996- xlink:href="#linearGradient800"
4997- id="linearGradient5644"
4998- gradientUnits="userSpaceOnUse"
4999- gradientTransform="matrix(0.7,0,0,1,311.2,8.5)"
5000- x1="974.43518"
The diff has been truncated for viewing.