Merge lp:~kelemeng/software-center/bug625859 into lp:software-center

Proposed by Michael Vogt
Status: Merged
Merge reported by: Michael Vogt
Merged at revision: not available
Proposed branch: lp:~kelemeng/software-center/bug625859
Merge into: lp:software-center
Diff against target: 54856 lines (+53622/-0) (has conflicts)
199 files modified
.bzr-builddeb/default.conf (+2/-0)
AUTHORS (+10/-0)
COPYING (+676/-0)
COPYING.LGPL (+165/-0)
README (+62/-0)
TODO (+79/-0)
apt-xapian-index-plugin/origin.py (+98/-0)
apt-xapian-index-plugin/software-center.py (+130/-0)
data/apt.protocol (+12/-0)
data/com.ubuntu.SoftwareCenter.conf (+15/-0)
data/featured.menu.in (+32/-0)
data/icons/24x24/apps/ppa.svg (+675/-0)
data/icons/24x24/apps/unknown-channel.svg (+358/-0)
data/icons/scalable/apps/category-show-all.svg (+1074/-0)
data/icons/scalable/apps/partner.svg (+73/-0)
data/icons/scalable/apps/softwarecenter.svg (+1548/-0)
data/icons_unbranded/scalable/apps/category-show-all.svg (+1074/-0)
data/icons_unbranded/scalable/apps/softwarecenter.svg (+1539/-0)
data/new.menu.in (+14/-0)
data/software-center.applications (+9/-0)
data/software-center.js (+3/-0)
data/software-center.menu.in (+531/-0)
data/software-center.schemas.in (+38/-0)
data/software-center.xml.in (+7/-0)
data/sources/softwarecenter-progress.svg (+4743/-0)
data/templates/AppDetailsViewWebkit.html (+252/-0)
data/templates/CategoriesViewWebkit.html (+215/-0)
data/templates/WKTestWidget.html (+34/-0)
data/ubuntu-software-center.desktop.in (+12/-0)
data/ui/GBTestWidget.ui (+133/-0)
data/ui/SoftwareCenter.ui (+477/-0)
data/ui/dialogs.ui (+392/-0)
data/ui/login.ui (+228/-0)
data/unbranded-software-center.desktop.in (+11/-0)
debian/TODO (+3/-0)
debian/changelog (+2270/-0)
debian/compat (+1/-0)
debian/control (+59/-0)
debian/copyright (+38/-0)
debian/rules (+45/-0)
debian/software-center.dirs (+3/-0)
debian/software-center.docs (+2/-0)
debian/software-center.manpages (+2/-0)
debian/software-center.postinst (+22/-0)
debian/software-center.postrm (+19/-0)
debian/software-center.triggers (+4/-0)
doc/example_plugin.py (+37/-0)
help/C/legal.xml (+76/-0)
help/C/software-center-C.omf (+30/-0)
help/C/software-center.xml (+315/-0)
man/software-center.1 (+52/-0)
man/update-software-center.8 (+23/-0)
po/POTFILES.in (+35/-0)
po/POTFILES.skip (+1/-0)
po/ar.po (+422/-0)
po/ca.po (+404/-0)
po/cs.po (+379/-0)
po/de.po (+422/-0)
po/en_AU.po (+327/-0)
po/en_CA.po (+397/-0)
po/en_GB.po (+412/-0)
po/eo.po (+372/-0)
po/es.po (+426/-0)
po/et.po (+393/-0)
po/fi.po (+406/-0)
po/fr.po (+393/-0)
po/gl.po (+400/-0)
po/help/po4a.conf (+4/-0)
po/help/software-center-doc.pot (+501/-0)
po/hu.po (+327/-0)
po/it.po (+399/-0)
po/lt.po (+384/-0)
po/nl.po (+398/-0)
po/pl.po (+414/-0)
po/pt.po (+313/-0)
po/ro.po (+372/-0)
po/ru.po (+411/-0)
po/sco.po (+303/-0)
po/software-center.pot (+826/-0)
po/sq.po (+323/-0)
po/sr.po (+324/-0)
po/sv.po (+386/-0)
po/th.po (+575/-0)
po/zh_CN.po (+393/-0)
setup.cfg (+26/-0)
setup.py (+70/-0)
software-center (+88/-0)
softwarecenter/SimpleGtkbuilderApp.py (+60/-0)
softwarecenter/__init__.py (+19/-0)
softwarecenter/app.py (+1007/-0)
softwarecenter/apt/aptcache.py (+445/-0)
softwarecenter/apt/apthistory.py (+168/-0)
softwarecenter/backend/__init__.py (+26/-0)
softwarecenter/backend/aptd.py (+480/-0)
softwarecenter/backend/channel.py (+452/-0)
softwarecenter/backend/config.py (+45/-0)
softwarecenter/backend/launchpad.py (+326/-0)
softwarecenter/backend/login.py (+54/-0)
softwarecenter/backend/login_sso.py (+76/-0)
softwarecenter/backend/restfulclient.py (+342/-0)
softwarecenter/backend/transactionswatcher.py (+47/-0)
softwarecenter/db/application.py (+678/-0)
softwarecenter/db/database.py (+339/-0)
softwarecenter/db/update.py (+569/-0)
softwarecenter/distro/Debian.py (+98/-0)
softwarecenter/distro/Ubuntu.py (+228/-0)
softwarecenter/distro/__init__.py (+106/-0)
softwarecenter/enums.py (+136/-0)
softwarecenter/log.py (+81/-0)
softwarecenter/paths.py (+26/-0)
softwarecenter/plugin.py (+118/-0)
softwarecenter/utils.py (+242/-0)
softwarecenter/version.py (+5/-0)
softwarecenter/view/appdetailsview.py (+123/-0)
softwarecenter/view/appdetailsview_gtk.py (+1807/-0)
softwarecenter/view/appdetailsview_webkit.py (+530/-0)
softwarecenter/view/appview.py (+1724/-0)
softwarecenter/view/availablepane.py (+798/-0)
softwarecenter/view/basepane.py (+42/-0)
softwarecenter/view/cat_and_app.py (+82/-0)
softwarecenter/view/catview.py (+286/-0)
softwarecenter/view/catview_gtk.py (+1259/-0)
softwarecenter/view/catview_webkit.py (+266/-0)
softwarecenter/view/channelpane.py (+348/-0)
softwarecenter/view/dialogs.py (+154/-0)
softwarecenter/view/historypane.py (+310/-0)
softwarecenter/view/installed_view.py (+71/-0)
softwarecenter/view/installedpane.py (+251/-0)
softwarecenter/view/logindialog.py (+136/-0)
softwarecenter/view/navhistory.py (+260/-0)
softwarecenter/view/pendingview.py (+264/-0)
softwarecenter/view/pkgview.py (+50/-0)
softwarecenter/view/purchasedialog.py (+252/-0)
softwarecenter/view/softwarepane.py (+227/-0)
softwarecenter/view/viewmanager.py (+48/-0)
softwarecenter/view/viewswitcher.py (+484/-0)
softwarecenter/view/widgets/actionbar.py (+283/-0)
softwarecenter/view/widgets/actionbar2.py (+122/-0)
softwarecenter/view/widgets/animatedimage.py (+188/-0)
softwarecenter/view/widgets/backforward.py (+351/-0)
softwarecenter/view/widgets/gbwidget.py (+80/-0)
softwarecenter/view/widgets/imagedialog.py (+163/-0)
softwarecenter/view/widgets/mkit.py (+1287/-0)
softwarecenter/view/widgets/mkit_themes.py (+687/-0)
softwarecenter/view/widgets/pathbar_gtk_atk.py (+843/-0)
softwarecenter/view/widgets/searchentry.py (+146/-0)
softwarecenter/view/widgets/urltextview.py (+190/-0)
softwarecenter/view/widgets/wkwidget.py (+179/-0)
test/Makefile (+18/-0)
test/apt_history.py (+25/-0)
test/axi-test-values (+18/-0)
test/channel_query.py (+41/-0)
test/create_transactions.py (+55/-0)
test/data/app-info-json/apps.json (+12/-0)
test/data/app-info/archive.ubuntu.com_ubuntu_dists_maverick_main_amd64_AppInfo (+12/-0)
test/data/appdetails/var/lib/dpkg/status (+25/-0)
test/data/apt-history/history.log (+177/-0)
test/data/desktop/expensive-gem.desktop (+10/-0)
test/data/desktop/pay-app.desktop (+12/-0)
test/data/desktop/scintillant-orange.desktop (+10/-0)
test/data/desktop/ubuntu-software-center.desktop (+17/-0)
test/data/desktop/zynjacku.desktop (+14/-0)
test/data/plugins/mock_plugin.py (+8/-0)
test/disabled_test_gui_ldtp.py (+80/-0)
test/mago/basic.py (+51/-0)
test/mago/basic.xml (+15/-0)
test/mago/report.xsl (+214/-0)
test/test_addons.py (+54/-0)
test/test_appdetails_view.py (+96/-0)
test/test_appview.py (+159/-0)
test/test_aptd.py (+57/-0)
test/test_apthistory.py (+88/-0)
test/test_catview.py (+29/-0)
test/test_database.py (+251/-0)
test/test_downloader.py (+60/-0)
test/test_gnomekeyring.py (+64/-0)
test/test_gui.py (+211/-0)
test/test_gui_buy_something.py (+113/-0)
test/test_gui_withmainloop.py (+107/-0)
test/test_htmlize.py (+105/-0)
test/test_launchpad.py (+43/-0)
test/test_plugin.py (+29/-0)
test/test_ppa_iconfilename.py (+57/-0)
test/test_reinstall_purchased.py (+91/-0)
test/test_search_per_spec.py (+88/-0)
test/test_software_channels.py (+78/-0)
test/test_utils.py (+22/-0)
test/test_where_is_it.py (+58/-0)
test/test_xapian.py (+48/-0)
test/xapian_query.py (+83/-0)
utils/bench.py (+87/-0)
utils/installedapps.py (+30/-0)
utils/query.py (+71/-0)
utils/search_query.py (+54/-0)
utils/stats.py (+66/-0)
utils/topapps.py (+31/-0)
utils/update-software-center (+138/-0)
utils/update-software-center-agent (+87/-0)
utils/wildcard_query_parser.py (+41/-0)
Conflict adding file .bzr-builddeb.  Moved existing file to .bzr-builddeb.moved.
Conflict adding file AUTHORS.  Moved existing file to AUTHORS.moved.
Conflict adding file COPYING.LGPL.  Moved existing file to COPYING.LGPL.moved.
Conflict adding file COPYING.  Moved existing file to COPYING.moved.
Conflict adding file README.  Moved existing file to README.moved.
Conflict adding file TODO.  Moved existing file to TODO.moved.
Conflict adding file apt-xapian-index-plugin.  Moved existing file to apt-xapian-index-plugin.moved.
Conflict adding file data.  Moved existing file to data.moved.
Conflict adding file debian.  Moved existing file to debian.moved.
Conflict adding file doc.  Moved existing file to doc.moved.
Conflict adding file help.  Moved existing file to help.moved.
Conflict adding file man.  Moved existing file to man.moved.
Conflict adding file po.  Moved existing file to po.moved.
Conflict adding file setup.cfg.  Moved existing file to setup.cfg.moved.
Conflict adding file setup.py.  Moved existing file to setup.py.moved.
Conflict adding file software-center.  Moved existing file to software-center.moved.
Conflict adding file softwarecenter.  Moved existing file to softwarecenter.moved.
Conflict adding file test.  Moved existing file to test.moved.
Conflict adding file utils.  Moved existing file to utils.moved.
To merge this branch: bzr merge lp:~kelemeng/software-center/bug625859
Reviewer Review Type Date Requested Status
software-store-developers Pending
Review via email: mp+34054@code.launchpad.net
To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added directory '.bzr-builddeb'
2=== renamed directory '.bzr-builddeb' => '.bzr-builddeb.moved'
3=== added file '.bzr-builddeb/default.conf'
4--- .bzr-builddeb/default.conf 1970-01-01 00:00:00 +0000
5+++ .bzr-builddeb/default.conf 2010-08-30 09:34:07 +0000
6@@ -0,0 +1,2 @@
7+[BUILDDEB]
8+native = True
9
10=== added file 'AUTHORS'
11--- AUTHORS 1970-01-01 00:00:00 +0000
12+++ AUTHORS 2010-08-30 09:34:07 +0000
13@@ -0,0 +1,10 @@
14+
15+The following people worked on this software:
16+
17+Matthew Paul Thomas - Design
18+Michael Vogt - Coding
19+Sebastian Heinlein - Widgets
20+Matthew McGowan - Pathbar, Widgets, Fixes, Coding
21+Andrew Higginson - Coding, Artwork, Bughelp, Design
22+K.Vishnoo Charan Reddy - Artwork, Bughelp, Design
23+Gary Lasker - Coding
24
25=== renamed file 'AUTHORS' => 'AUTHORS.moved'
26=== added file 'COPYING'
27--- COPYING 1970-01-01 00:00:00 +0000
28+++ COPYING 2010-08-30 09:34:07 +0000
29@@ -0,0 +1,676 @@
30+
31+ GNU GENERAL PUBLIC LICENSE
32+ Version 3, 29 June 2007
33+
34+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
35+ Everyone is permitted to copy and distribute verbatim copies
36+ of this license document, but changing it is not allowed.
37+
38+ Preamble
39+
40+ The GNU General Public License is a free, copyleft license for
41+software and other kinds of works.
42+
43+ The licenses for most software and other practical works are designed
44+to take away your freedom to share and change the works. By contrast,
45+the GNU General Public License is intended to guarantee your freedom to
46+share and change all versions of a program--to make sure it remains free
47+software for all its users. We, the Free Software Foundation, use the
48+GNU General Public License for most of our software; it applies also to
49+any other work released this way by its authors. You can apply it to
50+your programs, too.
51+
52+ When we speak of free software, we are referring to freedom, not
53+price. Our General Public Licenses are designed to make sure that you
54+have the freedom to distribute copies of free software (and charge for
55+them if you wish), that you receive source code or can get it if you
56+want it, that you can change the software or use pieces of it in new
57+free programs, and that you know you can do these things.
58+
59+ To protect your rights, we need to prevent others from denying you
60+these rights or asking you to surrender the rights. Therefore, you have
61+certain responsibilities if you distribute copies of the software, or if
62+you modify it: responsibilities to respect the freedom of others.
63+
64+ For example, if you distribute copies of such a program, whether
65+gratis or for a fee, you must pass on to the recipients the same
66+freedoms that you received. You must make sure that they, too, receive
67+or can get the source code. And you must show them these terms so they
68+know their rights.
69+
70+ Developers that use the GNU GPL protect your rights with two steps:
71+(1) assert copyright on the software, and (2) offer you this License
72+giving you legal permission to copy, distribute and/or modify it.
73+
74+ For the developers' and authors' protection, the GPL clearly explains
75+that there is no warranty for this free software. For both users' and
76+authors' sake, the GPL requires that modified versions be marked as
77+changed, so that their problems will not be attributed erroneously to
78+authors of previous versions.
79+
80+ Some devices are designed to deny users access to install or run
81+modified versions of the software inside them, although the manufacturer
82+can do so. This is fundamentally incompatible with the aim of
83+protecting users' freedom to change the software. The systematic
84+pattern of such abuse occurs in the area of products for individuals to
85+use, which is precisely where it is most unacceptable. Therefore, we
86+have designed this version of the GPL to prohibit the practice for those
87+products. If such problems arise substantially in other domains, we
88+stand ready to extend this provision to those domains in future versions
89+of the GPL, as needed to protect the freedom of users.
90+
91+ Finally, every program is threatened constantly by software patents.
92+States should not allow patents to restrict development and use of
93+software on general-purpose computers, but in those that do, we wish to
94+avoid the special danger that patents applied to a free program could
95+make it effectively proprietary. To prevent this, the GPL assures that
96+patents cannot be used to render the program non-free.
97+
98+ The precise terms and conditions for copying, distribution and
99+modification follow.
100+
101+ TERMS AND CONDITIONS
102+
103+ 0. Definitions.
104+
105+ "This License" refers to version 3 of the GNU General Public License.
106+
107+ "Copyright" also means copyright-like laws that apply to other kinds of
108+works, such as semiconductor masks.
109+
110+ "The Program" refers to any copyrightable work licensed under this
111+License. Each licensee is addressed as "you". "Licensees" and
112+"recipients" may be individuals or organizations.
113+
114+ To "modify" a work means to copy from or adapt all or part of the work
115+in a fashion requiring copyright permission, other than the making of an
116+exact copy. The resulting work is called a "modified version" of the
117+earlier work or a work "based on" the earlier work.
118+
119+ A "covered work" means either the unmodified Program or a work based
120+on the Program.
121+
122+ To "propagate" a work means to do anything with it that, without
123+permission, would make you directly or secondarily liable for
124+infringement under applicable copyright law, except executing it on a
125+computer or modifying a private copy. Propagation includes copying,
126+distribution (with or without modification), making available to the
127+public, and in some countries other activities as well.
128+
129+ To "convey" a work means any kind of propagation that enables other
130+parties to make or receive copies. Mere interaction with a user through
131+a computer network, with no transfer of a copy, is not conveying.
132+
133+ An interactive user interface displays "Appropriate Legal Notices"
134+to the extent that it includes a convenient and prominently visible
135+feature that (1) displays an appropriate copyright notice, and (2)
136+tells the user that there is no warranty for the work (except to the
137+extent that warranties are provided), that licensees may convey the
138+work under this License, and how to view a copy of this License. If
139+the interface presents a list of user commands or options, such as a
140+menu, a prominent item in the list meets this criterion.
141+
142+ 1. Source Code.
143+
144+ The "source code" for a work means the preferred form of the work
145+for making modifications to it. "Object code" means any non-source
146+form of a work.
147+
148+ A "Standard Interface" means an interface that either is an official
149+standard defined by a recognized standards body, or, in the case of
150+interfaces specified for a particular programming language, one that
151+is widely used among developers working in that language.
152+
153+ The "System Libraries" of an executable work include anything, other
154+than the work as a whole, that (a) is included in the normal form of
155+packaging a Major Component, but which is not part of that Major
156+Component, and (b) serves only to enable use of the work with that
157+Major Component, or to implement a Standard Interface for which an
158+implementation is available to the public in source code form. A
159+"Major Component", in this context, means a major essential component
160+(kernel, window system, and so on) of the specific operating system
161+(if any) on which the executable work runs, or a compiler used to
162+produce the work, or an object code interpreter used to run it.
163+
164+ The "Corresponding Source" for a work in object code form means all
165+the source code needed to generate, install, and (for an executable
166+work) run the object code and to modify the work, including scripts to
167+control those activities. However, it does not include the work's
168+System Libraries, or general-purpose tools or generally available free
169+programs which are used unmodified in performing those activities but
170+which are not part of the work. For example, Corresponding Source
171+includes interface definition files associated with source files for
172+the work, and the source code for shared libraries and dynamically
173+linked subprograms that the work is specifically designed to require,
174+such as by intimate data communication or control flow between those
175+subprograms and other parts of the work.
176+
177+ The Corresponding Source need not include anything that users
178+can regenerate automatically from other parts of the Corresponding
179+Source.
180+
181+ The Corresponding Source for a work in source code form is that
182+same work.
183+
184+ 2. Basic Permissions.
185+
186+ All rights granted under this License are granted for the term of
187+copyright on the Program, and are irrevocable provided the stated
188+conditions are met. This License explicitly affirms your unlimited
189+permission to run the unmodified Program. The output from running a
190+covered work is covered by this License only if the output, given its
191+content, constitutes a covered work. This License acknowledges your
192+rights of fair use or other equivalent, as provided by copyright law.
193+
194+ You may make, run and propagate covered works that you do not
195+convey, without conditions so long as your license otherwise remains
196+in force. You may convey covered works to others for the sole purpose
197+of having them make modifications exclusively for you, or provide you
198+with facilities for running those works, provided that you comply with
199+the terms of this License in conveying all material for which you do
200+not control copyright. Those thus making or running the covered works
201+for you must do so exclusively on your behalf, under your direction
202+and control, on terms that prohibit them from making any copies of
203+your copyrighted material outside their relationship with you.
204+
205+ Conveying under any other circumstances is permitted solely under
206+the conditions stated below. Sublicensing is not allowed; section 10
207+makes it unnecessary.
208+
209+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
210+
211+ No covered work shall be deemed part of an effective technological
212+measure under any applicable law fulfilling obligations under article
213+11 of the WIPO copyright treaty adopted on 20 December 1996, or
214+similar laws prohibiting or restricting circumvention of such
215+measures.
216+
217+ When you convey a covered work, you waive any legal power to forbid
218+circumvention of technological measures to the extent such circumvention
219+is effected by exercising rights under this License with respect to
220+the covered work, and you disclaim any intention to limit operation or
221+modification of the work as a means of enforcing, against the work's
222+users, your or third parties' legal rights to forbid circumvention of
223+technological measures.
224+
225+ 4. Conveying Verbatim Copies.
226+
227+ You may convey verbatim copies of the Program's source code as you
228+receive it, in any medium, provided that you conspicuously and
229+appropriately publish on each copy an appropriate copyright notice;
230+keep intact all notices stating that this License and any
231+non-permissive terms added in accord with section 7 apply to the code;
232+keep intact all notices of the absence of any warranty; and give all
233+recipients a copy of this License along with the Program.
234+
235+ You may charge any price or no price for each copy that you convey,
236+and you may offer support or warranty protection for a fee.
237+
238+ 5. Conveying Modified Source Versions.
239+
240+ You may convey a work based on the Program, or the modifications to
241+produce it from the Program, in the form of source code under the
242+terms of section 4, provided that you also meet all of these conditions:
243+
244+ a) The work must carry prominent notices stating that you modified
245+ it, and giving a relevant date.
246+
247+ b) The work must carry prominent notices stating that it is
248+ released under this License and any conditions added under section
249+ 7. This requirement modifies the requirement in section 4 to
250+ "keep intact all notices".
251+
252+ c) You must license the entire work, as a whole, under this
253+ License to anyone who comes into possession of a copy. This
254+ License will therefore apply, along with any applicable section 7
255+ additional terms, to the whole of the work, and all its parts,
256+ regardless of how they are packaged. This License gives no
257+ permission to license the work in any other way, but it does not
258+ invalidate such permission if you have separately received it.
259+
260+ d) If the work has interactive user interfaces, each must display
261+ Appropriate Legal Notices; however, if the Program has interactive
262+ interfaces that do not display Appropriate Legal Notices, your
263+ work need not make them do so.
264+
265+ A compilation of a covered work with other separate and independent
266+works, which are not by their nature extensions of the covered work,
267+and which are not combined with it such as to form a larger program,
268+in or on a volume of a storage or distribution medium, is called an
269+"aggregate" if the compilation and its resulting copyright are not
270+used to limit the access or legal rights of the compilation's users
271+beyond what the individual works permit. Inclusion of a covered work
272+in an aggregate does not cause this License to apply to the other
273+parts of the aggregate.
274+
275+ 6. Conveying Non-Source Forms.
276+
277+ You may convey a covered work in object code form under the terms
278+of sections 4 and 5, provided that you also convey the
279+machine-readable Corresponding Source under the terms of this License,
280+in one of these ways:
281+
282+ a) Convey the object code in, or embodied in, a physical product
283+ (including a physical distribution medium), accompanied by the
284+ Corresponding Source fixed on a durable physical medium
285+ customarily used for software interchange.
286+
287+ b) Convey the object code in, or embodied in, a physical product
288+ (including a physical distribution medium), accompanied by a
289+ written offer, valid for at least three years and valid for as
290+ long as you offer spare parts or customer support for that product
291+ model, to give anyone who possesses the object code either (1) a
292+ copy of the Corresponding Source for all the software in the
293+ product that is covered by this License, on a durable physical
294+ medium customarily used for software interchange, for a price no
295+ more than your reasonable cost of physically performing this
296+ conveying of source, or (2) access to copy the
297+ Corresponding Source from a network server at no charge.
298+
299+ c) Convey individual copies of the object code with a copy of the
300+ written offer to provide the Corresponding Source. This
301+ alternative is allowed only occasionally and noncommercially, and
302+ only if you received the object code with such an offer, in accord
303+ with subsection 6b.
304+
305+ d) Convey the object code by offering access from a designated
306+ place (gratis or for a charge), and offer equivalent access to the
307+ Corresponding Source in the same way through the same place at no
308+ further charge. You need not require recipients to copy the
309+ Corresponding Source along with the object code. If the place to
310+ copy the object code is a network server, the Corresponding Source
311+ may be on a different server (operated by you or a third party)
312+ that supports equivalent copying facilities, provided you maintain
313+ clear directions next to the object code saying where to find the
314+ Corresponding Source. Regardless of what server hosts the
315+ Corresponding Source, you remain obligated to ensure that it is
316+ available for as long as needed to satisfy these requirements.
317+
318+ e) Convey the object code using peer-to-peer transmission, provided
319+ you inform other peers where the object code and Corresponding
320+ Source of the work are being offered to the general public at no
321+ charge under subsection 6d.
322+
323+ A separable portion of the object code, whose source code is excluded
324+from the Corresponding Source as a System Library, need not be
325+included in conveying the object code work.
326+
327+ A "User Product" is either (1) a "consumer product", which means any
328+tangible personal property which is normally used for personal, family,
329+or household purposes, or (2) anything designed or sold for incorporation
330+into a dwelling. In determining whether a product is a consumer product,
331+doubtful cases shall be resolved in favor of coverage. For a particular
332+product received by a particular user, "normally used" refers to a
333+typical or common use of that class of product, regardless of the status
334+of the particular user or of the way in which the particular user
335+actually uses, or expects or is expected to use, the product. A product
336+is a consumer product regardless of whether the product has substantial
337+commercial, industrial or non-consumer uses, unless such uses represent
338+the only significant mode of use of the product.
339+
340+ "Installation Information" for a User Product means any methods,
341+procedures, authorization keys, or other information required to install
342+and execute modified versions of a covered work in that User Product from
343+a modified version of its Corresponding Source. The information must
344+suffice to ensure that the continued functioning of the modified object
345+code is in no case prevented or interfered with solely because
346+modification has been made.
347+
348+ If you convey an object code work under this section in, or with, or
349+specifically for use in, a User Product, and the conveying occurs as
350+part of a transaction in which the right of possession and use of the
351+User Product is transferred to the recipient in perpetuity or for a
352+fixed term (regardless of how the transaction is characterized), the
353+Corresponding Source conveyed under this section must be accompanied
354+by the Installation Information. But this requirement does not apply
355+if neither you nor any third party retains the ability to install
356+modified object code on the User Product (for example, the work has
357+been installed in ROM).
358+
359+ The requirement to provide Installation Information does not include a
360+requirement to continue to provide support service, warranty, or updates
361+for a work that has been modified or installed by the recipient, or for
362+the User Product in which it has been modified or installed. Access to a
363+network may be denied when the modification itself materially and
364+adversely affects the operation of the network or violates the rules and
365+protocols for communication across the network.
366+
367+ Corresponding Source conveyed, and Installation Information provided,
368+in accord with this section must be in a format that is publicly
369+documented (and with an implementation available to the public in
370+source code form), and must require no special password or key for
371+unpacking, reading or copying.
372+
373+ 7. Additional Terms.
374+
375+ "Additional permissions" are terms that supplement the terms of this
376+License by making exceptions from one or more of its conditions.
377+Additional permissions that are applicable to the entire Program shall
378+be treated as though they were included in this License, to the extent
379+that they are valid under applicable law. If additional permissions
380+apply only to part of the Program, that part may be used separately
381+under those permissions, but the entire Program remains governed by
382+this License without regard to the additional permissions.
383+
384+ When you convey a copy of a covered work, you may at your option
385+remove any additional permissions from that copy, or from any part of
386+it. (Additional permissions may be written to require their own
387+removal in certain cases when you modify the work.) You may place
388+additional permissions on material, added by you to a covered work,
389+for which you have or can give appropriate copyright permission.
390+
391+ Notwithstanding any other provision of this License, for material you
392+add to a covered work, you may (if authorized by the copyright holders of
393+that material) supplement the terms of this License with terms:
394+
395+ a) Disclaiming warranty or limiting liability differently from the
396+ terms of sections 15 and 16 of this License; or
397+
398+ b) Requiring preservation of specified reasonable legal notices or
399+ author attributions in that material or in the Appropriate Legal
400+ Notices displayed by works containing it; or
401+
402+ c) Prohibiting misrepresentation of the origin of that material, or
403+ requiring that modified versions of such material be marked in
404+ reasonable ways as different from the original version; or
405+
406+ d) Limiting the use for publicity purposes of names of licensors or
407+ authors of the material; or
408+
409+ e) Declining to grant rights under trademark law for use of some
410+ trade names, trademarks, or service marks; or
411+
412+ f) Requiring indemnification of licensors and authors of that
413+ material by anyone who conveys the material (or modified versions of
414+ it) with contractual assumptions of liability to the recipient, for
415+ any liability that these contractual assumptions directly impose on
416+ those licensors and authors.
417+
418+ All other non-permissive additional terms are considered "further
419+restrictions" within the meaning of section 10. If the Program as you
420+received it, or any part of it, contains a notice stating that it is
421+governed by this License along with a term that is a further
422+restriction, you may remove that term. If a license document contains
423+a further restriction but permits relicensing or conveying under this
424+License, you may add to a covered work material governed by the terms
425+of that license document, provided that the further restriction does
426+not survive such relicensing or conveying.
427+
428+ If you add terms to a covered work in accord with this section, you
429+must place, in the relevant source files, a statement of the
430+additional terms that apply to those files, or a notice indicating
431+where to find the applicable terms.
432+
433+ Additional terms, permissive or non-permissive, may be stated in the
434+form of a separately written license, or stated as exceptions;
435+the above requirements apply either way.
436+
437+ 8. Termination.
438+
439+ You may not propagate or modify a covered work except as expressly
440+provided under this License. Any attempt otherwise to propagate or
441+modify it is void, and will automatically terminate your rights under
442+this License (including any patent licenses granted under the third
443+paragraph of section 11).
444+
445+ However, if you cease all violation of this License, then your
446+license from a particular copyright holder is reinstated (a)
447+provisionally, unless and until the copyright holder explicitly and
448+finally terminates your license, and (b) permanently, if the copyright
449+holder fails to notify you of the violation by some reasonable means
450+prior to 60 days after the cessation.
451+
452+ Moreover, your license from a particular copyright holder is
453+reinstated permanently if the copyright holder notifies you of the
454+violation by some reasonable means, this is the first time you have
455+received notice of violation of this License (for any work) from that
456+copyright holder, and you cure the violation prior to 30 days after
457+your receipt of the notice.
458+
459+ Termination of your rights under this section does not terminate the
460+licenses of parties who have received copies or rights from you under
461+this License. If your rights have been terminated and not permanently
462+reinstated, you do not qualify to receive new licenses for the same
463+material under section 10.
464+
465+ 9. Acceptance Not Required for Having Copies.
466+
467+ You are not required to accept this License in order to receive or
468+run a copy of the Program. Ancillary propagation of a covered work
469+occurring solely as a consequence of using peer-to-peer transmission
470+to receive a copy likewise does not require acceptance. However,
471+nothing other than this License grants you permission to propagate or
472+modify any covered work. These actions infringe copyright if you do
473+not accept this License. Therefore, by modifying or propagating a
474+covered work, you indicate your acceptance of this License to do so.
475+
476+ 10. Automatic Licensing of Downstream Recipients.
477+
478+ Each time you convey a covered work, the recipient automatically
479+receives a license from the original licensors, to run, modify and
480+propagate that work, subject to this License. You are not responsible
481+for enforcing compliance by third parties with this License.
482+
483+ An "entity transaction" is a transaction transferring control of an
484+organization, or substantially all assets of one, or subdividing an
485+organization, or merging organizations. If propagation of a covered
486+work results from an entity transaction, each party to that
487+transaction who receives a copy of the work also receives whatever
488+licenses to the work the party's predecessor in interest had or could
489+give under the previous paragraph, plus a right to possession of the
490+Corresponding Source of the work from the predecessor in interest, if
491+the predecessor has it or can get it with reasonable efforts.
492+
493+ You may not impose any further restrictions on the exercise of the
494+rights granted or affirmed under this License. For example, you may
495+not impose a license fee, royalty, or other charge for exercise of
496+rights granted under this License, and you may not initiate litigation
497+(including a cross-claim or counterclaim in a lawsuit) alleging that
498+any patent claim is infringed by making, using, selling, offering for
499+sale, or importing the Program or any portion of it.
500+
501+ 11. Patents.
502+
503+ A "contributor" is a copyright holder who authorizes use under this
504+License of the Program or a work on which the Program is based. The
505+work thus licensed is called the contributor's "contributor version".
506+
507+ A contributor's "essential patent claims" are all patent claims
508+owned or controlled by the contributor, whether already acquired or
509+hereafter acquired, that would be infringed by some manner, permitted
510+by this License, of making, using, or selling its contributor version,
511+but do not include claims that would be infringed only as a
512+consequence of further modification of the contributor version. For
513+purposes of this definition, "control" includes the right to grant
514+patent sublicenses in a manner consistent with the requirements of
515+this License.
516+
517+ Each contributor grants you a non-exclusive, worldwide, royalty-free
518+patent license under the contributor's essential patent claims, to
519+make, use, sell, offer for sale, import and otherwise run, modify and
520+propagate the contents of its contributor version.
521+
522+ In the following three paragraphs, a "patent license" is any express
523+agreement or commitment, however denominated, not to enforce a patent
524+(such as an express permission to practice a patent or covenant not to
525+sue for patent infringement). To "grant" such a patent license to a
526+party means to make such an agreement or commitment not to enforce a
527+patent against the party.
528+
529+ If you convey a covered work, knowingly relying on a patent license,
530+and the Corresponding Source of the work is not available for anyone
531+to copy, free of charge and under the terms of this License, through a
532+publicly available network server or other readily accessible means,
533+then you must either (1) cause the Corresponding Source to be so
534+available, or (2) arrange to deprive yourself of the benefit of the
535+patent license for this particular work, or (3) arrange, in a manner
536+consistent with the requirements of this License, to extend the patent
537+license to downstream recipients. "Knowingly relying" means you have
538+actual knowledge that, but for the patent license, your conveying the
539+covered work in a country, or your recipient's use of the covered work
540+in a country, would infringe one or more identifiable patents in that
541+country that you have reason to believe are valid.
542+
543+ If, pursuant to or in connection with a single transaction or
544+arrangement, you convey, or propagate by procuring conveyance of, a
545+covered work, and grant a patent license to some of the parties
546+receiving the covered work authorizing them to use, propagate, modify
547+or convey a specific copy of the covered work, then the patent license
548+you grant is automatically extended to all recipients of the covered
549+work and works based on it.
550+
551+ A patent license is "discriminatory" if it does not include within
552+the scope of its coverage, prohibits the exercise of, or is
553+conditioned on the non-exercise of one or more of the rights that are
554+specifically granted under this License. You may not convey a covered
555+work if you are a party to an arrangement with a third party that is
556+in the business of distributing software, under which you make payment
557+to the third party based on the extent of your activity of conveying
558+the work, and under which the third party grants, to any of the
559+parties who would receive the covered work from you, a discriminatory
560+patent license (a) in connection with copies of the covered work
561+conveyed by you (or copies made from those copies), or (b) primarily
562+for and in connection with specific products or compilations that
563+contain the covered work, unless you entered into that arrangement,
564+or that patent license was granted, prior to 28 March 2007.
565+
566+ Nothing in this License shall be construed as excluding or limiting
567+any implied license or other defenses to infringement that may
568+otherwise be available to you under applicable patent law.
569+
570+ 12. No Surrender of Others' Freedom.
571+
572+ If conditions are imposed on you (whether by court order, agreement or
573+otherwise) that contradict the conditions of this License, they do not
574+excuse you from the conditions of this License. If you cannot convey a
575+covered work so as to satisfy simultaneously your obligations under this
576+License and any other pertinent obligations, then as a consequence you may
577+not convey it at all. For example, if you agree to terms that obligate you
578+to collect a royalty for further conveying from those to whom you convey
579+the Program, the only way you could satisfy both those terms and this
580+License would be to refrain entirely from conveying the Program.
581+
582+ 13. Use with the GNU Affero General Public License.
583+
584+ Notwithstanding any other provision of this License, you have
585+permission to link or combine any covered work with a work licensed
586+under version 3 of the GNU Affero General Public License into a single
587+combined work, and to convey the resulting work. The terms of this
588+License will continue to apply to the part which is the covered work,
589+but the special requirements of the GNU Affero General Public License,
590+section 13, concerning interaction through a network will apply to the
591+combination as such.
592+
593+ 14. Revised Versions of this License.
594+
595+ The Free Software Foundation may publish revised and/or new versions of
596+the GNU General Public License from time to time. Such new versions will
597+be similar in spirit to the present version, but may differ in detail to
598+address new problems or concerns.
599+
600+ Each version is given a distinguishing version number. If the
601+Program specifies that a certain numbered version of the GNU General
602+Public License "or any later version" applies to it, you have the
603+option of following the terms and conditions either of that numbered
604+version or of any later version published by the Free Software
605+Foundation. If the Program does not specify a version number of the
606+GNU General Public License, you may choose any version ever published
607+by the Free Software Foundation.
608+
609+ If the Program specifies that a proxy can decide which future
610+versions of the GNU General Public License can be used, that proxy's
611+public statement of acceptance of a version permanently authorizes you
612+to choose that version for the Program.
613+
614+ Later license versions may give you additional or different
615+permissions. However, no additional obligations are imposed on any
616+author or copyright holder as a result of your choosing to follow a
617+later version.
618+
619+ 15. Disclaimer of Warranty.
620+
621+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
622+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
623+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
624+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
625+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
626+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
627+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
628+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
629+
630+ 16. Limitation of Liability.
631+
632+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
633+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
634+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
635+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
636+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
637+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
638+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
639+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
640+SUCH DAMAGES.
641+
642+ 17. Interpretation of Sections 15 and 16.
643+
644+ If the disclaimer of warranty and limitation of liability provided
645+above cannot be given local legal effect according to their terms,
646+reviewing courts shall apply local law that most closely approximates
647+an absolute waiver of all civil liability in connection with the
648+Program, unless a warranty or assumption of liability accompanies a
649+copy of the Program in return for a fee.
650+
651+ END OF TERMS AND CONDITIONS
652+
653+ How to Apply These Terms to Your New Programs
654+
655+ If you develop a new program, and you want it to be of the greatest
656+possible use to the public, the best way to achieve this is to make it
657+free software which everyone can redistribute and change under these terms.
658+
659+ To do so, attach the following notices to the program. It is safest
660+to attach them to the start of each source file to most effectively
661+state the exclusion of warranty; and each file should have at least
662+the "copyright" line and a pointer to where the full notice is found.
663+
664+ <one line to give the program's name and a brief idea of what it does.>
665+ Copyright (C) <year> <name of author>
666+
667+ This program is free software: you can redistribute it and/or modify
668+ it under the terms of the GNU General Public License as published by
669+ the Free Software Foundation, either version 3 of the License, or
670+ (at your option) any later version.
671+
672+ This program is distributed in the hope that it will be useful,
673+ but WITHOUT ANY WARRANTY; without even the implied warranty of
674+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
675+ GNU General Public License for more details.
676+
677+ You should have received a copy of the GNU General Public License
678+ along with this program. If not, see <http://www.gnu.org/licenses/>.
679+
680+Also add information on how to contact you by electronic and paper mail.
681+
682+ If the program does terminal interaction, make it output a short
683+notice like this when it starts in an interactive mode:
684+
685+ <program> Copyright (C) <year> <name of author>
686+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
687+ This is free software, and you are welcome to redistribute it
688+ under certain conditions; type `show c' for details.
689+
690+The hypothetical commands `show w' and `show c' should show the appropriate
691+parts of the General Public License. Of course, your program's commands
692+might be different; for a GUI interface, you would use an "about box".
693+
694+ You should also get your employer (if you work as a programmer) or school,
695+if any, to sign a "copyright disclaimer" for the program, if necessary.
696+For more information on this, and how to apply and follow the GNU GPL, see
697+<http://www.gnu.org/licenses/>.
698+
699+ The GNU General Public License does not permit incorporating your program
700+into proprietary programs. If your program is a subroutine library, you
701+may consider it more useful to permit linking proprietary applications with
702+the library. If this is what you want to do, use the GNU Lesser General
703+Public License instead of this License. But first, please read
704+<http://www.gnu.org/philosophy/why-not-lgpl.html>.
705+
706
707=== added file 'COPYING.LGPL'
708--- COPYING.LGPL 1970-01-01 00:00:00 +0000
709+++ COPYING.LGPL 2010-08-30 09:34:07 +0000
710@@ -0,0 +1,165 @@
711+ GNU LESSER GENERAL PUBLIC LICENSE
712+ Version 3, 29 June 2007
713+
714+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
715+ Everyone is permitted to copy and distribute verbatim copies
716+ of this license document, but changing it is not allowed.
717+
718+
719+ This version of the GNU Lesser General Public License incorporates
720+the terms and conditions of version 3 of the GNU General Public
721+License, supplemented by the additional permissions listed below.
722+
723+ 0. Additional Definitions.
724+
725+ As used herein, "this License" refers to version 3 of the GNU Lesser
726+General Public License, and the "GNU GPL" refers to version 3 of the GNU
727+General Public License.
728+
729+ "The Library" refers to a covered work governed by this License,
730+other than an Application or a Combined Work as defined below.
731+
732+ An "Application" is any work that makes use of an interface provided
733+by the Library, but which is not otherwise based on the Library.
734+Defining a subclass of a class defined by the Library is deemed a mode
735+of using an interface provided by the Library.
736+
737+ A "Combined Work" is a work produced by combining or linking an
738+Application with the Library. The particular version of the Library
739+with which the Combined Work was made is also called the "Linked
740+Version".
741+
742+ The "Minimal Corresponding Source" for a Combined Work means the
743+Corresponding Source for the Combined Work, excluding any source code
744+for portions of the Combined Work that, considered in isolation, are
745+based on the Application, and not on the Linked Version.
746+
747+ The "Corresponding Application Code" for a Combined Work means the
748+object code and/or source code for the Application, including any data
749+and utility programs needed for reproducing the Combined Work from the
750+Application, but excluding the System Libraries of the Combined Work.
751+
752+ 1. Exception to Section 3 of the GNU GPL.
753+
754+ You may convey a covered work under sections 3 and 4 of this License
755+without being bound by section 3 of the GNU GPL.
756+
757+ 2. Conveying Modified Versions.
758+
759+ If you modify a copy of the Library, and, in your modifications, a
760+facility refers to a function or data to be supplied by an Application
761+that uses the facility (other than as an argument passed when the
762+facility is invoked), then you may convey a copy of the modified
763+version:
764+
765+ a) under this License, provided that you make a good faith effort to
766+ ensure that, in the event an Application does not supply the
767+ function or data, the facility still operates, and performs
768+ whatever part of its purpose remains meaningful, or
769+
770+ b) under the GNU GPL, with none of the additional permissions of
771+ this License applicable to that copy.
772+
773+ 3. Object Code Incorporating Material from Library Header Files.
774+
775+ The object code form of an Application may incorporate material from
776+a header file that is part of the Library. You may convey such object
777+code under terms of your choice, provided that, if the incorporated
778+material is not limited to numerical parameters, data structure
779+layouts and accessors, or small macros, inline functions and templates
780+(ten or fewer lines in length), you do both of the following:
781+
782+ a) Give prominent notice with each copy of the object code that the
783+ Library is used in it and that the Library and its use are
784+ covered by this License.
785+
786+ b) Accompany the object code with a copy of the GNU GPL and this license
787+ document.
788+
789+ 4. Combined Works.
790+
791+ You may convey a Combined Work under terms of your choice that,
792+taken together, effectively do not restrict modification of the
793+portions of the Library contained in the Combined Work and reverse
794+engineering for debugging such modifications, if you also do each of
795+the following:
796+
797+ a) Give prominent notice with each copy of the Combined Work that
798+ the Library is used in it and that the Library and its use are
799+ covered by this License.
800+
801+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
802+ document.
803+
804+ c) For a Combined Work that displays copyright notices during
805+ execution, include the copyright notice for the Library among
806+ these notices, as well as a reference directing the user to the
807+ copies of the GNU GPL and this license document.
808+
809+ d) Do one of the following:
810+
811+ 0) Convey the Minimal Corresponding Source under the terms of this
812+ License, and the Corresponding Application Code in a form
813+ suitable for, and under terms that permit, the user to
814+ recombine or relink the Application with a modified version of
815+ the Linked Version to produce a modified Combined Work, in the
816+ manner specified by section 6 of the GNU GPL for conveying
817+ Corresponding Source.
818+
819+ 1) Use a suitable shared library mechanism for linking with the
820+ Library. A suitable mechanism is one that (a) uses at run time
821+ a copy of the Library already present on the user's computer
822+ system, and (b) will operate properly with a modified version
823+ of the Library that is interface-compatible with the Linked
824+ Version.
825+
826+ e) Provide Installation Information, but only if you would otherwise
827+ be required to provide such information under section 6 of the
828+ GNU GPL, and only to the extent that such information is
829+ necessary to install and execute a modified version of the
830+ Combined Work produced by recombining or relinking the
831+ Application with a modified version of the Linked Version. (If
832+ you use option 4d0, the Installation Information must accompany
833+ the Minimal Corresponding Source and Corresponding Application
834+ Code. If you use option 4d1, you must provide the Installation
835+ Information in the manner specified by section 6 of the GNU GPL
836+ for conveying Corresponding Source.)
837+
838+ 5. Combined Libraries.
839+
840+ You may place library facilities that are a work based on the
841+Library side by side in a single library together with other library
842+facilities that are not Applications and are not covered by this
843+License, and convey such a combined library under terms of your
844+choice, if you do both of the following:
845+
846+ a) Accompany the combined library with a copy of the same work based
847+ on the Library, uncombined with any other library facilities,
848+ conveyed under the terms of this License.
849+
850+ b) Give prominent notice with the combined library that part of it
851+ is a work based on the Library, and explaining where to find the
852+ accompanying uncombined form of the same work.
853+
854+ 6. Revised Versions of the GNU Lesser General Public License.
855+
856+ The Free Software Foundation may publish revised and/or new versions
857+of the GNU Lesser General Public License from time to time. Such new
858+versions will be similar in spirit to the present version, but may
859+differ in detail to address new problems or concerns.
860+
861+ Each version is given a distinguishing version number. If the
862+Library as you received it specifies that a certain numbered version
863+of the GNU Lesser General Public License "or any later version"
864+applies to it, you have the option of following the terms and
865+conditions either of that published version or of any later version
866+published by the Free Software Foundation. If the Library as you
867+received it does not specify a version number of the GNU Lesser
868+General Public License, you may choose any version of the GNU Lesser
869+General Public License ever published by the Free Software Foundation.
870+
871+ If the Library as you received it specifies that a proxy can decide
872+whether future versions of the GNU Lesser General Public License shall
873+apply, that proxy's public statement of acceptance of any version is
874+permanent authorization for you to choose that version for the
875+Library.
876
877=== renamed file 'COPYING.LGPL' => 'COPYING.LGPL.moved'
878=== renamed file 'COPYING' => 'COPYING.moved'
879=== added file 'README'
880--- README 1970-01-01 00:00:00 +0000
881+++ README 2010-08-30 09:34:07 +0000
882@@ -0,0 +1,62 @@
883+= User notes =
884+
885+The software-center application aims to make the software handling on
886+the computer easy and consistent.
887+
888+= Developer notes =
889+
890+All non UI code must come with tests in the test/ subdirectoy.
891+
892+== aptdaemon ==
893+ * the dbus limits for the system bus are rather low, this means that
894+ adding <limit name="max_match_rules_per_connection">512</limit>
895+ and using something bigger than 512 is a good idea
896+
897+== applications.menu ==
898+
899+The menu file parser understands:
900+Category, And, Or, Not
901+
902+The following additional XML filters are definied:
903+SCType - e.g. "Applicatin"
904+SCChannel - e.g. "lucid-partner"
905+SCSection - e.g. "net"
906+SCPkgname - e.g. "gimp"
907+
908+Additional .menu files can be added in:
909+/usr/share/app-install/menu.d
910+that software-center will read and parse.
911+
912+== XAPIAN ==
913+
914+The following special prefixes are used:
915+
916+AA - application name (Abiword)
917+AP - package name (abiword)
918+AS - archive pocket (main)
919+AE - archive section (mail, base, ...)
920+AC - category (AudioVideo)
921+AT - type (Application)
922+AH - channel
923+
924+
925+The following values are used:
926+
927+XAPIAN_VALUE_PKGNAME - pkgname
928+XAPIAN_VALUE_ICON - icon name
929+XAPIAN_VALUE_GETTEXT_DOMAIN - gettext domain
930+XAPIAN_VALUE_ARCHIVE_SECTION - archive section (main, restricted, universe, multiverse)
931+XAPIAN_VALUE_ARCHIVE_ARCH - architectures (seperated with ",", e.g. i386,amd64) - may be empty
932+XAPIAN_VALUE_POPCON - popcon data
933+XAPIAN_VALUE_SUMMARY - summary text
934+XAPIAN_VALUE_DESKTOP_FILE - the desktop file that the information comes from
935+XAPIAN_VALUE_PRICE - the price (if its a for-pay app)
936+XAPIAN_VALUE_ARCHIVE_CHANNEL - channel (third party)
937+XAPIAN_VALUE_ARCHIVE_PPA - the PPA name that the application is in
938+XAPIAN_VALUE_ARCHIVE_DEBLINE - a deb line for the sources.list to access the given app
939+XAPIAN_VALUE_ARCHIVE_SIGNING_KEYID - signing key id for the repository
940+XAPIAN_VALUE_PURCHASED_DATE - the data a for-pay app was purchased (only available after the software-center-agent server was queried)
941+XAPIAN_VALUE_SCREENSHOT_URL - a (optional) screenshot url that overrides the default
942+XAPIAN_VALUE_ICON_NEEDS_DOWNLOAD - icon needs to be fetched
943+XAPIAN_VALUE_THUMBNAIL_URL - thumbnail url
944+
945
946=== renamed file 'README' => 'README.moved'
947=== added file 'TODO'
948--- TODO 1970-01-01 00:00:00 +0000
949+++ TODO 2010-08-30 09:34:07 +0000
950@@ -0,0 +1,79 @@
951+
952+Buy something:
953+- centralize the Install/Remove/Buy/etc/ functionality as a gtk.Action
954+ and wire it to 1) the menu, 2) applist button and 3) appdetails
955+ button (tremolux)
956+- fetch the metadata as part of the update-software-center-agent-db
957+- do screenshot by constructing screenshot urls from update_sc_agent
958+ via entry.screenshot_url by using the archive_id
959+
960+Code:
961+- make the order of "cache, db, datadir" identical
962+ accross the various widgets (e.g. AppDetailsView
963+ and AppStore use different ordering)
964+
965+Webkit:
966+- xpm images can not be loaded
967+- only simple keyboard nagvigation in the widgets (tab, no
968+ cursor keys)
969+- make the description -> html processing better, use
970+ code from g-a-i for this
971+
972+Missing functionality compared to g-a-i:
973+- displaying EULA
974+- enable of components (like universe)
975+
976+UI:
977+- if a package is only available for a subset of the
978+ architectures, do the same as g-a-i and display that in
979+ the details UI (e.g. qlix not available on amd64)
980+- add warning if a package is removed that causes the removal
981+ of a unreleated meta-package (that is not ubuntu-desktop)
982+- implement the removal dialog in the way the spec calls for
983+ it (different ui design)
984+- implement warning when a package contains of multiple apps
985+ and show the apps in this case
986+- CellRendererTextWithActivateArrow needs a mode for
987+ right-to-left languages and a button-pressed image
988+- refresh app list when a package gets installed (some
989+ packages may no longer be installed/not installed)
990+
991+Database:
992+- to extend to full axi
993+ * change set_data() from appname to pkgname
994+ * make database.get_xapian_document() work with empty appname
995+
996+Missing:
997+- when the xapian db is rebuilding (e.g. because app-center is
998+ upgraded) wait for that (just like with the apt cache)
999+- pimping of apps (via tweaking the popcon values?)
1000+
1001+Missing (hard):
1002+- keep track of all pending transactions in the apt cache and when
1003+ a transaction finishes.
1004+- when a package is marked for install, block its (and the other
1005+ pkgs that get installed) action button in the app details view.
1006+- think more about all the possible cases with manipulating
1007+ pkgs that are also in a queue of pending transactions and the
1008+ UI implications that have:
1009+ e.g.:
1010+ - A depends on B
1011+ - A is in the queue for install (but not installed now)
1012+ - B is installed now
1013+ - the user clicks on removal of B
1014+ -> what should the UI say?
1015+ "removal of B will result in the removal of A that will get "
1016+ "installed at some point in the future?"
1017+ -> what implications does cancel of transactions have?
1018+ we need re-calculate the cache when a cancel happens
1019+ -> what about transactions that come from outside of
1020+ software-store
1021+
1022+Missing but not so important:
1023+- searching for codecs (now done by gnome-codec-install)
1024+- searching for mime-types (?)
1025+
1026+- Provide terminal in transactions (?)
1027+
1028+
1029+
1030
1031=== renamed file 'TODO' => 'TODO.moved'
1032=== added directory 'apt-xapian-index-plugin'
1033=== renamed directory 'apt-xapian-index-plugin' => 'apt-xapian-index-plugin.moved'
1034=== added file 'apt-xapian-index-plugin/origin.py'
1035--- apt-xapian-index-plugin/origin.py 1970-01-01 00:00:00 +0000
1036+++ apt-xapian-index-plugin/origin.py 2010-08-30 09:34:07 +0000
1037@@ -0,0 +1,98 @@
1038+# Add origin tags to the index
1039+
1040+import apt
1041+import re
1042+import os
1043+
1044+class OriginPlugin:
1045+ def info(self):
1046+ """
1047+ Return general information about the plugin.
1048+
1049+ The information returned is a dict with various keywords:
1050+
1051+ timestamp (required)
1052+ the last modified timestamp of this data source. This will be used
1053+ to see if we need to update the database or not. A timestamp of 0
1054+ means that this data source is either missing or always up to date.
1055+ values (optional)
1056+ an array of dicts { name: name, desc: description }, one for every
1057+ numeric value indexed by this data source.
1058+
1059+ Note that this method can be called before init. The idea is that, if
1060+ the timestamp shows that this plugin is currently not needed, then the
1061+ long initialisation can just be skipped.
1062+ """
1063+ file = apt.apt_pkg.config.find_file("Dir::Cache::pkgcache")
1064+ return dict(timestamp = os.path.getmtime(file))
1065+
1066+ def init(self, info, progress):
1067+ """
1068+ If needed, perform long initialisation tasks here.
1069+
1070+ info is a dictionary with useful information. Currently it contains
1071+ the following values:
1072+
1073+ "values": a dict mapping index mnemonics to index numbers
1074+
1075+ The progress indicator can be used to report progress.
1076+ """
1077+ pass
1078+
1079+ def doc(self):
1080+ """
1081+ Return documentation information for this data source.
1082+
1083+ The documentation information is a dictionary with these keys:
1084+ name: the name for this data source
1085+ shortDesc: a short description
1086+ fullDoc: the full description as a chapter in ReST format
1087+ """
1088+ return dict(
1089+ name = "Origin",
1090+ shortDesc = "Origin information",
1091+ fullDoc = """
1092+ The Origin data source indexes origin information
1093+ It uses the prefix XO
1094+ """
1095+ )
1096+
1097+
1098+ def index(self, document, pkg):
1099+ """
1100+ Update the document with the information from this data source.
1101+
1102+ document is the document to update
1103+ pkg is the python-apt Package object for this package
1104+ """
1105+ ver = pkg.candidate
1106+ if ver is None:
1107+ return
1108+ if not ver.downloadable:
1109+ document.add_term("XOL"+"notdownloadable")
1110+ for origin in ver.origins:
1111+ document.add_term("XOA"+origin.archive)
1112+ document.add_term("XOC"+origin.component)
1113+ document.add_term("XOL"+origin.label)
1114+ document.add_term("XOO"+origin.origin)
1115+ document.add_term("XOS"+origin.site)
1116+
1117+ def indexDeb822(self, document, pkg):
1118+ """
1119+ Update the document with the information from this data source.
1120+
1121+ This is alternative to index, and it is used when indexing with package
1122+ data taken from a custom Packages file.
1123+
1124+ document is the document to update
1125+ pkg is the Deb822 object for this package
1126+ """
1127+ # NOTHING here, does not make sense for non-downloadable data
1128+ return
1129+
1130+
1131+def init():
1132+ """
1133+ Create and return the plugin object.
1134+ """
1135+ return OriginPlugin()
1136
1137=== added file 'apt-xapian-index-plugin/software-center.py'
1138--- apt-xapian-index-plugin/software-center.py 1970-01-01 00:00:00 +0000
1139+++ apt-xapian-index-plugin/software-center.py 2010-08-30 09:34:07 +0000
1140@@ -0,0 +1,130 @@
1141+# add software-center custom metadata to the index
1142+
1143+import apt
1144+import re
1145+import os
1146+import sys
1147+import xapian
1148+
1149+sys.path.insert(0, "/usr/share/software-center")
1150+from softwarecenter.db.update import *
1151+
1152+class SoftwareCenterMetadataPlugin:
1153+ def info(self):
1154+ """
1155+ Return general information about the plugin.
1156+
1157+ The information returned is a dict with various keywords:
1158+
1159+ timestamp (required)
1160+ the last modified timestamp of this data source. This will be used
1161+ to see if we need to update the database or not. A timestamp of 0
1162+ means that this data source is either missing or always up to date.
1163+ values (optional)
1164+ an array of dicts { name: name, desc: description }, one for every
1165+ numeric value indexed by this data source.
1166+
1167+ Note that this method can be called before init. The idea is that, if
1168+ the timestamp shows that this plugin is currently not needed, then the
1169+ long initialisation can just be skipped.
1170+ """
1171+ file = apt.apt_pkg.config.find_file("Dir::Cache::pkgcache")
1172+ return dict(timestamp = os.path.getmtime(file))
1173+
1174+ def init(self, info, progress):
1175+ """
1176+ If needed, perform long initialisation tasks here.
1177+
1178+ info is a dictionary with useful information. Currently it contains
1179+ the following values:
1180+
1181+ "values": a dict mapping index mnemonics to index numbers
1182+
1183+ The progress indicator can be used to report progress.
1184+ """
1185+ self.indexer = xapian.TermGenerator()
1186+
1187+ def doc(self):
1188+ """
1189+ Return documentation information for this data source.
1190+
1191+ The documentation information is a dictionary with these keys:
1192+ name: the name for this data source
1193+ shortDesc: a short description
1194+ fullDoc: the full description as a chapter in ReST format
1195+ """
1196+ return dict(
1197+ name = "SoftwareCenterMetadata",
1198+ shortDesc = "SoftwareCenter meta information",
1199+ fullDoc = """
1200+ Software-center metadata
1201+ It uses the prefixes:
1202+ AA for the Application name
1203+ AP for the Package name
1204+ AC for the categories
1205+ AT to "application" for applications
1206+ It sets the following xapian values from the software-center
1207+ enums:
1208+ XAPIAN_VALUE_ICON
1209+ XAPIAN_VALUE_ICON_NEEDS_DOWNLOAD
1210+ XAPIAN_VALUE_SCREENSHOT_URL
1211+ XAPIAN_VALUE_THUMBNAIL_URL
1212+ """
1213+ )
1214+
1215+
1216+ def index(self, document, pkg):
1217+ """
1218+ Update the document with the information from this data source.
1219+
1220+ document is the document to update
1221+ pkg is the python-apt Package object for this package
1222+ """
1223+ ver = pkg.candidate
1224+ # if there is no version or the AppName custom key is not
1225+ # found we can skip the pkg
1226+ if ver is None or not CUSTOM_KEY_APPNAME in ver.record:
1227+ return
1228+ # we want to index the following custom fields:
1229+ # XB-AppName, XB-Icon, XB-Screenshot-Url, XB-Thumbnail-Url, XB-Category
1230+ if CUSTOM_KEY_APPNAME in ver.record:
1231+ name = ver.record[CUSTOM_KEY_APPNAME]
1232+ self.indexer.set_document(document)
1233+ index_name(document, name, self.indexer)
1234+ # we pretend to be an application
1235+ document.add_term("AT"+"application")
1236+ if CUSTOM_KEY_ICON in ver.record:
1237+ icon = ver.record[CUSTOM_KEY_ICON]
1238+ document.add_value(XAPIAN_VALUE_ICON, icon)
1239+ document.add_value(XAPIAN_VALUE_ICON_NEEDS_DOWNLOAD, "1")
1240+ if CUSTOM_KEY_SCREENSHOT_URL in ver.record:
1241+ screenshot_url = ver.record[CUSTOM_KEY_SCREENSHOT_URL]
1242+ document.add_value(XAPIAN_VALUE_SCREENSHOT_URL, screenshot_url)
1243+ if CUSTOM_KEY_THUMBNAIL_URL in ver.record:
1244+ url = ver.record[CUSTOM_KEY_THUMBNAIL_URL]
1245+ document.add_value(XAPIAN_VALUE_THUMBNAIL_URL, url)
1246+ if CUSTOM_KEY_CATEGORY in ver.record:
1247+ categories_str = ver.record[CUSTOM_KEY_CATEGORY]
1248+ for cat in categories_str.split(";"):
1249+ if cat:
1250+ document.add_term("AC"+cat.lower())
1251+
1252+ def indexDeb822(self, document, pkg):
1253+ """
1254+ Update the document with the information from this data source.
1255+
1256+ This is alternative to index, and it is used when indexing with package
1257+ data taken from a custom Packages file.
1258+
1259+ document is the document to update
1260+ pkg is the Deb822 object for this package
1261+ """
1262+ # NOTHING here, does not make sense for non-downloadable data
1263+ return
1264+
1265+
1266+def init():
1267+ """
1268+ Create and return the plugin object.
1269+ """
1270+ return SoftwareCenterMetadataPlugin()
1271
1272=== added directory 'data'
1273=== renamed directory 'data' => 'data.moved'
1274=== added file 'data/apt.protocol'
1275--- data/apt.protocol 1970-01-01 00:00:00 +0000
1276+++ data/apt.protocol 2010-08-30 09:34:07 +0000
1277@@ -0,0 +1,12 @@
1278+[Protocol]
1279+exec=software-center %u
1280+protocol=apt
1281+input=none
1282+output=none
1283+helper=true
1284+listing=false
1285+reading=false
1286+writing=false
1287+makedir=false
1288+deleting=false
1289+Icon=application-x-deb
1290
1291=== added file 'data/com.ubuntu.SoftwareCenter.conf'
1292--- data/com.ubuntu.SoftwareCenter.conf 1970-01-01 00:00:00 +0000
1293+++ data/com.ubuntu.SoftwareCenter.conf 2010-08-30 09:34:07 +0000
1294@@ -0,0 +1,15 @@
1295+<!DOCTYPE busconfig PUBLIC
1296+ "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
1297+ "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
1298+<busconfig>
1299+ <policy user="root">
1300+ <allow own="com.ubuntu.Softwarecenter"/>
1301+ </policy>
1302+
1303+ <policy context="default">
1304+ <allow send_interface="com.ubuntu.Softwarecenter"/>
1305+ <allow receive_interface="com.ubuntu.Softwarecenter"
1306+ receive_sender="com.ubuntu.Softwarecenter"/>
1307+ </policy>
1308+
1309+</busconfig>
1310
1311=== added directory 'data/emblems'
1312=== added file 'data/emblems/sc-emblem-favorite-not.png'
1313Binary files data/emblems/sc-emblem-favorite-not.png 1970-01-01 00:00:00 +0000 and data/emblems/sc-emblem-favorite-not.png 2010-08-30 09:34:07 +0000 differ
1314=== added file 'data/emblems/sc-emblem-favorite.png'
1315Binary files data/emblems/sc-emblem-favorite.png 1970-01-01 00:00:00 +0000 and data/emblems/sc-emblem-favorite.png 2010-08-30 09:34:07 +0000 differ
1316=== added file 'data/emblems/software-center-installed.png'
1317Binary files data/emblems/software-center-installed.png 1970-01-01 00:00:00 +0000 and data/emblems/software-center-installed.png 2010-08-30 09:34:07 +0000 differ
1318=== added file 'data/featured.menu.in'
1319--- data/featured.menu.in 1970-01-01 00:00:00 +0000
1320+++ data/featured.menu.in 2010-08-30 09:34:07 +0000
1321@@ -0,0 +1,32 @@
1322+<Menu>
1323+ <Menu>
1324+ <_Name>Featured</_Name>
1325+ <SCIcon>gtk-about</SCIcon>
1326+ <Include>
1327+ <Or>
1328+ <SCPkgname>cheese</SCPkgname>
1329+ <SCPkgname>homebank</SCPkgname>
1330+ <SCPkgname>stellarium</SCPkgname>
1331+ <SCPkgname>gnome-do</SCPkgname>
1332+ <SCPkgname>deja-dup</SCPkgname>
1333+ <SCPkgname>gimp</SCPkgname>
1334+ <SCPkgname>inkscape</SCPkgname>
1335+ <SCPkgname>blender</SCPkgname>
1336+ <SCPkgname>audacity</SCPkgname>
1337+ <SCPkgname>gufw</SCPkgname>
1338+ <SCPkgname>frozen-bubble</SCPkgname>
1339+ <SCPkgname>fretsonfire-game</SCPkgname>
1340+ <SCPkgname>pingus</SCPkgname>
1341+ <SCPkgname>moovida</SCPkgname>
1342+ <SCPkgname>liferea</SCPkgname>
1343+ <SCPkgname>arista</SCPkgname>
1344+ <SCPkgname>gtg</SCPkgname>
1345+ <SCPkgname>freeciv-client-gtk</SCPkgname>
1346+ <SCPkgname>supertuxkart</SCPkgname>
1347+ <SCPkgname>tumiki-fighters</SCPkgname>
1348+ <SCPkgname>tuxpaint</SCPkgname>
1349+ <SCPkgname>webservice-office-zoho</SCPkgname>
1350+ </Or>
1351+ </Include>
1352+ </Menu>
1353+</Menu>
1354
1355=== added directory 'data/icons'
1356=== added directory 'data/icons/128x128'
1357=== added directory 'data/icons/128x128/apps'
1358=== added file 'data/icons/128x128/apps/softwarecenter.png'
1359Binary files data/icons/128x128/apps/softwarecenter.png 1970-01-01 00:00:00 +0000 and data/icons/128x128/apps/softwarecenter.png 2010-08-30 09:34:07 +0000 differ
1360=== added directory 'data/icons/16x16'
1361=== added directory 'data/icons/16x16/apps'
1362=== added file 'data/icons/16x16/apps/softwarecenter.png'
1363Binary files data/icons/16x16/apps/softwarecenter.png 1970-01-01 00:00:00 +0000 and data/icons/16x16/apps/softwarecenter.png 2010-08-30 09:34:07 +0000 differ
1364=== added directory 'data/icons/22x22'
1365=== added directory 'data/icons/22x22/apps'
1366=== added file 'data/icons/22x22/apps/softwarecenter.png'
1367Binary files data/icons/22x22/apps/softwarecenter.png 1970-01-01 00:00:00 +0000 and data/icons/22x22/apps/softwarecenter.png 2010-08-30 09:34:07 +0000 differ
1368=== added directory 'data/icons/24x24'
1369=== added directory 'data/icons/24x24/apps'
1370=== added file 'data/icons/24x24/apps/ppa.svg'
1371--- data/icons/24x24/apps/ppa.svg 1970-01-01 00:00:00 +0000
1372+++ data/icons/24x24/apps/ppa.svg 2010-08-30 09:34:07 +0000
1373@@ -0,0 +1,675 @@
1374+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
1375+<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
1376+
1377+<svg
1378+ xmlns:dc="http://purl.org/dc/elements/1.1/"
1379+ xmlns:cc="http://creativecommons.org/ns#"
1380+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
1381+ xmlns:svg="http://www.w3.org/2000/svg"
1382+ xmlns="http://www.w3.org/2000/svg"
1383+ xmlns:xlink="http://www.w3.org/1999/xlink"
1384+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
1385+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
1386+ version="1.1"
1387+ id="Layer_1"
1388+ x="0px"
1389+ y="0px"
1390+ width="24"
1391+ height="24"
1392+ viewBox="0 0 24 24"
1393+ enable-background="new 0 0 64 64"
1394+ xml:space="preserve"
1395+ inkscape:version="0.47 r22583"
1396+ sodipodi:docname="ppa.svg"><metadata
1397+ id="metadata3896"><rdf:RDF><cc:Work
1398+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
1399+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
1400+ id="defs3894"><linearGradient
1401+ id="linearGradient6538"><stop
1402+ style="stop-color:#7c6342;stop-opacity:1;"
1403+ offset="0"
1404+ id="stop6540" /><stop
1405+ style="stop-color:#b18d5a;stop-opacity:1;"
1406+ offset="1"
1407+ id="stop6542" /></linearGradient><linearGradient
1408+ id="linearGradient6368"><stop
1409+ style="stop-color:#ac8c5a;stop-opacity:1;"
1410+ offset="0"
1411+ id="stop6370" /><stop
1412+ style="stop-color:#e1bd83;stop-opacity:1;"
1413+ offset="1"
1414+ id="stop6372" /></linearGradient><linearGradient
1415+ id="linearGradient5413"><stop
1416+ style="stop-color:#af7f30;stop-opacity:1;"
1417+ offset="0"
1418+ id="stop5415" /><stop
1419+ style="stop-color:#e1bf88;stop-opacity:1;"
1420+ offset="1"
1421+ id="stop5417" /></linearGradient><linearGradient
1422+ id="linearGradient4972"><stop
1423+ style="stop-color:#b0793e;stop-opacity:1;"
1424+ offset="0"
1425+ id="stop4974" /><stop
1426+ style="stop-color:#6d3701;stop-opacity:0.96862745;"
1427+ offset="1"
1428+ id="stop4976" /></linearGradient><linearGradient
1429+ id="linearGradient4964"><stop
1430+ style="stop-color:#f2c693;stop-opacity:1;"
1431+ offset="0"
1432+ id="stop4966" /><stop
1433+ style="stop-color:#eba455;stop-opacity:1;"
1434+ offset="1"
1435+ id="stop4968" /></linearGradient><inkscape:perspective
1436+ sodipodi:type="inkscape:persp3d"
1437+ inkscape:vp_x="0 : 32 : 1"
1438+ inkscape:vp_y="0 : 1000 : 0"
1439+ inkscape:vp_z="64 : 32 : 1"
1440+ inkscape:persp3d-origin="32 : 21.333333 : 1"
1441+ id="perspective3898" /><linearGradient
1442+ inkscape:collect="always"
1443+ xlink:href="#linearGradient4964"
1444+ id="linearGradient4970"
1445+ x1="21.605072"
1446+ y1="38.16547"
1447+ x2="21.605072"
1448+ y2="29.094639"
1449+ gradientUnits="userSpaceOnUse"
1450+ gradientTransform="matrix(0.99899388,0,0,1.1278963,0.00553364,-7.6098292)" /><linearGradient
1451+ inkscape:collect="always"
1452+ xlink:href="#linearGradient4972"
1453+ id="linearGradient4978"
1454+ x1="25.952381"
1455+ y1="28.000002"
1456+ x2="25.952381"
1457+ y2="63.245014"
1458+ gradientUnits="userSpaceOnUse"
1459+ gradientTransform="matrix(0.99899388,0,0,1.1278963,0.00553364,-7.6098292)" /><inkscape:perspective
1460+ id="perspective4990"
1461+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1462+ inkscape:vp_z="1 : 0.5 : 1"
1463+ inkscape:vp_y="0 : 1000 : 0"
1464+ inkscape:vp_x="0 : 0.5 : 1"
1465+ sodipodi:type="inkscape:persp3d" /><linearGradient
1466+ inkscape:collect="always"
1467+ xlink:href="#linearGradient4964"
1468+ id="linearGradient5127"
1469+ gradientUnits="userSpaceOnUse"
1470+ gradientTransform="matrix(0.99899388,0,0,1.1278963,0.00553364,-7.6098292)"
1471+ x1="21.605072"
1472+ y1="38.16547"
1473+ x2="21.605072"
1474+ y2="29.094639" /><linearGradient
1475+ inkscape:collect="always"
1476+ xlink:href="#linearGradient4972"
1477+ id="linearGradient5129"
1478+ gradientUnits="userSpaceOnUse"
1479+ gradientTransform="matrix(0.99899388,0,0,1.1278963,0.00553364,-7.6098292)"
1480+ x1="25.952381"
1481+ y1="28.000002"
1482+ x2="25.952381"
1483+ y2="63.245014" /><inkscape:perspective
1484+ id="perspective5263"
1485+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1486+ inkscape:vp_z="1 : 0.5 : 1"
1487+ inkscape:vp_y="0 : 1000 : 0"
1488+ inkscape:vp_x="0 : 0.5 : 1"
1489+ sodipodi:type="inkscape:persp3d" /><linearGradient
1490+ x1="24.822832"
1491+ y1="15.377745"
1492+ x2="24.996943"
1493+ y2="37.27668"
1494+ id="linearGradient3018"
1495+ xlink:href="#linearGradient3032"
1496+ gradientUnits="userSpaceOnUse"
1497+ gradientTransform="matrix(0.46923034,0,0,0.56212557,-3.0041886,-7.0808391)" /><linearGradient
1498+ id="linearGradient3032"><stop
1499+ id="stop3034"
1500+ style="stop-color:#dac197;stop-opacity:1"
1501+ offset="0" /><stop
1502+ id="stop3036"
1503+ style="stop-color:#c1a581;stop-opacity:1"
1504+ offset="0.28352803" /><stop
1505+ id="stop3038"
1506+ style="stop-color:#dbc298;stop-opacity:1"
1507+ offset="0.36018604" /><stop
1508+ id="stop3040"
1509+ style="stop-color:#a68b60;stop-opacity:1"
1510+ offset="1" /></linearGradient><linearGradient
1511+ x1="15.464298"
1512+ y1="7.9756851"
1513+ x2="15.464298"
1514+ y2="45.04248"
1515+ id="linearGradient3020"
1516+ xlink:href="#linearGradient3022"
1517+ gradientUnits="userSpaceOnUse"
1518+ gradientTransform="matrix(0.36595005,0,0,0.36097048,-0.7828015,-1.5613271)" /><linearGradient
1519+ id="linearGradient3022"><stop
1520+ id="stop3024"
1521+ style="stop-color:#c9af8b;stop-opacity:1"
1522+ offset="0" /><stop
1523+ id="stop3026"
1524+ style="stop-color:#ad8757;stop-opacity:1"
1525+ offset="0.27982354" /><stop
1526+ id="stop3028"
1527+ style="stop-color:#c2a57f;stop-opacity:1"
1528+ offset="0.3566308" /><stop
1529+ id="stop3030"
1530+ style="stop-color:#9d7d53;stop-opacity:1"
1531+ offset="1" /></linearGradient><linearGradient
1532+ x1="23.451576"
1533+ y1="30.554907"
1534+ x2="43.00663"
1535+ y2="45.934479"
1536+ id="linearGradient3015"
1537+ xlink:href="#linearGradient4559"
1538+ gradientUnits="userSpaceOnUse"
1539+ gradientTransform="matrix(0.46923034,0,0,0.4240274,-3.0041886,-3.4756141)" /><linearGradient
1540+ id="linearGradient4559"><stop
1541+ id="stop4561"
1542+ style="stop-color:white;stop-opacity:0"
1543+ offset="0" /><stop
1544+ id="stop4563"
1545+ style="stop-color:white;stop-opacity:0"
1546+ offset="1" /></linearGradient><linearGradient
1547+ x1="26"
1548+ y1="22"
1549+ x2="26"
1550+ y2="8"
1551+ id="linearGradient3052"
1552+ xlink:href="#linearGradient3054"
1553+ gradientUnits="userSpaceOnUse"
1554+ gradientTransform="matrix(0.49999973,0,0,0.49999987,-3.999993,-2.9999993)" /><linearGradient
1555+ id="linearGradient3054"><stop
1556+ id="stop3056"
1557+ style="stop-color:white;stop-opacity:1"
1558+ offset="0" /><stop
1559+ id="stop3058"
1560+ style="stop-color:white;stop-opacity:1"
1561+ offset="0.29462135" /><stop
1562+ id="stop3060"
1563+ style="stop-color:white;stop-opacity:0.6901961"
1564+ offset="0.43371025" /><stop
1565+ id="stop3062"
1566+ style="stop-color:white;stop-opacity:0"
1567+ offset="1" /></linearGradient><linearGradient
1568+ x1="44.994774"
1569+ y1="17.5"
1570+ x2="3.0052247"
1571+ y2="17.5"
1572+ id="linearGradient3009"
1573+ xlink:href="#linearGradient3275"
1574+ gradientUnits="userSpaceOnUse"
1575+ gradientTransform="matrix(0.36595005,0,0,0.36097048,-0.7828015,-0.81698)"
1576+ spreadMethod="reflect" /><linearGradient
1577+ id="linearGradient3275"><stop
1578+ id="stop3277"
1579+ style="stop-color:white;stop-opacity:0"
1580+ offset="0" /><stop
1581+ id="stop3283"
1582+ style="stop-color:white;stop-opacity:1"
1583+ offset="0.245" /><stop
1584+ id="stop3285"
1585+ style="stop-color:white;stop-opacity:1"
1586+ offset="0.77350003" /><stop
1587+ id="stop3279"
1588+ style="stop-color:white;stop-opacity:0"
1589+ offset="1" /></linearGradient><linearGradient
1590+ y2="17.5"
1591+ x2="3.0052247"
1592+ y1="17.5"
1593+ x1="44.994774"
1594+ spreadMethod="reflect"
1595+ gradientTransform="matrix(0.36595005,0,0,0.36097048,-0.7828015,-0.81698)"
1596+ gradientUnits="userSpaceOnUse"
1597+ id="linearGradient5300"
1598+ xlink:href="#linearGradient3275"
1599+ inkscape:collect="always" /><inkscape:perspective
1600+ id="perspective5385"
1601+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1602+ inkscape:vp_z="1 : 0.5 : 1"
1603+ inkscape:vp_y="0 : 1000 : 0"
1604+ inkscape:vp_x="0 : 0.5 : 1"
1605+ sodipodi:type="inkscape:persp3d" /><linearGradient
1606+ inkscape:collect="always"
1607+ xlink:href="#linearGradient4964"
1608+ id="linearGradient5393"
1609+ gradientUnits="userSpaceOnUse"
1610+ gradientTransform="matrix(0.99899388,0,0,1.1278963,0.00553364,-7.6098292)"
1611+ x1="21.605072"
1612+ y1="38.16547"
1613+ x2="21.605072"
1614+ y2="29.094639" /><linearGradient
1615+ inkscape:collect="always"
1616+ xlink:href="#linearGradient4972"
1617+ id="linearGradient5395"
1618+ gradientUnits="userSpaceOnUse"
1619+ gradientTransform="matrix(0.99899388,0,0,1.1278963,0.00553364,-7.6098292)"
1620+ x1="25.952381"
1621+ y1="28.000002"
1622+ x2="25.952381"
1623+ y2="63.245014" /><linearGradient
1624+ inkscape:collect="always"
1625+ xlink:href="#linearGradient4964"
1626+ id="linearGradient5397"
1627+ gradientUnits="userSpaceOnUse"
1628+ gradientTransform="matrix(0.99899388,0,0,1.1278963,0.00553364,-7.6098292)"
1629+ x1="21.605072"
1630+ y1="38.16547"
1631+ x2="21.605072"
1632+ y2="29.094639" /><linearGradient
1633+ inkscape:collect="always"
1634+ xlink:href="#linearGradient4972"
1635+ id="linearGradient5399"
1636+ gradientUnits="userSpaceOnUse"
1637+ gradientTransform="matrix(0.99899388,0,0,1.1278963,0.00553364,-7.6098292)"
1638+ x1="25.952381"
1639+ y1="28.000002"
1640+ x2="25.952381"
1641+ y2="63.245014" />
1642+
1643+<radialGradient
1644+ inkscape:collect="always"
1645+ xlink:href="#path2411_1_"
1646+ id="radialGradient5631"
1647+ gradientUnits="userSpaceOnUse"
1648+ gradientTransform="matrix(1.6668,0,0,-1.1769222,-333.8102,-248.47353)"
1649+ cx="267.71579"
1650+ cy="-255.16161"
1651+ fx="266.9747"
1652+ fy="-259.14429"
1653+ r="17.212299" /><radialGradient
1654+ inkscape:collect="always"
1655+ xlink:href="#path3247_1_"
1656+ id="radialGradient5639"
1657+ gradientUnits="userSpaceOnUse"
1658+ gradientTransform="matrix(1.5368,0,0,-0.8903,-319.6941,-271.8306)"
1659+ cx="281.3223"
1660+ cy="-357.43259"
1661+ r="5.3999" /><radialGradient
1662+ inkscape:collect="always"
1663+ xlink:href="#path3190_1_"
1664+ id="radialGradient5641"
1665+ gradientUnits="userSpaceOnUse"
1666+ gradientTransform="matrix(1.6210822,0,0.18446354,-1.903778,-230.69868,-151.22623)"
1667+ cx="221.6953"
1668+ cy="-98.467796"
1669+ r="6.7893" /><radialGradient
1670+ inkscape:collect="always"
1671+ xlink:href="#path3196_1_"
1672+ id="radialGradient5643"
1673+ gradientUnits="userSpaceOnUse"
1674+ gradientTransform="matrix(0.97391717,0,0,-0.85203798,-258.5217,-263.72499)"
1675+ cx="379.49799"
1676+ cy="-341.64551"
1677+ r="12.466" /><linearGradient
1678+ gradientTransform="matrix(0.49999973,0,0,0.49999987,-3.999993,-2.9999993)"
1679+ gradientUnits="userSpaceOnUse"
1680+ xlink:href="#linearGradient3054-6"
1681+ id="linearGradient3052-1"
1682+ y2="8"
1683+ x2="26"
1684+ y1="22"
1685+ x1="26" /><linearGradient
1686+ gradientTransform="matrix(0.36595005,0,0,0.36097048,-0.7828015,-1.5613271)"
1687+ gradientUnits="userSpaceOnUse"
1688+ xlink:href="#linearGradient3022-8"
1689+ id="linearGradient3020-6"
1690+ y2="45.04248"
1691+ x2="15.464298"
1692+ y1="7.9756851"
1693+ x1="15.464298" /><linearGradient
1694+ gradientTransform="matrix(0.46923034,0,0,0.56212557,-3.0041886,-7.0808391)"
1695+ gradientUnits="userSpaceOnUse"
1696+ xlink:href="#linearGradient3032-4"
1697+ id="linearGradient3018-1"
1698+ y2="37.27668"
1699+ x2="24.996943"
1700+ y1="15.377745"
1701+ x1="24.822832" /><linearGradient
1702+ gradientTransform="matrix(0.46923034,0,0,0.4240274,-3.0041886,-3.4756141)"
1703+ gradientUnits="userSpaceOnUse"
1704+ xlink:href="#linearGradient4559-6"
1705+ id="linearGradient3015-2"
1706+ y2="45.934479"
1707+ x2="43.00663"
1708+ y1="30.554907"
1709+ x1="23.451576" /><linearGradient
1710+ spreadMethod="reflect"
1711+ gradientTransform="matrix(0.36595005,0,0,0.36097048,-0.7828015,-0.81698)"
1712+ gradientUnits="userSpaceOnUse"
1713+ xlink:href="#linearGradient3275-9"
1714+ id="linearGradient3009-6"
1715+ y2="17.5"
1716+ x2="3.0052247"
1717+ y1="17.5"
1718+ x1="44.994774" /><linearGradient
1719+ id="linearGradient4559-6"><stop
1720+ offset="0"
1721+ style="stop-color:white;stop-opacity:0"
1722+ id="stop4561-3" /><stop
1723+ offset="1"
1724+ style="stop-color:white;stop-opacity:0"
1725+ id="stop4563-8" /></linearGradient><linearGradient
1726+ id="linearGradient3275-9"><stop
1727+ offset="0"
1728+ style="stop-color:white;stop-opacity:0"
1729+ id="stop3277-8" /><stop
1730+ offset="0.245"
1731+ style="stop-color:white;stop-opacity:1"
1732+ id="stop3283-3" /><stop
1733+ offset="0.77350003"
1734+ style="stop-color:white;stop-opacity:1"
1735+ id="stop3285-2" /><stop
1736+ offset="1"
1737+ style="stop-color:white;stop-opacity:0"
1738+ id="stop3279-9" /></linearGradient><linearGradient
1739+ id="linearGradient3022-8"><stop
1740+ offset="0"
1741+ style="stop-color:#c9af8b;stop-opacity:1"
1742+ id="stop3024-5" /><stop
1743+ offset="0.27982354"
1744+ style="stop-color:#ad8757;stop-opacity:1"
1745+ id="stop3026-7" /><stop
1746+ offset="0.3566308"
1747+ style="stop-color:#c2a57f;stop-opacity:1"
1748+ id="stop3028-7" /><stop
1749+ offset="1"
1750+ style="stop-color:#9d7d53;stop-opacity:1"
1751+ id="stop3030-0" /></linearGradient><linearGradient
1752+ id="linearGradient3032-4"><stop
1753+ offset="0"
1754+ style="stop-color:#dac197;stop-opacity:1"
1755+ id="stop3034-7" /><stop
1756+ offset="0.28352803"
1757+ style="stop-color:#c1a581;stop-opacity:1"
1758+ id="stop3036-8" /><stop
1759+ offset="0.36018604"
1760+ style="stop-color:#dbc298;stop-opacity:1"
1761+ id="stop3038-4" /><stop
1762+ offset="1"
1763+ style="stop-color:#a68b60;stop-opacity:1"
1764+ id="stop3040-2" /></linearGradient><linearGradient
1765+ id="linearGradient3054-6"><stop
1766+ offset="0"
1767+ style="stop-color:white;stop-opacity:1"
1768+ id="stop3056-8" /><stop
1769+ offset="0.29462135"
1770+ style="stop-color:white;stop-opacity:1"
1771+ id="stop3058-7" /><stop
1772+ offset="0.43371025"
1773+ style="stop-color:white;stop-opacity:0.6901961"
1774+ id="stop3060-4" /><stop
1775+ offset="1"
1776+ style="stop-color:white;stop-opacity:0"
1777+ id="stop3062-2" /></linearGradient><inkscape:perspective
1778+ id="perspective6332"
1779+ inkscape:persp3d-origin="8 : 5.3333333 : 1"
1780+ inkscape:vp_z="16 : 8 : 1"
1781+ inkscape:vp_y="0 : 1000 : 0"
1782+ inkscape:vp_x="0 : 8 : 1"
1783+ sodipodi:type="inkscape:persp3d" /><linearGradient
1784+ inkscape:collect="always"
1785+ xlink:href="#linearGradient6368"
1786+ id="linearGradient6536"
1787+ gradientUnits="userSpaceOnUse"
1788+ x1="22.982393"
1789+ y1="57.910698"
1790+ x2="22.982393"
1791+ y2="25.329874" /><linearGradient
1792+ inkscape:collect="always"
1793+ xlink:href="#linearGradient6538"
1794+ id="linearGradient6642"
1795+ gradientUnits="userSpaceOnUse"
1796+ x1="13.446543"
1797+ y1="61.089314"
1798+ x2="13.049217"
1799+ y2="22.945908" /></defs><sodipodi:namedview
1800+ pagecolor="#ffffff"
1801+ bordercolor="#666666"
1802+ borderopacity="1"
1803+ objecttolerance="10"
1804+ gridtolerance="10"
1805+ guidetolerance="10"
1806+ inkscape:pageopacity="0"
1807+ inkscape:pageshadow="2"
1808+ inkscape:window-width="1024"
1809+ inkscape:window-height="717"
1810+ id="namedview3892"
1811+ showgrid="false"
1812+ inkscape:snap-to-guides="false"
1813+ inkscape:snap-grids="true"
1814+ inkscape:zoom="11.313708"
1815+ inkscape:cx="23.283174"
1816+ inkscape:cy="15.191664"
1817+ inkscape:window-x="1024"
1818+ inkscape:window-y="24"
1819+ inkscape:window-maximized="1"
1820+ inkscape:current-layer="Layer_1"><inkscape:grid
1821+ type="xygrid"
1822+ id="grid4180"
1823+ empspacing="5"
1824+ visible="true"
1825+ enabled="true"
1826+ snapvisiblegridlinesonly="true" /></sodipodi:namedview>
1827+
1828+
1829+
1830+<use
1831+ x="0"
1832+ y="0"
1833+ xlink:href="#g5108"
1834+ id="use5663"
1835+ transform="translate(2,-8.000001)"
1836+ width="24"
1837+ height="24" /><g
1838+ id="g5108"
1839+ transform="matrix(0.31460224,0,0,0.31460224,0.76977179,2.7811664)"><path
1840+ sodipodi:nodetypes="ccccccc"
1841+ id="path4182"
1842+ d="m 40.449177,35.772638 0.01561,23.727366 -34.964786,0 0.015609,-23.727366 3.2935579,-11.237421 28.3464521,0 3.293558,11.237421 z"
1843+ style="fill:url(#linearGradient6536);fill-opacity:1;stroke:url(#linearGradient6642);stroke-width:3.17861700000000003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><path
1844+ d="M 6.53125,39.5 6.5,58.5 l 33,0 0,-19 -32.96875,0 z"
1845+ id="path5020"
1846+ style="opacity:0.4;fill:none;stroke:#ffffff;stroke-width:3.40750836999999995;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1847+ inkscape:original="M 5.53125 38.5 L 5.5 59.5 L 40.5 59.5 L 40.5 38.5 L 5.53125 38.5 z "
1848+ inkscape:radius="-1"
1849+ sodipodi:type="inkscape:offset"
1850+ transform="matrix(0.86689552,0,0,1.0037737,3.0435288,-2.3993796)" /><path
1851+ sodipodi:type="inkscape:offset"
1852+ inkscape:radius="-3.1629171"
1853+ inkscape:original="M 8.78125 24.53125 L 5.5 37.25 L 40.46875 37.25 L 37.15625 24.53125 L 8.78125 24.53125 z "
1854+ style="opacity:0.3;fill:none;stroke:#ffffff;stroke-width:3.17682242000000015;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
1855+ id="path5106"
1856+ d="m 11.21875,27.6875 -1.625,6.40625 26.78125,0 -1.65625,-6.40625 -23.5,0 z"
1857+ transform="matrix(1.0088492,0,0,0.99234868,-0.36457432,0.23817784)" /></g><g
1858+ transform="matrix(0.29629134,0,0,0.29143184,-16.314333,3.1397926)"
1859+ id="g3267">
1860+
1861+ <radialGradient
1862+ gradientUnits="userSpaceOnUse"
1863+ gradientTransform="matrix(1.6668,0,0,-1.1576,-333.8102,-243.3599)"
1864+ fy="-259.14429"
1865+ fx="266.9747"
1866+ r="17.212299"
1867+ cy="-255.16161"
1868+ cx="267.71579"
1869+ id="path2411_1_">
1870+ <stop
1871+ id="stop3846"
1872+ style="stop-color:#5E90D2"
1873+ offset="0" />
1874+ <stop
1875+ id="stop3848"
1876+ style="stop-color:#265899"
1877+ offset="0.4529" />
1878+ <stop
1879+ id="stop3850"
1880+ style="stop-color:#133055"
1881+ offset="1" />
1882+ </radialGradient>
1883+ <path
1884+ style="fill:url(#radialGradient5631);stroke:#1c447a;stroke-width:3.40307927000000010;stroke-linecap:square;stroke-opacity:1"
1885+ d="m 131,55.018974 c 0,5.514535 -7.561,7.981029 -16.875,7.981029 -9.314,0 -16.875,-2.466494 -16.875,-7.981029 0,-5.514536 7.561,-12.606976 16.875,-12.606976 9.314,0 16.875,7.093457 16.875,12.606976 z"
1886+ nodetypes="csssc"
1887+ id="path2411" /><path
1888+ id="path5659"
1889+ nodetypes="csssc"
1890+ d="m 128.46871,54.658626 c 0,4.144094 -6.42683,5.997628 -14.34371,5.997628 -7.91688,0 -14.343708,-1.853534 -14.343708,-5.997628 0,-4.144095 6.426828,-9.473962 14.343708,-9.473962 7.91688,0 14.34371,5.33063 14.34371,9.473962 z"
1891+ style="opacity:0.4;fill:none;stroke:#ffffff;stroke-width:1.70153939999999992;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
1892+
1893+ <linearGradient
1894+ gradientTransform="matrix(1,0,0,-1,-267.5,-258)"
1895+ y2="-315.37549"
1896+ x2="381.625"
1897+ y1="-331.63089"
1898+ x1="381.625"
1899+ gradientUnits="userSpaceOnUse"
1900+ id="path3257_1_">
1901+ <stop
1902+ id="stop3854"
1903+ style="stop-color:#000000"
1904+ offset="0" />
1905+ <stop
1906+ id="stop3856"
1907+ style="stop-color:#000000"
1908+ offset="1" />
1909+ </linearGradient>
1910+
1911+ <linearGradient
1912+ y2="65.713898"
1913+ x2="119.75"
1914+ y1="92.500999"
1915+ x1="119.75"
1916+ gradientUnits="userSpaceOnUse"
1917+ id="path3194_1_">
1918+ <stop
1919+ id="stop3860"
1920+ style="stop-color:#FFFFFF"
1921+ offset="0" />
1922+ <stop
1923+ id="stop3862"
1924+ style="stop-color:#FFFFFF"
1925+ offset="1" />
1926+ </linearGradient>
1927+
1928+
1929+ <path
1930+ style="fill:#eeeeec;stroke:#204a87;stroke-width:3.40307927"
1931+ d="m 106.025,45.331 c 0,0 0.763,8.219 4.338,8.219 4.913,0 10.233,-8.774 10.233,-8.774 l -14.571,0.555 z"
1932+ nodetypes="cscc"
1933+ id="path3201" />
1934+ <linearGradient
1935+ y2="93.546204"
1936+ x2="26.3228"
1937+ y1="80.750999"
1938+ x1="26.3228"
1939+ gradientUnits="userSpaceOnUse"
1940+ id="path3203_1_">
1941+ <stop
1942+ id="stop3867"
1943+ style="stop-color:#FFFFFF"
1944+ offset="0" />
1945+ <stop
1946+ id="stop3869"
1947+ style="stop-color:#FFFFFF"
1948+ offset="1" />
1949+ </linearGradient>
1950+
1951+
1952+
1953+ <radialGradient
1954+ gradientUnits="userSpaceOnUse"
1955+ gradientTransform="matrix(1.5368,0,0,-0.8903,-319.6941,-271.8306)"
1956+ r="5.3999"
1957+ cy="-357.43259"
1958+ cx="281.3223"
1959+ id="path3247_1_">
1960+ <stop
1961+ id="stop3873"
1962+ style="stop-color:#000000"
1963+ offset="0" />
1964+ <stop
1965+ id="stop3875"
1966+ style="stop-color:#000000"
1967+ offset="1" />
1968+ </radialGradient>
1969+
1970+ <path
1971+ style="opacity:0.5;fill:url(#radialGradient5639)"
1972+ d="m 120.935,46.38 c 0,2.655 -3.716,4.808 -8.298,4.808 -4.584,0 -8.299,-2.152 -8.299,-4.808 0,-2.656 3.715,-4.808 8.299,-4.808 4.582,0 8.298,2.153 8.298,4.808 z"
1973+ type="arc"
1974+ ry="8"
1975+ rx="8"
1976+ cy="40.75"
1977+ cx="96.75"
1978+ id="path3247" /><path
1979+ id="path5649"
1980+ cx="27.108572"
1981+ cy="26.422857"
1982+ rx="9.7371426"
1983+ ry="13.257143"
1984+ type="arc"
1985+ d="m 123.7675,36.23512 c -0.6759,6.97042 -5.99407,12.620583 -11.8783,12.620583 -5.88324,0 -10.1069,-5.651122 -9.431,-12.620583 0.67591,-6.969461 5.99309,-12.619624 11.87732,-12.619624 5.88423,0 10.1069,5.650163 9.43198,12.619624 z"
1986+ style="fill:url(#radialGradient5641);stroke:#976615;stroke-width:1.70153946000000000;stroke-linecap:square;stroke-opacity:0.99220002;stroke-miterlimit:4;stroke-dasharray:none" /><path
1987+ style="fill:none;stroke:#ffffff;stroke-width:1.70153952000000008;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:0.99220001000000002;stroke-dasharray:none;opacity:0.5"
1988+ d="m 122.25978,36.235175 c -0.58489,6.159457 -5.18698,11.15226 -10.2789,11.15226 -5.09107,0 -8.74602,-4.99365 -8.16113,-11.15226 0.5849,-6.158608 5.18613,-11.151411 10.27806,-11.151411 5.09191,0 8.74601,4.992803 8.16197,11.151411 z"
1989+ type="arc"
1990+ ry="13.257143"
1991+ rx="9.7371426"
1992+ cy="26.422857"
1993+ cx="27.108572"
1994+ id="path5657" />
1995+
1996+ <radialGradient
1997+ gradientUnits="userSpaceOnUse"
1998+ gradientTransform="matrix(1.6381,0,0.1864,-1.9856,-234.0083,-159.8562)"
1999+ r="6.7893"
2000+ cy="-98.467796"
2001+ cx="221.6953"
2002+ id="path3190_1_">
2003+ <stop
2004+ id="stop3879"
2005+ style="stop-color:#EBCD9F"
2006+ offset="0" />
2007+ <stop
2008+ id="stop3881"
2009+ style="stop-color:#DBA756"
2010+ offset="1" />
2011+ </radialGradient>
2012+
2013+
2014+
2015+
2016+
2017+ <radialGradient
2018+ gradientUnits="userSpaceOnUse"
2019+ gradientTransform="matrix(1,0,0,-0.8772,-267.5,-272.1577)"
2020+ r="12.466"
2021+ cy="-341.64551"
2022+ cx="379.49799"
2023+ id="path3196_1_">
2024+ <stop
2025+ id="stop3886"
2026+ style="stop-color:#868983"
2027+ offset="0" />
2028+ <stop
2029+ id="stop3888"
2030+ style="stop-color:#4C4E4A"
2031+ offset="1" />
2032+ </radialGradient>
2033+
2034+ <path
2035+ style="fill:url(#radialGradient5643);stroke:#3e4648;stroke-width:3.40307927000000010;stroke-linecap:square;stroke-opacity:0.97250003"
2036+ d="m 124.17029,34.937728 c -0.29218,2.776991 -1.35959,5.353891 -2.93734,7.474273 3.48176,-12.963177 -21.957931,-5.135345 -20.5516,-10.371707 1.82804,-5.846349 7.09109,-10.216297 12.82649,-10.216297 6.64893,9.71e-4 11.426,5.875487 10.66245,13.113731 z"
2037+ nodetypes="cccsc"
2038+ id="path3196" />
2039+
2040+
2041+ <path
2042+ sodipodi:type="inkscape:offset"
2043+ inkscape:radius="-3.0756087"
2044+ inkscape:original="M 113.5 21.8125 C 107.7646 21.8125 102.51554 26.184901 100.6875 32.03125 C 99.281169 37.267612 124.70051 29.443073 121.21875 42.40625 C 122.7965 40.285868 123.86407 37.714491 124.15625 34.9375 C 124.9198 27.699256 120.14893 21.813471 113.5 21.8125 z "
2045+ style="opacity:0.3;fill:none;stroke:#ffffff;stroke-width:3.37716174000000002;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:0.97250000999999997;stroke-dasharray:none"
2046+ id="path5647"
2047+ d="m 113.5,24.875 c -3.54479,0 -7.04115,2.52767 -8.9375,6.125 1.8089,0.136186 4.48065,0.09108 7.34375,0.25 3.04607,0.16907 6.22369,0.450009 9,2.1875 0.0421,0.02634 0.0831,0.06648 0.125,0.09375 0.0609,-5.102227 -3.03274,-8.655593 -7.53125,-8.65625 z"
2048+ transform="matrix(1.0246301,0,0,0.99099901,-3.1377737,0.60423004)" /></g></svg>
2049\ No newline at end of file
2050
2051=== added file 'data/icons/24x24/apps/softwarecenter.png'
2052Binary files data/icons/24x24/apps/softwarecenter.png 1970-01-01 00:00:00 +0000 and data/icons/24x24/apps/softwarecenter.png 2010-08-30 09:34:07 +0000 differ
2053=== added file 'data/icons/24x24/apps/unknown-channel.svg'
2054--- data/icons/24x24/apps/unknown-channel.svg 1970-01-01 00:00:00 +0000
2055+++ data/icons/24x24/apps/unknown-channel.svg 2010-08-30 09:34:07 +0000
2056@@ -0,0 +1,358 @@
2057+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2058+<!-- Created with Inkscape (http://www.inkscape.org/) -->
2059+<svg
2060+ xmlns:svg="http://www.w3.org/2000/svg"
2061+ xmlns="http://www.w3.org/2000/svg"
2062+ xmlns:xlink="http://www.w3.org/1999/xlink"
2063+ version="1.0"
2064+ width="24"
2065+ height="24"
2066+ id="svg2">
2067+ <defs
2068+ id="defs4">
2069+ <linearGradient
2070+ x1="44.994774"
2071+ y1="17.5"
2072+ x2="3.0052247"
2073+ y2="17.5"
2074+ id="linearGradient2886"
2075+ xlink:href="#linearGradient3275"
2076+ gradientUnits="userSpaceOnUse"
2077+ gradientTransform="matrix(0.5123229,0,0,0.4997434,-0.2958069,-0.2455087)"
2078+ spreadMethod="reflect" />
2079+ <linearGradient
2080+ id="linearGradient3275">
2081+ <stop
2082+ id="stop3277"
2083+ style="stop-color:#ffffff;stop-opacity:0"
2084+ offset="0" />
2085+ <stop
2086+ id="stop3283"
2087+ style="stop-color:#ffffff;stop-opacity:1"
2088+ offset="0.245" />
2089+ <stop
2090+ id="stop3285"
2091+ style="stop-color:#ffffff;stop-opacity:1"
2092+ offset="0.77350003" />
2093+ <stop
2094+ id="stop3279"
2095+ style="stop-color:#ffffff;stop-opacity:0"
2096+ offset="1" />
2097+ </linearGradient>
2098+ <linearGradient
2099+ x1="26"
2100+ y1="22"
2101+ x2="26"
2102+ y2="8"
2103+ id="linearGradient2889"
2104+ xlink:href="#linearGradient2929"
2105+ gradientUnits="userSpaceOnUse"
2106+ gradientTransform="matrix(0.5,0,0,0.5714285,1.0587409e-6,-1.5714267)" />
2107+ <linearGradient
2108+ id="linearGradient2929">
2109+ <stop
2110+ id="stop2931"
2111+ style="stop-color:#ffffff;stop-opacity:1"
2112+ offset="0" />
2113+ <stop
2114+ id="stop2933"
2115+ style="stop-color:#ffffff;stop-opacity:1"
2116+ offset="0.27127403" />
2117+ <stop
2118+ id="stop2935"
2119+ style="stop-color:#ffffff;stop-opacity:0.6901961"
2120+ offset="0.38989457" />
2121+ <stop
2122+ id="stop2937"
2123+ style="stop-color:#ffffff;stop-opacity:0"
2124+ offset="1" />
2125+ </linearGradient>
2126+ <linearGradient
2127+ x1="23.451576"
2128+ y1="30.554907"
2129+ x2="43.00663"
2130+ y2="45.934479"
2131+ id="linearGradient2892"
2132+ xlink:href="#linearGradient4559"
2133+ gradientUnits="userSpaceOnUse"
2134+ gradientTransform="matrix(0.6568374,0,0,0.5870422,-3.4028653,-3.3874657)" />
2135+ <linearGradient
2136+ id="linearGradient4559">
2137+ <stop
2138+ id="stop4561"
2139+ style="stop-color:#ffffff;stop-opacity:0"
2140+ offset="0" />
2141+ <stop
2142+ id="stop4563"
2143+ style="stop-color:#ffffff;stop-opacity:0"
2144+ offset="1" />
2145+ </linearGradient>
2146+ <linearGradient
2147+ x1="24.822832"
2148+ y1="15.377745"
2149+ x2="24.996943"
2150+ y2="37.27668"
2151+ id="linearGradient2895"
2152+ xlink:href="#linearGradient2919"
2153+ gradientUnits="userSpaceOnUse"
2154+ gradientTransform="matrix(0.6568374,0,0,0.7782314,-3.4038718,-8.378696)" />
2155+ <linearGradient
2156+ id="linearGradient2919">
2157+ <stop
2158+ id="stop2921"
2159+ style="stop-color:#dac197;stop-opacity:1"
2160+ offset="0" />
2161+ <stop
2162+ id="stop2923"
2163+ style="stop-color:#c1a581;stop-opacity:1"
2164+ offset="0.26124284" />
2165+ <stop
2166+ id="stop2925"
2167+ style="stop-color:#dbc298;stop-opacity:1"
2168+ offset="0.31579992" />
2169+ <stop
2170+ id="stop2927"
2171+ style="stop-color:#a68b60;stop-opacity:1"
2172+ offset="1" />
2173+ </linearGradient>
2174+ <linearGradient
2175+ x1="15.464298"
2176+ y1="7.9756851"
2177+ x2="15.464298"
2178+ y2="45.04248"
2179+ id="linearGradient2897"
2180+ xlink:href="#linearGradient2909"
2181+ gradientUnits="userSpaceOnUse"
2182+ gradientTransform="matrix(0.5122637,0,0,0.4997434,-0.2943328,-0.7372407)" />
2183+ <linearGradient
2184+ id="linearGradient2909">
2185+ <stop
2186+ id="stop2911"
2187+ style="stop-color:#c9af8b;stop-opacity:1"
2188+ offset="0" />
2189+ <stop
2190+ id="stop2913"
2191+ style="stop-color:#ad8757;stop-opacity:1"
2192+ offset="0.24941477" />
2193+ <stop
2194+ id="stop2915"
2195+ style="stop-color:#c2a57f;stop-opacity:1"
2196+ offset="0.31247044" />
2197+ <stop
2198+ id="stop2917"
2199+ style="stop-color:#9d7d53;stop-opacity:1"
2200+ offset="1" />
2201+ </linearGradient>
2202+ <radialGradient
2203+ cx="5"
2204+ cy="41.5"
2205+ r="5"
2206+ fx="5"
2207+ fy="41.5"
2208+ id="radialGradient2903"
2209+ xlink:href="#linearGradient3681"
2210+ gradientUnits="userSpaceOnUse"
2211+ gradientTransform="matrix(0.5938225,0,0,1.5366531,-6.6594735,-103.93618)" />
2212+ <linearGradient
2213+ id="linearGradient3681">
2214+ <stop
2215+ id="stop3683"
2216+ style="stop-color:#000000;stop-opacity:1"
2217+ offset="0" />
2218+ <stop
2219+ id="stop3685"
2220+ style="stop-color:#000000;stop-opacity:0"
2221+ offset="1" />
2222+ </linearGradient>
2223+ <linearGradient
2224+ x1="17.554192"
2225+ y1="46.000275"
2226+ x2="17.554192"
2227+ y2="34.999718"
2228+ id="linearGradient2905"
2229+ xlink:href="#linearGradient3703"
2230+ gradientUnits="userSpaceOnUse"
2231+ gradientTransform="matrix(1.7570316,0,0,1.3969574,-17.394014,-16.411698)" />
2232+ <linearGradient
2233+ id="linearGradient3703">
2234+ <stop
2235+ id="stop3705"
2236+ style="stop-color:#000000;stop-opacity:0"
2237+ offset="0" />
2238+ <stop
2239+ id="stop3711"
2240+ style="stop-color:#000000;stop-opacity:1"
2241+ offset="0.5" />
2242+ <stop
2243+ id="stop3707"
2244+ style="stop-color:#000000;stop-opacity:0"
2245+ offset="1" />
2246+ </linearGradient>
2247+ <radialGradient
2248+ cx="5"
2249+ cy="41.5"
2250+ r="5"
2251+ fx="5"
2252+ fy="41.5"
2253+ id="radialGradient3003"
2254+ xlink:href="#linearGradient3681"
2255+ gradientUnits="userSpaceOnUse"
2256+ gradientTransform="matrix(0.5938225,0,0,1.5366531,41.140892,-103.93618)" />
2257+ <linearGradient
2258+ x1="29.955881"
2259+ y1="21.86607"
2260+ x2="29.955881"
2261+ y2="43.144382"
2262+ id="linearGradient2866"
2263+ xlink:href="#linearGradient3341"
2264+ gradientUnits="userSpaceOnUse"
2265+ gradientTransform="matrix(0.4280899,0,0,0.4229659,-2.823809,-3.2486024)" />
2266+ <linearGradient
2267+ x1="30"
2268+ y1="0.91818392"
2269+ x2="30"
2270+ y2="25.792814"
2271+ id="linearGradient2864"
2272+ xlink:href="#linearGradient3341"
2273+ gradientUnits="userSpaceOnUse"
2274+ gradientTransform="matrix(0.3368574,0,0,0.3216128,-0.1057209,-0.2952997)" />
2275+ <linearGradient
2276+ x1="30"
2277+ y1="5"
2278+ x2="30"
2279+ y2="44.678879"
2280+ id="linearGradient2862"
2281+ xlink:href="#linearGradient3785"
2282+ gradientUnits="userSpaceOnUse"
2283+ gradientTransform="matrix(0.3368574,0,0,0.3216128,-0.1057209,-0.2952997)" />
2284+ <radialGradient
2285+ cx="26.375898"
2286+ cy="12.31301"
2287+ r="8"
2288+ fx="26.375898"
2289+ fy="12.31301"
2290+ id="radialGradient2860"
2291+ xlink:href="#linearGradient6954"
2292+ gradientUnits="userSpaceOnUse"
2293+ gradientTransform="matrix(0.5525016,-4.26402e-2,4.315608e-2,0.5097191,-6.3026675,-1.9765067)" />
2294+ <linearGradient
2295+ x1="30"
2296+ y1="25.084745"
2297+ x2="30"
2298+ y2="45"
2299+ id="linearGradient2858"
2300+ xlink:href="#linearGradient3785"
2301+ gradientUnits="userSpaceOnUse"
2302+ gradientTransform="matrix(0.4280899,0,0,0.4229659,-2.823809,-3.2486024)" />
2303+ <radialGradient
2304+ cx="24.999998"
2305+ cy="28.659998"
2306+ r="16"
2307+ fx="24.999998"
2308+ fy="28.659998"
2309+ id="radialGradient2856"
2310+ xlink:href="#linearGradient6954"
2311+ gradientUnits="userSpaceOnUse"
2312+ gradientTransform="matrix(0.561868,0,0,0.1578792,-6.1682604,5.3385209)" />
2313+ <linearGradient
2314+ id="linearGradient3341">
2315+ <stop
2316+ id="stop3343"
2317+ style="stop-color:#ffffff;stop-opacity:1"
2318+ offset="0" />
2319+ <stop
2320+ id="stop3345"
2321+ style="stop-color:#ffffff;stop-opacity:0"
2322+ offset="1" />
2323+ </linearGradient>
2324+ <linearGradient
2325+ id="linearGradient6954">
2326+ <stop
2327+ id="stop6960"
2328+ style="stop-color:#f5f5f5;stop-opacity:1"
2329+ offset="0" />
2330+ <stop
2331+ id="stop6962"
2332+ style="stop-color:#d2d2d2;stop-opacity:1"
2333+ offset="1" />
2334+ </linearGradient>
2335+ <linearGradient
2336+ id="linearGradient3785">
2337+ <stop
2338+ id="stop3787"
2339+ style="stop-color:#b8b8b8;stop-opacity:1"
2340+ offset="0" />
2341+ <stop
2342+ id="stop3789"
2343+ style="stop-color:#878787;stop-opacity:1"
2344+ offset="1" />
2345+ </linearGradient>
2346+ </defs>
2347+ <g
2348+ id="layer1">
2349+ <g
2350+ transform="matrix(0.5179108,0,0,0.4555355,-0.3781617,2.2033833)"
2351+ id="g3305"
2352+ style="opacity:0.4;display:inline">
2353+ <rect
2354+ width="2.9601951"
2355+ height="15.366531"
2356+ x="-3.6903627"
2357+ y="-47.848343"
2358+ transform="scale(-1,-1)"
2359+ id="rect2484"
2360+ style="fill:url(#radialGradient2903);fill-opacity:1;stroke:none" />
2361+ <rect
2362+ width="40.41172"
2363+ height="15.366531"
2364+ x="3.6903627"
2365+ y="32.481812"
2366+ id="rect2486"
2367+ style="fill:url(#linearGradient2905);fill-opacity:1;stroke:none" />
2368+ <rect
2369+ width="2.9601951"
2370+ height="15.366531"
2371+ x="44.110001"
2372+ y="-47.848343"
2373+ transform="scale(1,-1)"
2374+ id="rect3444"
2375+ style="fill:url(#radialGradient3003);fill-opacity:1;stroke:none;display:inline" />
2376+ </g>
2377+ <path
2378+ d="M 4.3215344,3.5105773 L 19.432145,3.5105773 C 20.314256,3.5105773 20.711228,3.3673773 20.964609,4.0103213 L 22.502289,8.5000003 L 22.502289,20.838636 C 22.502289,21.61489 22.555019,21.496287 21.672903,21.496287 L 2.3270889,21.496287 C 1.4449747,21.496287 1.4977016,21.61489 1.4977016,20.838636 L 1.4977016,8.5000003 L 3.0353812,4.0103213 C 3.2816937,3.3803633 3.4394202,3.5105773 4.3215344,3.5105773 L 4.3215344,3.5105773 z"
2379+ id="path2488"
2380+ style="fill:url(#linearGradient2895);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient2897);stroke-width:0.99420071;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible" />
2381+ <path
2382+ d="M 4.8027725,4.0167913 L 18.968333,4.0167913 C 19.795277,4.0167913 20.307074,4.2949153 20.653435,5.0592713 L 21.846468,8.2674833 L 21.846468,19.833823 C 21.846468,20.563785 21.427047,20.931301 20.600102,20.931301 L 3.3198068,20.931301 C 2.4928628,20.931301 2.155546,20.527096 2.155546,19.797131 L 2.155546,8.2674833 L 3.3100916,4.9904863 C 3.5410007,4.3980933 3.9758263,4.0167913 4.8027725,4.0167913 L 4.8027725,4.0167913 z"
2383+ id="path2490"
2384+ style="opacity:0.50549454;fill:none;stroke:url(#linearGradient2892);stroke-width:0.74211526;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible" />
2385+ <path
2386+ d="M 11,3.0000003 C 11.666667,3.0000003 12.333333,3.0000003 13,3.0000003 C 13,5.6666653 13,8.3333343 13,11 C 12.803135,11 12.60627,11 12.409407,11 C 12.207844,11 12.006281,11 11.804719,11 C 11.642454,11 11.480189,11 11.317927,11 C 11.21195,11 11.105975,11 11,11 C 11,8.3333343 11,5.6666653 11,3.0000003 z"
2387+ id="rect3326"
2388+ style="opacity:0.4;fill:url(#linearGradient2889);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
2389+ <path
2390+ d="M 1.5,8.5000003 L 22.499885,8.5000003"
2391+ id="path3273"
2392+ style="opacity:0.4;fill:none;stroke:url(#linearGradient2886);stroke-width:0.99999994px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
2393+ </g>
2394+ <g
2395+ transform="translate(8.0624393,7.9983804)"
2396+ id="g3743">
2397+ <path
2398+ d="M 8.84375,6.5 C 8.76311,7.180093 9.4339142,8.600105 9.0625,9.21875 C 7.6176751,9.7236407 5.0136423,10.644898 4.875,11.25 C 4.77263,12.189935 4.6190814,13.561421 4.5,14.5 C 7.0328977,15.868167 12.991801,15.80225 15.4375,14.5 C 15.3512,13.834083 15.273798,11.915916 15.1875,11.25 C 14.53386,10.469482 12.812615,10.01275 11,9.21875 C 10.526353,8.602577 11.243461,7.22557 11.09375,6.53125 C 10.807324,6.482003 9.133812,6.507525 8.84375,6.5 z"
2399+ id="path2880"
2400+ style="fill:url(#radialGradient2856);fill-opacity:1;stroke:url(#linearGradient2858);stroke-width:1.00012147;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
2401+ <path
2402+ d="M 10,1.46875 C 8.6046925,1.46875 7.46875,2.4753977 7.46875,3.71875 C 7.479696,4.1788908 7.5277,4.7242307 7.8125,5.96875 C 7.9809289,6.4511689 9.4864448,7.7454441 9.5,7.90625 C 9.8266416,8.0670549 10.350642,8.0670549 10.6875,7.90625 C 10.6875,7.7454441 12.019072,6.4511689 12.1875,5.96875 C 12.507978,4.675323 12.514059,4.2011694 12.53125,3.71875 C 12.53125,2.4753977 11.39531,1.46875 10,1.46875 z"
2403+ id="path2870"
2404+ style="fill:url(#radialGradient2860);fill-opacity:1;stroke:url(#linearGradient2862);stroke-width:0.94714093;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
2405+ <path
2406+ d="M 10,2.46875 C 9.3876089,2.453926 8.7330161,2.7993069 8.53125,3.40625 C 8.4176735,3.8167384 8.521089,4.243089 8.5625,4.65625 C 8.61472,4.9943899 8.6757782,5.3223309 8.75,5.65625 C 8.9440928,5.827702 9.1111426,6.0537134 9.3125,6.21875 C 9.5758075,6.4747814 9.8032965,6.7399516 10.0625,7 C 10.330703,6.7826897 10.510924,6.4967292 10.75,6.25 C 10.902681,6.070177 11.060251,5.8623797 11.21875,5.6875 C 11.376386,4.9772187 11.558479,4.2653005 11.5,3.53125 C 11.375368,2.844477 10.652976,2.4515616 10,2.46875 z"
2407+ id="path2866"
2408+ style="fill:none;stroke:url(#linearGradient2864);stroke-width:0.94714093;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
2409+ <path
2410+ d="M 10,9.0625 C 10.04083,9.6809717 9.5155012,10.163542 8.9375,10.25 C 7.8756855,10.627577 6.7724081,10.956505 5.8125,11.5625 C 5.587776,12.103224 5.7082624,12.723205 5.5625,13.28125 C 5.2315699,13.990211 6.1315774,14.057307 6.59375,14.1875 C 8.8498501,14.728215 11.245863,14.686561 13.5,14.15625 C 13.835847,13.987657 14.638282,14.07131 14.4375,13.53125 C 14.37527,12.943737 14.34558,12.339597 14.3125,11.75 C 13.392452,11.041669 12.225582,10.792671 11.1875,10.3125 C 10.364527,10.195739 10.334895,9.5928835 10,9.0625 z"
2411+ id="path2876"
2412+ style="fill:none;stroke:url(#linearGradient2866);stroke-width:1.00012147;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
2413+ </g>
2414+</svg>
2415
2416=== added directory 'data/icons/24x24/status'
2417=== added file 'data/icons/24x24/status/softwarecenter-progress.png'
2418Binary files data/icons/24x24/status/softwarecenter-progress.png 1970-01-01 00:00:00 +0000 and data/icons/24x24/status/softwarecenter-progress.png 2010-08-30 09:34:07 +0000 differ
2419=== added directory 'data/icons/32x32'
2420=== added directory 'data/icons/32x32/animations'
2421=== added file 'data/icons/32x32/animations/softwarecenter-loading-installed.gif'
2422Binary files data/icons/32x32/animations/softwarecenter-loading-installed.gif 1970-01-01 00:00:00 +0000 and data/icons/32x32/animations/softwarecenter-loading-installed.gif 2010-08-30 09:34:07 +0000 differ
2423=== added file 'data/icons/32x32/animations/softwarecenter-loading.gif'
2424Binary files data/icons/32x32/animations/softwarecenter-loading.gif 1970-01-01 00:00:00 +0000 and data/icons/32x32/animations/softwarecenter-loading.gif 2010-08-30 09:34:07 +0000 differ
2425=== added directory 'data/icons/32x32/apps'
2426=== added file 'data/icons/32x32/apps/softwarecenter.png'
2427Binary files data/icons/32x32/apps/softwarecenter.png 1970-01-01 00:00:00 +0000 and data/icons/32x32/apps/softwarecenter.png 2010-08-30 09:34:07 +0000 differ
2428=== added directory 'data/icons/32x32/status'
2429=== added file 'data/icons/32x32/status/software-center-arrow-button-down.png'
2430Binary files data/icons/32x32/status/software-center-arrow-button-down.png 1970-01-01 00:00:00 +0000 and data/icons/32x32/status/software-center-arrow-button-down.png 2010-08-30 09:34:07 +0000 differ
2431=== added file 'data/icons/32x32/status/software-center-arrow-button.png'
2432Binary files data/icons/32x32/status/software-center-arrow-button.png 1970-01-01 00:00:00 +0000 and data/icons/32x32/status/software-center-arrow-button.png 2010-08-30 09:34:07 +0000 differ
2433=== added directory 'data/icons/48x48'
2434=== added directory 'data/icons/48x48/apps'
2435=== added file 'data/icons/48x48/apps/softwarecenter.png'
2436Binary files data/icons/48x48/apps/softwarecenter.png 1970-01-01 00:00:00 +0000 and data/icons/48x48/apps/softwarecenter.png 2010-08-30 09:34:07 +0000 differ
2437=== added directory 'data/icons/64x64'
2438=== added directory 'data/icons/64x64/apps'
2439=== added file 'data/icons/64x64/apps/softwarecenter.png'
2440Binary files data/icons/64x64/apps/softwarecenter.png 1970-01-01 00:00:00 +0000 and data/icons/64x64/apps/softwarecenter.png 2010-08-30 09:34:07 +0000 differ
2441=== added directory 'data/icons/scalable'
2442=== added directory 'data/icons/scalable/apps'
2443=== added file 'data/icons/scalable/apps/category-show-all.svg'
2444--- data/icons/scalable/apps/category-show-all.svg 1970-01-01 00:00:00 +0000
2445+++ data/icons/scalable/apps/category-show-all.svg 2010-08-30 09:34:07 +0000
2446@@ -0,0 +1,1074 @@
2447+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2448+<!-- Created with Inkscape (http://www.inkscape.org/) -->
2449+
2450+<svg
2451+ xmlns:svg="http://www.w3.org/2000/svg"
2452+ xmlns="http://www.w3.org/2000/svg"
2453+ xmlns:xlink="http://www.w3.org/1999/xlink"
2454+ version="1.0"
2455+ width="48"
2456+ height="48"
2457+ id="svg2">
2458+ <defs
2459+ id="defs4">
2460+ <linearGradient
2461+ id="linearGradient3968">
2462+ <stop
2463+ id="stop3970"
2464+ style="stop-color:#363636;stop-opacity:1"
2465+ offset="0" />
2466+ <stop
2467+ id="stop3972"
2468+ style="stop-color:#3b3b3b;stop-opacity:1"
2469+ offset="0.58528459" />
2470+ </linearGradient>
2471+ <linearGradient
2472+ id="linearGradient3944">
2473+ <stop
2474+ id="stop3946"
2475+ style="stop-color:#313131;stop-opacity:1"
2476+ offset="0" />
2477+ <stop
2478+ id="stop3954"
2479+ style="stop-color:#3b3b3b;stop-opacity:1"
2480+ offset="0" />
2481+ </linearGradient>
2482+ <linearGradient
2483+ id="linearGradient3761">
2484+ <stop
2485+ id="stop3763"
2486+ style="stop-color:#000000;stop-opacity:0.39215687"
2487+ offset="0" />
2488+ <stop
2489+ id="stop3765"
2490+ style="stop-color:#000000;stop-opacity:0.3137255"
2491+ offset="0.67456824" />
2492+ <stop
2493+ id="stop3767"
2494+ style="stop-color:#000000;stop-opacity:0"
2495+ offset="1" />
2496+ </linearGradient>
2497+ <linearGradient
2498+ id="linearGradient3735">
2499+ <stop
2500+ id="stop3737"
2501+ style="stop-color:#51c7b2;stop-opacity:1"
2502+ offset="0" />
2503+ <stop
2504+ id="stop3739"
2505+ style="stop-color:#2d8776;stop-opacity:1"
2506+ offset="1" />
2507+ </linearGradient>
2508+ <linearGradient
2509+ id="linearGradient3727">
2510+ <stop
2511+ id="stop3729"
2512+ style="stop-color:#63cdba;stop-opacity:1"
2513+ offset="0" />
2514+ <stop
2515+ id="stop3731"
2516+ style="stop-color:#3baf9a;stop-opacity:1"
2517+ offset="1" />
2518+ </linearGradient>
2519+ <linearGradient
2520+ id="linearGradient4222-4">
2521+ <stop
2522+ id="stop4224-0"
2523+ style="stop-color:#ffffff;stop-opacity:1"
2524+ offset="0" />
2525+ <stop
2526+ id="stop4226-5"
2527+ style="stop-color:#ffffff;stop-opacity:0"
2528+ offset="1" />
2529+ </linearGradient>
2530+ <radialGradient
2531+ cx="23.070683"
2532+ cy="35.127438"
2533+ r="10.31934"
2534+ fx="23.070683"
2535+ fy="35.127438"
2536+ id="radialGradient2939"
2537+ xlink:href="#linearGradient3761"
2538+ gradientUnits="userSpaceOnUse"
2539+ gradientTransform="matrix(2.0832807,0.01226756,-0.01870788,0.20710173,2.3490649,12.232751)" />
2540+ <linearGradient
2541+ id="linearGradient3242-187-536">
2542+ <stop
2543+ id="stop2780"
2544+ style="stop-color:#6396cd;stop-opacity:1"
2545+ offset="0" />
2546+ <stop
2547+ id="stop2782"
2548+ style="stop-color:#3b7caf;stop-opacity:1"
2549+ offset="0.66093999" />
2550+ <stop
2551+ id="stop2784"
2552+ style="stop-color:#194c70;stop-opacity:1"
2553+ offset="1" />
2554+ </linearGradient>
2555+ <linearGradient
2556+ id="linearGradient2490-182-124">
2557+ <stop
2558+ id="stop2788"
2559+ style="stop-color:#1f4b6a;stop-opacity:1"
2560+ offset="0" />
2561+ <stop
2562+ id="stop2790"
2563+ style="stop-color:#4083c2;stop-opacity:1"
2564+ offset="1" />
2565+ </linearGradient>
2566+ <linearGradient
2567+ x1="55"
2568+ y1="4.5"
2569+ x2="59"
2570+ y2="43.5"
2571+ id="linearGradient3691"
2572+ xlink:href="#linearGradient4222-4"
2573+ gradientUnits="userSpaceOnUse"
2574+ gradientTransform="translate(-0.5,0.5)" />
2575+ <linearGradient
2576+ x1="63"
2577+ y1="5"
2578+ x2="75"
2579+ y2="43"
2580+ id="linearGradient3699"
2581+ xlink:href="#linearGradient4222-4"
2582+ gradientUnits="userSpaceOnUse"
2583+ gradientTransform="translate(0,0.5)" />
2584+ <linearGradient
2585+ x1="88"
2586+ y1="16"
2587+ x2="89"
2588+ y2="23"
2589+ id="linearGradient3759"
2590+ xlink:href="#linearGradient4222-4"
2591+ gradientUnits="userSpaceOnUse" />
2592+ <linearGradient
2593+ x1="58"
2594+ y1="4"
2595+ x2="68"
2596+ y2="43"
2597+ id="linearGradient3792"
2598+ xlink:href="#linearGradient3242-187-536"
2599+ gradientUnits="userSpaceOnUse"
2600+ gradientTransform="translate(-0.5,0.5)" />
2601+ <linearGradient
2602+ x1="59"
2603+ y1="43"
2604+ x2="53"
2605+ y2="4"
2606+ id="linearGradient3794"
2607+ xlink:href="#linearGradient2490-182-124"
2608+ gradientUnits="userSpaceOnUse"
2609+ gradientTransform="translate(-0.5,0.5)" />
2610+ <linearGradient
2611+ x1="22.765091"
2612+ y1="18.541262"
2613+ x2="23.877579"
2614+ y2="28.614401"
2615+ id="linearGradient3798"
2616+ xlink:href="#linearGradient3242-187-536"
2617+ gradientUnits="userSpaceOnUse"
2618+ gradientTransform="matrix(0.8988874,0,0,0.8934652,64.536746,-1.565972)" />
2619+ <linearGradient
2620+ x1="92"
2621+ y1="23"
2622+ x2="91"
2623+ y2="15"
2624+ id="linearGradient3800"
2625+ xlink:href="#linearGradient2490-182-124"
2626+ gradientUnits="userSpaceOnUse" />
2627+ <linearGradient
2628+ x1="88"
2629+ y1="23"
2630+ x2="90"
2631+ y2="31"
2632+ id="linearGradient3810"
2633+ xlink:href="#linearGradient4222-4"
2634+ gradientUnits="userSpaceOnUse"
2635+ gradientTransform="translate(-1.00045,0)" />
2636+ <linearGradient
2637+ x1="22.765091"
2638+ y1="18.541262"
2639+ x2="23.877579"
2640+ y2="27.495163"
2641+ id="linearGradient3814"
2642+ xlink:href="#linearGradient3242-187-536"
2643+ gradientUnits="userSpaceOnUse"
2644+ gradientTransform="matrix(0.8988874,0,0,0.8934652,69.536296,6.434028)" />
2645+ <linearGradient
2646+ x1="87"
2647+ y1="31"
2648+ x2="86"
2649+ y2="23"
2650+ id="linearGradient3816"
2651+ xlink:href="#linearGradient2490-182-124"
2652+ gradientUnits="userSpaceOnUse"
2653+ gradientTransform="translate(-1.00045,0)" />
2654+ <linearGradient
2655+ x1="69"
2656+ y1="5"
2657+ x2="85"
2658+ y2="44"
2659+ id="linearGradient3820"
2660+ xlink:href="#linearGradient3727"
2661+ gradientUnits="userSpaceOnUse" />
2662+ <linearGradient
2663+ x1="63"
2664+ y1="5"
2665+ x2="75"
2666+ y2="43"
2667+ id="linearGradient3822"
2668+ xlink:href="#linearGradient3735"
2669+ gradientUnits="userSpaceOnUse"
2670+ gradientTransform="translate(0,0.5)" />
2671+ <linearGradient
2672+ x1="14.017542"
2673+ y1="36.942543"
2674+ x2="15.415793"
2675+ y2="38.268368"
2676+ id="linearGradient2719-69-752-179-525"
2677+ xlink:href="#linearGradient2265-890-372-783-802"
2678+ gradientUnits="userSpaceOnUse"
2679+ gradientTransform="matrix(2.7784359,-0.05481476,0.05481476,2.7784359,-6.88297,-3.8866433)" />
2680+ <linearGradient
2681+ id="linearGradient2265-890-372-783-802">
2682+ <stop
2683+ id="stop3205"
2684+ style="stop-color:#000000;stop-opacity:1"
2685+ offset="0" />
2686+ <stop
2687+ id="stop3207"
2688+ style="stop-color:#000000;stop-opacity:0"
2689+ offset="1" />
2690+ </linearGradient>
2691+ <linearGradient
2692+ x1="12.004697"
2693+ y1="35.688461"
2694+ x2="10.650805"
2695+ y2="33.194965"
2696+ id="linearGradient2723-207-870-812-510"
2697+ xlink:href="#linearGradient2257-789-141-816-743"
2698+ gradientUnits="userSpaceOnUse"
2699+ gradientTransform="matrix(3.1871015,-0.08342361,0.08342361,3.1871015,-8.6874,-16.507509)" />
2700+ <linearGradient
2701+ id="linearGradient2257-789-141-816-743">
2702+ <stop
2703+ id="stop3211"
2704+ style="stop-color:#bababa;stop-opacity:1"
2705+ offset="0" />
2706+ <stop
2707+ id="stop3213"
2708+ style="stop-color:#bababa;stop-opacity:0"
2709+ offset="1" />
2710+ </linearGradient>
2711+ <linearGradient
2712+ x1="9.7503242"
2713+ y1="32.28376"
2714+ x2="16.915297"
2715+ y2="39.443218"
2716+ id="linearGradient2727-611-236-922-438"
2717+ xlink:href="#linearGradient3087-462-170-890-278"
2718+ gradientUnits="userSpaceOnUse"
2719+ gradientTransform="matrix(2.778977,0,0,2.778977,-5.70179,-1.0395995)" />
2720+ <linearGradient
2721+ id="linearGradient3087-462-170-890-278">
2722+ <stop
2723+ id="stop3193"
2724+ style="stop-color:#484848;stop-opacity:1"
2725+ offset="0" />
2726+ <stop
2727+ id="stop3195"
2728+ style="stop-color:#878787;stop-opacity:1"
2729+ offset="0" />
2730+ <stop
2731+ id="stop3197"
2732+ style="stop-color:#6b6b6b;stop-opacity:1"
2733+ offset="0" />
2734+ <stop
2735+ id="stop3199"
2736+ style="stop-color:#4d4d4d;stop-opacity:1"
2737+ offset="0.75" />
2738+ <stop
2739+ id="stop3201"
2740+ style="stop-color:#4e4e4e;stop-opacity:1"
2741+ offset="1" />
2742+ </linearGradient>
2743+ <linearGradient
2744+ x1="31.177404"
2745+ y1="19.821514"
2746+ x2="40.859177"
2747+ y2="9.6568537"
2748+ id="linearGradient2730"
2749+ xlink:href="#linearGradient2250"
2750+ gradientUnits="userSpaceOnUse"
2751+ gradientTransform="matrix(3.1641488,0,0,3.1641488,-13.72919,-16.758081)" />
2752+ <linearGradient
2753+ id="linearGradient2250">
2754+ <stop
2755+ id="stop2252"
2756+ style="stop-color:#b9b9b9;stop-opacity:1"
2757+ offset="0" />
2758+ <stop
2759+ id="stop2254"
2760+ style="stop-color:#ffffff;stop-opacity:0"
2761+ offset="1" />
2762+ </linearGradient>
2763+ <linearGradient
2764+ x1="39.980453"
2765+ y1="3.4715931"
2766+ x2="39.980453"
2767+ y2="14.369016"
2768+ id="linearGradient2733"
2769+ xlink:href="#linearGradient5546"
2770+ gradientUnits="userSpaceOnUse"
2771+ gradientTransform="matrix(2.778977,0,0,2.778977,-4.71927,0.9254345)" />
2772+ <linearGradient
2773+ x1="63.9995"
2774+ y1="3.1001"
2775+ x2="63.9995"
2776+ y2="122.8994"
2777+ id="linearGradient5546"
2778+ gradientUnits="userSpaceOnUse">
2779+ <stop
2780+ id="stop5548"
2781+ style="stop-color:#d8d8d8;stop-opacity:1"
2782+ offset="0" />
2783+ <stop
2784+ id="stop5550"
2785+ style="stop-color:#ffffff;stop-opacity:1"
2786+ offset="1" />
2787+ </linearGradient>
2788+ <linearGradient
2789+ x1="64"
2790+ y1="21.523018"
2791+ x2="64"
2792+ y2="103.06695"
2793+ id="linearGradient2436"
2794+ xlink:href="#XMLID_6_"
2795+ gradientUnits="userSpaceOnUse"
2796+ gradientTransform="matrix(0.9903199,0,0,0.9886746,0.6356256,-0.9531728)"
2797+ spreadMethod="pad" />
2798+ <linearGradient
2799+ x1="64"
2800+ y1="21.523018"
2801+ x2="64"
2802+ y2="103.06695"
2803+ id="XMLID_6_"
2804+ xlink:href="#XMLID_5_"
2805+ gradientUnits="userSpaceOnUse"
2806+ spreadMethod="pad">
2807+ <stop
2808+ id="stop31"
2809+ style="stop-color:#d9d9d9;stop-opacity:1"
2810+ offset="0" />
2811+ <stop
2812+ id="stop33"
2813+ style="stop-color:#cccccc;stop-opacity:1"
2814+ offset="1" />
2815+ </linearGradient>
2816+ <linearGradient
2817+ x1="63.9995"
2818+ y1="21.941401"
2819+ x2="63.9995"
2820+ y2="104.0591"
2821+ id="XMLID_5_"
2822+ xlink:href="#linearGradient2199"
2823+ gradientUnits="userSpaceOnUse"
2824+ spreadMethod="pad">
2825+ <stop
2826+ id="stop24"
2827+ style="stop-color:#dadada;stop-opacity:1"
2828+ offset="0" />
2829+ <stop
2830+ id="stop26"
2831+ style="stop-color:#cccccc;stop-opacity:1"
2832+ offset="1" />
2833+ </linearGradient>
2834+ <linearGradient
2835+ x1="63.9995"
2836+ y1="21.941401"
2837+ x2="63.9995"
2838+ y2="104.0591"
2839+ id="linearGradient2199"
2840+ xlink:href="#linearGradient2193"
2841+ gradientUnits="userSpaceOnUse"
2842+ spreadMethod="pad">
2843+ <stop
2844+ id="stop2201"
2845+ style="stop-color:#fcfcfd;stop-opacity:1"
2846+ offset="0" />
2847+ <stop
2848+ id="stop2203"
2849+ style="stop-color:#cccccc;stop-opacity:1"
2850+ offset="1" />
2851+ </linearGradient>
2852+ <linearGradient
2853+ x1="63.9995"
2854+ y1="21.941401"
2855+ x2="63.9995"
2856+ y2="104.0591"
2857+ id="linearGradient2193"
2858+ gradientUnits="userSpaceOnUse">
2859+ <stop
2860+ id="stop2195"
2861+ style="stop-color:#dddddd;stop-opacity:1"
2862+ offset="0" />
2863+ <stop
2864+ id="stop2197"
2865+ style="stop-color:#e8e9ef;stop-opacity:1"
2866+ offset="1" />
2867+ </linearGradient>
2868+ <linearGradient
2869+ x1="49.273136"
2870+ y1="22.274775"
2871+ x2="49.373875"
2872+ y2="102.04791"
2873+ id="linearGradient2438"
2874+ xlink:href="#XMLID_6_"
2875+ gradientUnits="userSpaceOnUse"
2876+ gradientTransform="matrix(0.9903199,0,0,0.9886746,0.6356256,-0.9531728)" />
2877+ <linearGradient
2878+ x1="63.9995"
2879+ y1="21.941401"
2880+ x2="63.9995"
2881+ y2="104.0591"
2882+ id="linearGradient2441"
2883+ xlink:href="#XMLID_5_"
2884+ gradientUnits="userSpaceOnUse"
2885+ gradientTransform="matrix(0.8580776,0,0,0.8566522,9.0991275,8.114155)"
2886+ spreadMethod="pad" />
2887+ <linearGradient
2888+ x1="86.132919"
2889+ y1="105.105"
2890+ x2="84.63858"
2891+ y2="20.895"
2892+ id="linearGradient2443"
2893+ xlink:href="#linearGradient5128"
2894+ gradientUnits="userSpaceOnUse"
2895+ gradientTransform="matrix(0.8580776,0,0,0.8566522,9.0991275,8.114155)" />
2896+ <linearGradient
2897+ id="linearGradient5128">
2898+ <stop
2899+ id="stop5130"
2900+ style="stop-color:#ffffff;stop-opacity:1"
2901+ offset="0" />
2902+ <stop
2903+ id="stop5132"
2904+ style="stop-color:#959595;stop-opacity:1"
2905+ offset="1" />
2906+ </linearGradient>
2907+ <linearGradient
2908+ x1="64"
2909+ y1="6.8743429"
2910+ x2="64"
2911+ y2="117.22547"
2912+ id="linearGradient3226"
2913+ xlink:href="#XMLID_4_"
2914+ gradientUnits="userSpaceOnUse" />
2915+ <linearGradient
2916+ x1="63.9995"
2917+ y1="3.1001"
2918+ x2="63.9995"
2919+ y2="122.8994"
2920+ id="XMLID_4_"
2921+ gradientUnits="userSpaceOnUse">
2922+ <stop
2923+ id="stop11"
2924+ style="stop-color:#f2f2f2;stop-opacity:1"
2925+ offset="0" />
2926+ <stop
2927+ id="stop13"
2928+ style="stop-color:#d8d8d8;stop-opacity:1"
2929+ offset="1" />
2930+ </linearGradient>
2931+ <radialGradient
2932+ cx="6.702713"
2933+ cy="73.615715"
2934+ r="7.228416"
2935+ fx="6.702713"
2936+ fy="73.615715"
2937+ id="radialGradient2693"
2938+ xlink:href="#linearGradient10691"
2939+ gradientUnits="userSpaceOnUse"
2940+ gradientTransform="scale(1.902215,0.525703)" />
2941+ <linearGradient
2942+ id="linearGradient10691">
2943+ <stop
2944+ id="stop10693"
2945+ style="stop-color:#000000;stop-opacity:1"
2946+ offset="0" />
2947+ <stop
2948+ id="stop10695"
2949+ style="stop-color:#000000;stop-opacity:0"
2950+ offset="1" />
2951+ </linearGradient>
2952+ <linearGradient
2953+ x1="63"
2954+ y1="5"
2955+ x2="75"
2956+ y2="43"
2957+ id="linearGradient2998"
2958+ xlink:href="#linearGradient4222-4"
2959+ gradientUnits="userSpaceOnUse"
2960+ gradientTransform="translate(4,-3)" />
2961+ <linearGradient
2962+ x1="55"
2963+ y1="4.5"
2964+ x2="59"
2965+ y2="43.5"
2966+ id="linearGradient3001"
2967+ xlink:href="#linearGradient4222-4"
2968+ gradientUnits="userSpaceOnUse"
2969+ gradientTransform="translate(3.5,-3)" />
2970+ <linearGradient
2971+ x1="58"
2972+ y1="4"
2973+ x2="68"
2974+ y2="43"
2975+ id="linearGradient3004"
2976+ xlink:href="#linearGradient3242-187-536"
2977+ gradientUnits="userSpaceOnUse"
2978+ gradientTransform="translate(3.5,-3)" />
2979+ <linearGradient
2980+ x1="59"
2981+ y1="43"
2982+ x2="53"
2983+ y2="4"
2984+ id="linearGradient3006"
2985+ xlink:href="#linearGradient2490-182-124"
2986+ gradientUnits="userSpaceOnUse"
2987+ gradientTransform="translate(3.5,-3)" />
2988+ <linearGradient
2989+ x1="69"
2990+ y1="5"
2991+ x2="85"
2992+ y2="44"
2993+ id="linearGradient3009"
2994+ xlink:href="#linearGradient3727"
2995+ gradientUnits="userSpaceOnUse"
2996+ gradientTransform="translate(4,-3.5)" />
2997+ <linearGradient
2998+ x1="63"
2999+ y1="5"
3000+ x2="75"
3001+ y2="43"
3002+ id="linearGradient3011"
3003+ xlink:href="#linearGradient3735"
3004+ gradientUnits="userSpaceOnUse"
3005+ gradientTransform="translate(4,-3)" />
3006+ <linearGradient
3007+ x1="22.765091"
3008+ y1="18.541262"
3009+ x2="23.877579"
3010+ y2="28.614401"
3011+ id="linearGradient3021"
3012+ xlink:href="#linearGradient3242-187-536"
3013+ gradientUnits="userSpaceOnUse"
3014+ gradientTransform="matrix(0.8988874,0,0,0.8934652,64.536746,-1.565972)" />
3015+ <linearGradient
3016+ x1="92"
3017+ y1="23"
3018+ x2="91"
3019+ y2="15"
3020+ id="linearGradient3023"
3021+ xlink:href="#linearGradient2490-182-124"
3022+ gradientUnits="userSpaceOnUse" />
3023+ <linearGradient
3024+ x1="22.765091"
3025+ y1="18.541262"
3026+ x2="23.877579"
3027+ y2="27.495163"
3028+ id="linearGradient3025"
3029+ xlink:href="#linearGradient3242-187-536"
3030+ gradientUnits="userSpaceOnUse"
3031+ gradientTransform="matrix(0.8988874,0,0,0.8934652,69.536296,6.434028)" />
3032+ <linearGradient
3033+ x1="87"
3034+ y1="31"
3035+ x2="86"
3036+ y2="23"
3037+ id="linearGradient3027"
3038+ xlink:href="#linearGradient2490-182-124"
3039+ gradientUnits="userSpaceOnUse"
3040+ gradientTransform="translate(-1.00045,0)" />
3041+ <linearGradient
3042+ x1="88"
3043+ y1="16"
3044+ x2="89"
3045+ y2="23"
3046+ id="linearGradient3029"
3047+ xlink:href="#linearGradient4222-4"
3048+ gradientUnits="userSpaceOnUse" />
3049+ <linearGradient
3050+ x1="88"
3051+ y1="23"
3052+ x2="90"
3053+ y2="31"
3054+ id="linearGradient3031"
3055+ xlink:href="#linearGradient4222-4"
3056+ gradientUnits="userSpaceOnUse"
3057+ gradientTransform="translate(-1.00045,0)" />
3058+ <linearGradient
3059+ x1="22.765091"
3060+ y1="18.541262"
3061+ x2="23.877579"
3062+ y2="28.614401"
3063+ id="linearGradient3044"
3064+ xlink:href="#linearGradient3242-187-536"
3065+ gradientUnits="userSpaceOnUse"
3066+ gradientTransform="matrix(0.8988874,0,0,0.8934652,64.536746,-1.565972)" />
3067+ <linearGradient
3068+ x1="92"
3069+ y1="23"
3070+ x2="91"
3071+ y2="15"
3072+ id="linearGradient3046"
3073+ xlink:href="#linearGradient2490-182-124"
3074+ gradientUnits="userSpaceOnUse" />
3075+ <linearGradient
3076+ x1="22.765091"
3077+ y1="18.541262"
3078+ x2="23.877579"
3079+ y2="27.495163"
3080+ id="linearGradient3048"
3081+ xlink:href="#linearGradient3242-187-536"
3082+ gradientUnits="userSpaceOnUse"
3083+ gradientTransform="matrix(0.8988874,0,0,0.8934652,69.536296,6.434028)" />
3084+ <linearGradient
3085+ x1="87"
3086+ y1="31"
3087+ x2="86"
3088+ y2="23"
3089+ id="linearGradient3050"
3090+ xlink:href="#linearGradient2490-182-124"
3091+ gradientUnits="userSpaceOnUse"
3092+ gradientTransform="translate(-1.00045,0)" />
3093+ <linearGradient
3094+ x1="88"
3095+ y1="16"
3096+ x2="89"
3097+ y2="23"
3098+ id="linearGradient3052"
3099+ xlink:href="#linearGradient4222-4"
3100+ gradientUnits="userSpaceOnUse" />
3101+ <linearGradient
3102+ x1="88"
3103+ y1="23"
3104+ x2="90"
3105+ y2="31"
3106+ id="linearGradient3054"
3107+ xlink:href="#linearGradient4222-4"
3108+ gradientUnits="userSpaceOnUse"
3109+ gradientTransform="translate(-1.00045,0)" />
3110+ <linearGradient
3111+ x1="69"
3112+ y1="5"
3113+ x2="85"
3114+ y2="44"
3115+ id="linearGradient3056"
3116+ xlink:href="#linearGradient3727"
3117+ gradientUnits="userSpaceOnUse"
3118+ gradientTransform="translate(4,-3.5)" />
3119+ <linearGradient
3120+ x1="63"
3121+ y1="5"
3122+ x2="75"
3123+ y2="43"
3124+ id="linearGradient3058"
3125+ xlink:href="#linearGradient3735"
3126+ gradientUnits="userSpaceOnUse"
3127+ gradientTransform="translate(4,-3)" />
3128+ <linearGradient
3129+ x1="58"
3130+ y1="4"
3131+ x2="68"
3132+ y2="43"
3133+ id="linearGradient3060"
3134+ xlink:href="#linearGradient3242-187-536"
3135+ gradientUnits="userSpaceOnUse"
3136+ gradientTransform="translate(3.5,-3)" />
3137+ <linearGradient
3138+ x1="59"
3139+ y1="43"
3140+ x2="53"
3141+ y2="4"
3142+ id="linearGradient3062"
3143+ xlink:href="#linearGradient2490-182-124"
3144+ gradientUnits="userSpaceOnUse"
3145+ gradientTransform="translate(3.5,-3)" />
3146+ <linearGradient
3147+ x1="55"
3148+ y1="4.5"
3149+ x2="59"
3150+ y2="43.5"
3151+ id="linearGradient3064"
3152+ xlink:href="#linearGradient4222-4"
3153+ gradientUnits="userSpaceOnUse"
3154+ gradientTransform="translate(3.5,-3)" />
3155+ <linearGradient
3156+ x1="63"
3157+ y1="5"
3158+ x2="75"
3159+ y2="43"
3160+ id="linearGradient3066"
3161+ xlink:href="#linearGradient4222-4"
3162+ gradientUnits="userSpaceOnUse"
3163+ gradientTransform="translate(4,-3)" />
3164+ <linearGradient
3165+ x1="63"
3166+ y1="5"
3167+ x2="75"
3168+ y2="43"
3169+ id="linearGradient3069"
3170+ xlink:href="#linearGradient4222-4"
3171+ gradientUnits="userSpaceOnUse"
3172+ gradientTransform="translate(4,-3)" />
3173+ <linearGradient
3174+ x1="55"
3175+ y1="4.5"
3176+ x2="59"
3177+ y2="43.5"
3178+ id="linearGradient3072"
3179+ xlink:href="#linearGradient4222-4"
3180+ gradientUnits="userSpaceOnUse"
3181+ gradientTransform="translate(-46.77523,0.46740957)" />
3182+ <linearGradient
3183+ x1="58"
3184+ y1="4"
3185+ x2="68"
3186+ y2="43"
3187+ id="linearGradient3075"
3188+ xlink:href="#linearGradient3242-187-536"
3189+ gradientUnits="userSpaceOnUse"
3190+ gradientTransform="translate(-46.77523,0.46740957)" />
3191+ <linearGradient
3192+ x1="59"
3193+ y1="43"
3194+ x2="53"
3195+ y2="4"
3196+ id="linearGradient3077"
3197+ xlink:href="#linearGradient2490-182-124"
3198+ gradientUnits="userSpaceOnUse"
3199+ gradientTransform="translate(-46.77523,0.46740957)" />
3200+ <linearGradient
3201+ x1="69"
3202+ y1="5"
3203+ x2="85"
3204+ y2="44"
3205+ id="linearGradient3080"
3206+ xlink:href="#linearGradient3727"
3207+ gradientUnits="userSpaceOnUse"
3208+ gradientTransform="translate(4,-3.5)" />
3209+ <linearGradient
3210+ x1="63"
3211+ y1="5"
3212+ x2="75"
3213+ y2="43"
3214+ id="linearGradient3082"
3215+ xlink:href="#linearGradient3735"
3216+ gradientUnits="userSpaceOnUse"
3217+ gradientTransform="translate(4,-3)" />
3218+ <linearGradient
3219+ x1="58"
3220+ y1="4"
3221+ x2="68"
3222+ y2="43"
3223+ id="linearGradient3075-9"
3224+ xlink:href="#linearGradient3087-462-170-890-278"
3225+ gradientUnits="userSpaceOnUse"
3226+ gradientTransform="translate(-46.77523,0.46740957)" />
3227+ <linearGradient
3228+ x1="59"
3229+ y1="43"
3230+ x2="53"
3231+ y2="4"
3232+ id="linearGradient3077-5"
3233+ xlink:href="#linearGradient3968"
3234+ gradientUnits="userSpaceOnUse"
3235+ gradientTransform="translate(-46.77523,0.46740957)" />
3236+ <linearGradient
3237+ id="linearGradient4222-4-3">
3238+ <stop
3239+ id="stop4224-0-6"
3240+ style="stop-color:#ffffff;stop-opacity:1"
3241+ offset="0" />
3242+ <stop
3243+ id="stop4226-5-0"
3244+ style="stop-color:#ffffff;stop-opacity:0"
3245+ offset="1" />
3246+ </linearGradient>
3247+ <linearGradient
3248+ x1="55"
3249+ y1="4.5"
3250+ x2="59"
3251+ y2="43.5"
3252+ id="linearGradient3121"
3253+ xlink:href="#linearGradient4222-4-3"
3254+ gradientUnits="userSpaceOnUse"
3255+ gradientTransform="translate(-46.77523,0.46740957)" />
3256+ <linearGradient
3257+ x1="58"
3258+ y1="4"
3259+ x2="68"
3260+ y2="43"
3261+ id="linearGradient3164"
3262+ xlink:href="#linearGradient3087-462-170-890-278"
3263+ gradientUnits="userSpaceOnUse"
3264+ gradientTransform="translate(-46.77523,0.46740957)" />
3265+ <linearGradient
3266+ x1="59"
3267+ y1="43"
3268+ x2="53"
3269+ y2="4"
3270+ id="linearGradient3166"
3271+ xlink:href="#linearGradient3944"
3272+ gradientUnits="userSpaceOnUse"
3273+ gradientTransform="translate(-46.77523,0.46740957)" />
3274+ <linearGradient
3275+ x1="55"
3276+ y1="4.5"
3277+ x2="59"
3278+ y2="43.5"
3279+ id="linearGradient3168"
3280+ xlink:href="#linearGradient4222-4"
3281+ gradientUnits="userSpaceOnUse"
3282+ gradientTransform="translate(-46.77523,0.46740957)" />
3283+ <radialGradient
3284+ cx="23.070683"
3285+ cy="35.127438"
3286+ r="10.31934"
3287+ fx="23.070683"
3288+ fy="35.127438"
3289+ id="radialGradient3170"
3290+ xlink:href="#linearGradient3761"
3291+ gradientUnits="userSpaceOnUse"
3292+ gradientTransform="matrix(2.0832807,0.01226756,-0.01870788,0.20710173,2.3490649,12.232751)" />
3293+ <linearGradient
3294+ x1="58"
3295+ y1="4"
3296+ x2="68"
3297+ y2="43"
3298+ id="linearGradient3956"
3299+ xlink:href="#linearGradient3087-462-170-890-278"
3300+ gradientUnits="userSpaceOnUse"
3301+ gradientTransform="translate(-46.77523,0.46740957)" />
3302+ <linearGradient
3303+ x1="59"
3304+ y1="43"
3305+ x2="53"
3306+ y2="4"
3307+ id="linearGradient3958"
3308+ xlink:href="#linearGradient3944"
3309+ gradientUnits="userSpaceOnUse"
3310+ gradientTransform="translate(-46.77523,0.46740957)" />
3311+ <linearGradient
3312+ x1="55"
3313+ y1="4.5"
3314+ x2="59"
3315+ y2="43.5"
3316+ id="linearGradient3961"
3317+ xlink:href="#linearGradient4222-4"
3318+ gradientUnits="userSpaceOnUse"
3319+ gradientTransform="translate(-47.817913,0.46740957)" />
3320+ <linearGradient
3321+ x1="58"
3322+ y1="4"
3323+ x2="68"
3324+ y2="43"
3325+ id="linearGradient3964"
3326+ xlink:href="#linearGradient3087-462-170-890-278"
3327+ gradientUnits="userSpaceOnUse"
3328+ gradientTransform="translate(-47.817913,0.46740957)" />
3329+ <linearGradient
3330+ x1="50.5"
3331+ y1="46.661018"
3332+ x2="53.203388"
3333+ y2="4.4999948"
3334+ id="linearGradient3966"
3335+ xlink:href="#linearGradient3968"
3336+ gradientUnits="userSpaceOnUse"
3337+ gradientTransform="translate(-47.817913,0.46740957)" />
3338+ <linearGradient
3339+ x1="55"
3340+ y1="4.5"
3341+ x2="59"
3342+ y2="43.5"
3343+ id="linearGradient3737"
3344+ xlink:href="#linearGradient4222-4"
3345+ gradientUnits="userSpaceOnUse"
3346+ gradientTransform="translate(-47.817913,2.5010401)" />
3347+ <linearGradient
3348+ x1="58"
3349+ y1="4"
3350+ x2="68"
3351+ y2="43"
3352+ id="linearGradient3740"
3353+ xlink:href="#linearGradient3087-462-170-890-278"
3354+ gradientUnits="userSpaceOnUse"
3355+ gradientTransform="translate(-47.817913,2.5010401)" />
3356+ <linearGradient
3357+ x1="50.5"
3358+ y1="46.661018"
3359+ x2="53.203388"
3360+ y2="4.4999948"
3361+ id="linearGradient3742"
3362+ xlink:href="#linearGradient3968"
3363+ gradientUnits="userSpaceOnUse"
3364+ gradientTransform="translate(-47.817913,2.5010401)" />
3365+ <linearGradient
3366+ x1="58"
3367+ y1="4"
3368+ x2="68"
3369+ y2="43"
3370+ id="linearGradient3740-8"
3371+ xlink:href="#linearGradient3087-462-170-890-278-6"
3372+ gradientUnits="userSpaceOnUse"
3373+ gradientTransform="translate(-47.817913,2.5010401)" />
3374+ <linearGradient
3375+ id="linearGradient3087-462-170-890-278-6">
3376+ <stop
3377+ id="stop3193-7"
3378+ style="stop-color:#484848;stop-opacity:1"
3379+ offset="0" />
3380+ <stop
3381+ id="stop3195-0"
3382+ style="stop-color:#878787;stop-opacity:1"
3383+ offset="0" />
3384+ <stop
3385+ id="stop3197-4"
3386+ style="stop-color:#6b6b6b;stop-opacity:1"
3387+ offset="0" />
3388+ <stop
3389+ id="stop3199-8"
3390+ style="stop-color:#4d4d4d;stop-opacity:1"
3391+ offset="0.75" />
3392+ <stop
3393+ id="stop3201-4"
3394+ style="stop-color:#4e4e4e;stop-opacity:1"
3395+ offset="1" />
3396+ </linearGradient>
3397+ <linearGradient
3398+ x1="50.5"
3399+ y1="46.661018"
3400+ x2="53.203388"
3401+ y2="4.4999948"
3402+ id="linearGradient3742-8"
3403+ xlink:href="#linearGradient3968-1"
3404+ gradientUnits="userSpaceOnUse"
3405+ gradientTransform="translate(-47.817913,2.5010401)" />
3406+ <linearGradient
3407+ id="linearGradient3968-1">
3408+ <stop
3409+ id="stop3970-6"
3410+ style="stop-color:#363636;stop-opacity:1"
3411+ offset="0" />
3412+ <stop
3413+ id="stop3972-8"
3414+ style="stop-color:#3b3b3b;stop-opacity:1"
3415+ offset="0.58528459" />
3416+ </linearGradient>
3417+ <linearGradient
3418+ x1="55"
3419+ y1="4.5"
3420+ x2="59"
3421+ y2="43.5"
3422+ id="linearGradient3737-5"
3423+ xlink:href="#linearGradient4222-4-2"
3424+ gradientUnits="userSpaceOnUse"
3425+ gradientTransform="translate(-47.817913,2.5010401)" />
3426+ <linearGradient
3427+ id="linearGradient4222-4-2">
3428+ <stop
3429+ id="stop4224-0-1"
3430+ style="stop-color:#ffffff;stop-opacity:1"
3431+ offset="0" />
3432+ <stop
3433+ id="stop4226-5-9"
3434+ style="stop-color:#ffffff;stop-opacity:0"
3435+ offset="1" />
3436+ </linearGradient>
3437+ <linearGradient
3438+ x1="55"
3439+ y1="4.5"
3440+ x2="59"
3441+ y2="43.5"
3442+ id="linearGradient3781"
3443+ xlink:href="#linearGradient4222-4-2"
3444+ gradientUnits="userSpaceOnUse"
3445+ gradientTransform="translate(-47.817913,2.5010401)" />
3446+ <linearGradient
3447+ x1="58"
3448+ y1="4"
3449+ x2="68"
3450+ y2="43"
3451+ id="linearGradient3828"
3452+ xlink:href="#linearGradient3087-462-170-890-278"
3453+ gradientUnits="userSpaceOnUse"
3454+ gradientTransform="translate(-47.817913,2.5010401)" />
3455+ <linearGradient
3456+ x1="50.5"
3457+ y1="46.661018"
3458+ x2="53.203388"
3459+ y2="4.4999948"
3460+ id="linearGradient3830"
3461+ xlink:href="#linearGradient3968"
3462+ gradientUnits="userSpaceOnUse"
3463+ gradientTransform="translate(-47.817913,2.5010401)" />
3464+ <linearGradient
3465+ x1="55"
3466+ y1="4.5"
3467+ x2="59"
3468+ y2="43.5"
3469+ id="linearGradient3832"
3470+ xlink:href="#linearGradient4222-4"
3471+ gradientUnits="userSpaceOnUse"
3472+ gradientTransform="translate(-47.817913,2.5010401)" />
3473+ <radialGradient
3474+ cx="23.070683"
3475+ cy="35.127438"
3476+ r="10.31934"
3477+ fx="23.070683"
3478+ fy="35.127438"
3479+ id="radialGradient3834"
3480+ xlink:href="#linearGradient3761"
3481+ gradientUnits="userSpaceOnUse"
3482+ gradientTransform="matrix(2.1481853,0.01226756,-0.01929072,0.20710173,1.0229333,12.232751)" />
3483+ </defs>
3484+ <g
3485+ transform="matrix(0.94915254,0,0,0.75141331,-48.898303,11.485719)"
3486+ id="g3906">
3487+ <g
3488+ transform="translate(24,24)"
3489+ id="g2929">
3490+ <path
3491+ d="m 73.874998,19.749991 a 24.232143,2.250008 0 0 1 -48.464286,0 24.232143,2.250008 0 1 1 48.464286,0 z"
3492+ id="path2931"
3493+ style="opacity:0.3;fill:url(#radialGradient3834);fill-opacity:1;stroke:none" />
3494+ </g>
3495+ </g>
3496+ <g
3497+ transform="translate(1,0)"
3498+ id="g3747">
3499+ <path
3500+ d="M 14.590985,43.525156 3.4490352,43.489196 14.682087,26.501031 2.4956453,9.5146247 14.495646,9.5505797 26.46636,26.536991 14.590985,43.525156 z"
3501+ id="path2909"
3502+ style="fill:url(#linearGradient3828);fill-opacity:1;stroke:url(#linearGradient3830);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
3503+ <path
3504+ d="M 4.4832371,10.529112 15.525837,26.00104 c 0.179986,0.300291 0.179986,0.699709 0,1 L 5.3177966,42.536527 14,42.545527 25.26811,26.483063 14,10.517304 4.4832371,10.529112 z"
3505+ id="path3790"
3506+ style="opacity:0.23999999;fill:none;stroke:url(#linearGradient3832);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
3507+ </g>
3508+ <g
3509+ transform="translate(19,0.00799514)"
3510+ id="g3747-9">
3511+ <path
3512+ d="M 14.590985,43.525156 3.4490352,43.489196 14.682087,26.501031 2.4956453,9.5146247 14.495646,9.5505797 26.46636,26.536991 14.590985,43.525156 z"
3513+ id="path2909-6"
3514+ style="fill:url(#linearGradient3740-8);fill-opacity:1;stroke:url(#linearGradient3742-8);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
3515+ <path
3516+ d="M 4.4832371,10.529112 15.525837,26.00104 c 0.179986,0.300291 0.179986,0.699709 0,1 L 5.3177966,42.536527 14,42.545527 25.26811,26.483063 14,10.517304 4.4832371,10.529112 z"
3517+ id="path3790-0"
3518+ style="opacity:0.23999999;fill:none;stroke:url(#linearGradient3781);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
3519+ </g>
3520+</svg>
3521
3522=== added file 'data/icons/scalable/apps/partner.svg'
3523--- data/icons/scalable/apps/partner.svg 1970-01-01 00:00:00 +0000
3524+++ data/icons/scalable/apps/partner.svg 2010-08-30 09:34:07 +0000
3525@@ -0,0 +1,73 @@
3526+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
3527+<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
3528+
3529+<svg
3530+ xmlns:dc="http://purl.org/dc/elements/1.1/"
3531+ xmlns:cc="http://creativecommons.org/ns#"
3532+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
3533+ xmlns:svg="http://www.w3.org/2000/svg"
3534+ xmlns="http://www.w3.org/2000/svg"
3535+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
3536+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
3537+ version="1.1"
3538+ id="Layer_1"
3539+ x="0px"
3540+ y="0px"
3541+ width="225"
3542+ height="225"
3543+ viewBox="0 0 224.99999 224.99999"
3544+ enable-background="new 0 0 841.89 595.28"
3545+ xml:space="preserve"
3546+ inkscape:version="0.47 r22583"
3547+ sodipodi:docname="partner.svg"><metadata
3548+ id="metadata11"><rdf:RDF><cc:Work
3549+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
3550+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
3551+ id="defs9"><inkscape:perspective
3552+ sodipodi:type="inkscape:persp3d"
3553+ inkscape:vp_x="0 : 297.64001 : 1"
3554+ inkscape:vp_y="0 : 1000 : 0"
3555+ inkscape:vp_z="841.89001 : 297.64001 : 1"
3556+ inkscape:persp3d-origin="420.94501 : 198.42668 : 1"
3557+ id="perspective13" /><inkscape:perspective
3558+ id="perspective2822"
3559+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
3560+ inkscape:vp_z="1 : 0.5 : 1"
3561+ inkscape:vp_y="0 : 1000 : 0"
3562+ inkscape:vp_x="0 : 0.5 : 1"
3563+ sodipodi:type="inkscape:persp3d" /><inkscape:perspective
3564+ id="perspective3617"
3565+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
3566+ inkscape:vp_z="1 : 0.5 : 1"
3567+ inkscape:vp_y="0 : 1000 : 0"
3568+ inkscape:vp_x="0 : 0.5 : 1"
3569+ sodipodi:type="inkscape:persp3d" /></defs><sodipodi:namedview
3570+ pagecolor="#ffffff"
3571+ bordercolor="#666666"
3572+ borderopacity="1"
3573+ objecttolerance="10"
3574+ gridtolerance="10"
3575+ guidetolerance="10"
3576+ inkscape:pageopacity="0"
3577+ inkscape:pageshadow="2"
3578+ inkscape:window-width="1024"
3579+ inkscape:window-height="717"
3580+ id="namedview7"
3581+ showgrid="false"
3582+ inkscape:zoom="1.16885"
3583+ inkscape:cx="237.30937"
3584+ inkscape:cy="88.261758"
3585+ inkscape:window-x="1024"
3586+ inkscape:window-y="24"
3587+ inkscape:window-maximized="1"
3588+ inkscape:current-layer="Layer_1" />
3589+
3590+<g
3591+ id="g3615"><path
3592+ style="fill:#772953;fill-opacity:1"
3593+ id="path3"
3594+ d="m 214.99999,112.49817 c 0,56.60845 -45.89108,102.50182 -102.49818,102.50182 -56.607091,0 -102.5018104,-45.89428 -102.5018104,-102.50182 0,-56.604804 45.8956284,-102.4981704 102.5027204,-102.4981704 56.6071,0 102.49727,45.8933664 102.49727,102.4981704 z" /><path
3595+ style="fill:none;stroke:#ffffff;stroke-width:13.65240002000000175;fill-opacity:1"
3596+ id="path5"
3597+ d="m 34.8262,112.49897 c 0,-42.892372 34.774923,-77.672781 77.67178,-77.672781 42.89383,0 77.67581,34.780409 77.67581,77.672781 0,42.89742 -34.78198,77.67481 -77.67581,77.67481 -42.896857,-0.001 -77.67178,-34.77739 -77.67178,-77.67481 z" /></g>
3598+</svg>
3599\ No newline at end of file
3600
3601=== added file 'data/icons/scalable/apps/softwarecenter.svg'
3602--- data/icons/scalable/apps/softwarecenter.svg 1970-01-01 00:00:00 +0000
3603+++ data/icons/scalable/apps/softwarecenter.svg 2010-08-30 09:34:07 +0000
3604@@ -0,0 +1,1548 @@
3605+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
3606+<!-- Created with Inkscape (http://www.inkscape.org/) -->
3607+<svg
3608+ xmlns:dc="http://purl.org/dc/elements/1.1/"
3609+ xmlns:cc="http://creativecommons.org/ns#"
3610+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
3611+ xmlns:svg="http://www.w3.org/2000/svg"
3612+ xmlns="http://www.w3.org/2000/svg"
3613+ xmlns:xlink="http://www.w3.org/1999/xlink"
3614+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
3615+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
3616+ width="128"
3617+ height="128"
3618+ id="svg2"
3619+ version="1.1"
3620+ inkscape:version="0.46"
3621+ sodipodi:docname="softwarestore.svg"
3622+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
3623+ inkscape:export-filename="/home/kwwii/Desktop/softwarestore32.png"
3624+ inkscape:export-xdpi="22.5"
3625+ inkscape:export-ydpi="22.5"
3626+ sodipodi:version="0.32">
3627+ <defs
3628+ id="defs4">
3629+ <inkscape:perspective
3630+ sodipodi:type="inkscape:persp3d"
3631+ inkscape:vp_x="0 : 64 : 1"
3632+ inkscape:vp_y="0 : 1000 : 0"
3633+ inkscape:vp_z="128 : 64 : 1"
3634+ inkscape:persp3d-origin="64 : 42.666667 : 1"
3635+ id="perspective258" />
3636+ <linearGradient
3637+ inkscape:collect="always"
3638+ id="linearGradient8432">
3639+ <stop
3640+ style="stop-color:#000000;stop-opacity:1;"
3641+ offset="0"
3642+ id="stop8434" />
3643+ <stop
3644+ style="stop-color:#000000;stop-opacity:0;"
3645+ offset="1"
3646+ id="stop8436" />
3647+ </linearGradient>
3648+ <linearGradient
3649+ id="linearGradient3665">
3650+ <stop
3651+ style="stop-color:#674323;stop-opacity:1;"
3652+ offset="0"
3653+ id="stop3667" />
3654+ <stop
3655+ style="stop-color:#c48752;stop-opacity:0;"
3656+ offset="1"
3657+ id="stop3669" />
3658+ </linearGradient>
3659+ <linearGradient
3660+ id="linearGradient3633">
3661+ <stop
3662+ style="stop-color:#50331d;stop-opacity:1;"
3663+ offset="0"
3664+ id="stop3635" />
3665+ <stop
3666+ style="stop-color:#9c7b5f;stop-opacity:1;"
3667+ offset="1"
3668+ id="stop3637" />
3669+ </linearGradient>
3670+ <linearGradient
3671+ id="linearGradient3619">
3672+ <stop
3673+ style="stop-color:#c2a286;stop-opacity:1;"
3674+ offset="0"
3675+ id="stop3621" />
3676+ <stop
3677+ id="stop3627"
3678+ offset="0.58713073"
3679+ style="stop-color:#a6754a;stop-opacity:1;" />
3680+ <stop
3681+ style="stop-color:#966941;stop-opacity:1;"
3682+ offset="0.74006671"
3683+ id="stop3629" />
3684+ <stop
3685+ style="stop-color:#b48052;stop-opacity:1;"
3686+ offset="1"
3687+ id="stop3623" />
3688+ </linearGradient>
3689+ <linearGradient
3690+ id="linearGradient3665-9">
3691+ <stop
3692+ style="stop-color:#674323;stop-opacity:1;"
3693+ offset="0"
3694+ id="stop3667-1" />
3695+ <stop
3696+ style="stop-color:#c48752;stop-opacity:0;"
3697+ offset="1"
3698+ id="stop3669-7" />
3699+ </linearGradient>
3700+ <linearGradient
3701+ inkscape:collect="always"
3702+ xlink:href="#linearGradient3665-9"
3703+ id="linearGradient5111"
3704+ gradientUnits="userSpaceOnUse"
3705+ gradientTransform="matrix(-6.9297164,0,0,5.7747637,123.68801,931.97963)"
3706+ x1="3"
3707+ y1="14.999983"
3708+ x2="3.8152161"
3709+ y2="16.999983" />
3710+ <linearGradient
3711+ inkscape:collect="always"
3712+ xlink:href="#linearGradient3665"
3713+ id="linearGradient5114"
3714+ gradientUnits="userSpaceOnUse"
3715+ gradientTransform="matrix(6.9297164,0,0,5.7747637,1.2630181,931.97963)"
3716+ x1="3"
3717+ y1="14.999983"
3718+ x2="3.8152161"
3719+ y2="16.999983" />
3720+ <radialGradient
3721+ inkscape:collect="always"
3722+ xlink:href="#linearGradient3633"
3723+ id="radialGradient5117"
3724+ gradientUnits="userSpaceOnUse"
3725+ gradientTransform="matrix(12.146917,0,0,1.79219,-71.140588,952.46969)"
3726+ cx="11"
3727+ cy="7.9000001"
3728+ fx="11"
3729+ fy="7.9000001"
3730+ r="7.25" />
3731+ <linearGradient
3732+ id="linearGradient8647">
3733+ <stop
3734+ id="stop8649"
3735+ offset="0"
3736+ style="stop-color:#6ccdff;stop-opacity:1;" />
3737+ <stop
3738+ id="stop8651"
3739+ offset="1"
3740+ style="stop-color:#004bab;stop-opacity:1;" />
3741+ </linearGradient>
3742+ <linearGradient
3743+ id="linearGradient8740"
3744+ inkscape:collect="always">
3745+ <stop
3746+ id="stop8742"
3747+ offset="0"
3748+ style="stop-color:#ffffff;stop-opacity:1;" />
3749+ <stop
3750+ id="stop8744"
3751+ offset="1"
3752+ style="stop-color:#ffffff;stop-opacity:0;" />
3753+ </linearGradient>
3754+ <linearGradient
3755+ id="linearGradient8924">
3756+ <stop
3757+ style="stop-color:#cee14b"
3758+ offset="0"
3759+ id="stop8926" />
3760+ <stop
3761+ style="stop-color:#63d900;stop-opacity:1;"
3762+ offset="1"
3763+ id="stop8928" />
3764+ </linearGradient>
3765+ <linearGradient
3766+ id="linearGradient8918">
3767+ <stop
3768+ style="stop-color:#8dff2d;stop-opacity:1;"
3769+ offset="0"
3770+ id="stop8920" />
3771+ <stop
3772+ style="stop-color:#6bc500;stop-opacity:1;"
3773+ offset="1"
3774+ id="stop8922" />
3775+ </linearGradient>
3776+ <linearGradient
3777+ inkscape:collect="always"
3778+ xlink:href="#linearGradient3123"
3779+ id="linearGradient3129"
3780+ x1="11.579321"
3781+ y1="21.053846"
3782+ x2="35.079323"
3783+ y2="52.56406"
3784+ gradientUnits="userSpaceOnUse" />
3785+ <linearGradient
3786+ inkscape:collect="always"
3787+ id="linearGradient3123">
3788+ <stop
3789+ style="stop-color:#888a85;stop-opacity:1;"
3790+ offset="0"
3791+ id="stop3125" />
3792+ <stop
3793+ style="stop-color:#babdb6;stop-opacity:1"
3794+ offset="1"
3795+ id="stop3127" />
3796+ </linearGradient>
3797+ <linearGradient
3798+ inkscape:collect="always"
3799+ xlink:href="#linearGradient3093"
3800+ id="linearGradient3099"
3801+ x1="8.125"
3802+ y1="18.625"
3803+ x2="8.125"
3804+ y2="1.5623856"
3805+ gradientUnits="userSpaceOnUse" />
3806+ <linearGradient
3807+ id="linearGradient3093">
3808+ <stop
3809+ style="stop-color:#2e3436;stop-opacity:1"
3810+ offset="0"
3811+ id="stop3095" />
3812+ <stop
3813+ style="stop-color:#555753;stop-opacity:1;"
3814+ offset="1"
3815+ id="stop3097" />
3816+ </linearGradient>
3817+ <linearGradient
3818+ inkscape:collect="always"
3819+ xlink:href="#linearGradient3396"
3820+ id="linearGradient3402"
3821+ x1="7.625"
3822+ y1="4.9375"
3823+ x2="9.1875"
3824+ y2="22.625"
3825+ gradientUnits="userSpaceOnUse" />
3826+ <linearGradient
3827+ inkscape:collect="always"
3828+ id="linearGradient3396">
3829+ <stop
3830+ style="stop-color:white;stop-opacity:1;"
3831+ offset="0"
3832+ id="stop3398" />
3833+ <stop
3834+ style="stop-color:white;stop-opacity:0;"
3835+ offset="1"
3836+ id="stop3400" />
3837+ </linearGradient>
3838+ <linearGradient
3839+ inkscape:collect="always"
3840+ xlink:href="#linearGradient3115"
3841+ id="linearGradient3121"
3842+ x1="10.375"
3843+ y1="11.0625"
3844+ x2="10.25"
3845+ y2="5.6206751"
3846+ gradientUnits="userSpaceOnUse"
3847+ gradientTransform="translate(0,1)" />
3848+ <linearGradient
3849+ inkscape:collect="always"
3850+ id="linearGradient3115">
3851+ <stop
3852+ style="stop-color:white;stop-opacity:1;"
3853+ offset="0"
3854+ id="stop3117" />
3855+ <stop
3856+ style="stop-color:white;stop-opacity:0;"
3857+ offset="1"
3858+ id="stop3119" />
3859+ </linearGradient>
3860+ <linearGradient
3861+ inkscape:collect="always"
3862+ id="linearGradient3245">
3863+ <stop
3864+ style="stop-color:#babdb6;stop-opacity:1"
3865+ offset="0"
3866+ id="stop3247" />
3867+ <stop
3868+ style="stop-color:#888a85;stop-opacity:1"
3869+ offset="1"
3870+ id="stop3249" />
3871+ </linearGradient>
3872+ <linearGradient
3873+ inkscape:collect="always"
3874+ id="linearGradient3221">
3875+ <stop
3876+ style="stop-color:white;stop-opacity:1;"
3877+ offset="0"
3878+ id="stop3223" />
3879+ <stop
3880+ style="stop-color:white;stop-opacity:0;"
3881+ offset="1"
3882+ id="stop3225" />
3883+ </linearGradient>
3884+ <linearGradient
3885+ inkscape:collect="always"
3886+ xlink:href="#linearGradient3221"
3887+ id="linearGradient3371"
3888+ gradientUnits="userSpaceOnUse"
3889+ gradientTransform="translate(-0.999989,4.2915365e-6)"
3890+ x1="14.49791"
3891+ y1="20.819609"
3892+ x2="17.692724"
3893+ y2="24.905617" />
3894+ <linearGradient
3895+ inkscape:collect="always"
3896+ xlink:href="#linearGradient3221"
3897+ id="linearGradient3387"
3898+ gradientUnits="userSpaceOnUse"
3899+ x1="14.49791"
3900+ y1="20.819609"
3901+ x2="15.223973"
3902+ y2="22.249367" />
3903+ <linearGradient
3904+ id="XMLID_34_"
3905+ gradientUnits="userSpaceOnUse"
3906+ x1="64.586403"
3907+ y1="53.105499"
3908+ x2="73.503799"
3909+ y2="62.0233">
3910+ <stop
3911+ offset="0"
3912+ style="stop-color:#F36600"
3913+ id="stop11629" />
3914+ <stop
3915+ offset="0.1798"
3916+ style="stop-color:#E69C2E"
3917+ id="stop11631" />
3918+ <stop
3919+ offset="0.5056"
3920+ style="stop-color:#D66628"
3921+ id="stop11633" />
3922+ <stop
3923+ offset="1"
3924+ style="stop-color:#F36600"
3925+ id="stop11635" />
3926+ </linearGradient>
3927+ <linearGradient
3928+ id="XMLID_35_"
3929+ gradientUnits="userSpaceOnUse"
3930+ x1="71.991203"
3931+ y1="115.9727"
3932+ x2="80.866203"
3933+ y2="124.8477"
3934+ gradientTransform="matrix(0.9027,-0.086,-0.086,0.9027,-18.4803,-14.1634)">
3935+ <stop
3936+ offset="0"
3937+ style="stop-color:#E0E0E0"
3938+ id="stop11644" />
3939+ <stop
3940+ offset="0.2921"
3941+ style="stop-color:#FFFFFF"
3942+ id="stop11646" />
3943+ <stop
3944+ offset="1"
3945+ style="stop-color:#636363"
3946+ id="stop11648" />
3947+ </linearGradient>
3948+ <linearGradient
3949+ id="XMLID_36_"
3950+ gradientUnits="userSpaceOnUse"
3951+ x1="9.0531998"
3952+ y1="110.1631"
3953+ x2="17.5065"
3954+ y2="118.6163">
3955+ <stop
3956+ offset="0"
3957+ style="stop-color:#FFFFFF"
3958+ id="stop11653" />
3959+ <stop
3960+ offset="1"
3961+ style="stop-color:#B1B1B1"
3962+ id="stop11655" />
3963+ </linearGradient>
3964+ <linearGradient
3965+ id="XMLID_37_"
3966+ gradientUnits="userSpaceOnUse"
3967+ x1="41.2607"
3968+ y1="153.6055"
3969+ x2="41.991199"
3970+ y2="134.8568"
3971+ gradientTransform="matrix(0.9204,-0.0796,-0.0796,0.9204,-13.4588,-13.4578)">
3972+ <stop
3973+ offset="0"
3974+ style="stop-color:#B9B9B9"
3975+ id="stop11660" />
3976+ <stop
3977+ offset="1"
3978+ style="stop-color:#F0F0F0"
3979+ id="stop11662" />
3980+ </linearGradient>
3981+ <linearGradient
3982+ id="XMLID_38_"
3983+ gradientUnits="userSpaceOnUse"
3984+ x1="47.877399"
3985+ y1="-8.1499004"
3986+ x2="52.3013"
3987+ y2="-3.7261"
3988+ gradientTransform="matrix(1.2065,0.1902,0.1902,1.2065,35.8319,31.1386)">
3989+ <stop
3990+ offset="0"
3991+ style="stop-color:#F36600"
3992+ id="stop11667" />
3993+ <stop
3994+ offset="0.2697"
3995+ style="stop-color:#AD5220"
3996+ id="stop11669" />
3997+ <stop
3998+ offset="0.6573"
3999+ style="stop-color:#D66628"
4000+ id="stop11671" />
4001+ <stop
4002+ offset="1"
4003+ style="stop-color:#F36600"
4004+ id="stop11673" />
4005+ </linearGradient>
4006+ <linearGradient
4007+ id="XMLID_39_"
4008+ gradientUnits="userSpaceOnUse"
4009+ x1="1180.4746"
4010+ y1="-1103.4536"
4011+ x2="1184.8984"
4012+ y2="-1099.0298"
4013+ gradientTransform="matrix(0.6541,0.5357,0.5357,0.6541,-119.4234,151.2162)">
4014+ <stop
4015+ offset="0"
4016+ style="stop-color:#F36600"
4017+ id="stop11678" />
4018+ <stop
4019+ offset="0.2697"
4020+ style="stop-color:#AD5220"
4021+ id="stop11680" />
4022+ <stop
4023+ offset="0.6573"
4024+ style="stop-color:#D66628"
4025+ id="stop11682" />
4026+ <stop
4027+ offset="1"
4028+ style="stop-color:#F36600"
4029+ id="stop11684" />
4030+ </linearGradient>
4031+ <linearGradient
4032+ id="XMLID_40_"
4033+ gradientUnits="userSpaceOnUse"
4034+ x1="-523.88568"
4035+ y1="23.861799"
4036+ x2="-527.36761"
4037+ y2="20.379101"
4038+ gradientTransform="matrix(-0.9814,-0.0021,-0.0021,-0.9814,-415.6453,58.6818)">
4039+ <stop
4040+ offset="0.2079"
4041+ style="stop-color:#F36600"
4042+ id="stop11689" />
4043+ <stop
4044+ offset="0.27"
4045+ style="stop-color:#F77207"
4046+ id="stop11691" />
4047+ <stop
4048+ offset="0.3726"
4049+ style="stop-color:#FC800E"
4050+ id="stop11693" />
4051+ <stop
4052+ offset="0.5031"
4053+ style="stop-color:#FE8813"
4054+ id="stop11695" />
4055+ <stop
4056+ offset="0.7528"
4057+ style="stop-color:#FF8A14"
4058+ id="stop11697" />
4059+ <stop
4060+ offset="0.9719"
4061+ style="stop-color:#F36600"
4062+ id="stop11699" />
4063+ </linearGradient>
4064+ <linearGradient
4065+ id="XMLID_41_"
4066+ gradientUnits="userSpaceOnUse"
4067+ x1="-492.05319"
4068+ y1="-8.2593002"
4069+ x2="-495.40201"
4070+ y2="-11.609"
4071+ gradientTransform="matrix(-0.9814,-0.0021,-0.0021,-0.9814,-415.6453,58.6818)">
4072+ <stop
4073+ offset="0.2079"
4074+ style="stop-color:#F36600"
4075+ id="stop11704" />
4076+ <stop
4077+ offset="0.27"
4078+ style="stop-color:#F77207"
4079+ id="stop11706" />
4080+ <stop
4081+ offset="0.3726"
4082+ style="stop-color:#FC800E"
4083+ id="stop11708" />
4084+ <stop
4085+ offset="0.5031"
4086+ style="stop-color:#FE8813"
4087+ id="stop11710" />
4088+ <stop
4089+ offset="0.7528"
4090+ style="stop-color:#FF8A14"
4091+ id="stop11712" />
4092+ <stop
4093+ offset="0.9719"
4094+ style="stop-color:#F36600"
4095+ id="stop11714" />
4096+ </linearGradient>
4097+ <linearGradient
4098+ id="XMLID_42_"
4099+ gradientUnits="userSpaceOnUse"
4100+ x1="69.661102"
4101+ y1="2.6816001"
4102+ x2="73.694504"
4103+ y2="6.7150002"
4104+ gradientTransform="matrix(1.0759,0.0966,0.0966,1.0759,12.6425,16.3358)">
4105+ <stop
4106+ offset="0"
4107+ style="stop-color:#F36600"
4108+ id="stop11719" />
4109+ <stop
4110+ offset="0.4775"
4111+ style="stop-color:#FFCC33"
4112+ id="stop11721" />
4113+ <stop
4114+ offset="0.7865"
4115+ style="stop-color:#F36600"
4116+ id="stop11723" />
4117+ </linearGradient>
4118+ <linearGradient
4119+ id="XMLID_43_"
4120+ gradientUnits="userSpaceOnUse"
4121+ x1="56.774399"
4122+ y1="57.063999"
4123+ x2="61.1525"
4124+ y2="61.442001">
4125+ <stop
4126+ offset="0"
4127+ style="stop-color:#F36600"
4128+ id="stop11728" />
4129+ <stop
4130+ offset="0.4775"
4131+ style="stop-color:#FFCC33"
4132+ id="stop11730" />
4133+ <stop
4134+ offset="0.7865"
4135+ style="stop-color:#F36600"
4136+ id="stop11732" />
4137+ </linearGradient>
4138+ <linearGradient
4139+ id="XMLID_44_"
4140+ gradientUnits="userSpaceOnUse"
4141+ x1="56.450699"
4142+ y1="67.164101"
4143+ x2="60.409199"
4144+ y2="71.123001">
4145+ <stop
4146+ offset="0"
4147+ style="stop-color:#CCCCCC"
4148+ id="stop11737" />
4149+ <stop
4150+ offset="1"
4151+ style="stop-color:#999999"
4152+ id="stop11739" />
4153+ </linearGradient>
4154+ <linearGradient
4155+ inkscape:collect="always"
4156+ xlink:href="#XMLID_44_"
4157+ id="linearGradient12557"
4158+ gradientUnits="userSpaceOnUse"
4159+ x1="56.450699"
4160+ y1="67.164101"
4161+ x2="60.409199"
4162+ y2="71.123001"
4163+ gradientTransform="matrix(0.08598239,0,0,0.08598239,42.444283,1002.4681)" />
4164+ <linearGradient
4165+ inkscape:collect="always"
4166+ xlink:href="#XMLID_43_"
4167+ id="linearGradient12560"
4168+ gradientUnits="userSpaceOnUse"
4169+ x1="56.774399"
4170+ y1="57.063999"
4171+ x2="61.1525"
4172+ y2="61.442001"
4173+ gradientTransform="matrix(0.08598239,0,0,0.08598239,42.444283,1002.4681)" />
4174+ <linearGradient
4175+ inkscape:collect="always"
4176+ xlink:href="#XMLID_42_"
4177+ id="linearGradient12563"
4178+ gradientUnits="userSpaceOnUse"
4179+ gradientTransform="matrix(0.09250845,0.0083059,0.0083059,0.09250845,43.531315,1003.8727)"
4180+ x1="69.661102"
4181+ y1="2.6816001"
4182+ x2="73.694504"
4183+ y2="6.7150002" />
4184+ <linearGradient
4185+ inkscape:collect="always"
4186+ xlink:href="#XMLID_41_"
4187+ id="linearGradient12566"
4188+ gradientUnits="userSpaceOnUse"
4189+ gradientTransform="matrix(-0.08438312,-1.8056302e-4,-1.8056302e-4,-0.08438312,6.7061067,1007.5137)"
4190+ x1="-492.05319"
4191+ y1="-8.2593002"
4192+ x2="-495.40201"
4193+ y2="-11.609" />
4194+ <linearGradient
4195+ inkscape:collect="always"
4196+ xlink:href="#XMLID_40_"
4197+ id="linearGradient12569"
4198+ gradientUnits="userSpaceOnUse"
4199+ gradientTransform="matrix(-0.08438312,-1.8056302e-4,-1.8056302e-4,-0.08438312,6.7061067,1007.5137)"
4200+ x1="-523.88568"
4201+ y1="23.861799"
4202+ x2="-527.36761"
4203+ y2="20.379101" />
4204+ <linearGradient
4205+ inkscape:collect="always"
4206+ xlink:href="#XMLID_39_"
4207+ id="linearGradient12572"
4208+ gradientUnits="userSpaceOnUse"
4209+ gradientTransform="matrix(0.05624108,0.04606077,0.04606077,0.05624108,32.175974,1015.47)"
4210+ x1="1180.4746"
4211+ y1="-1103.4536"
4212+ x2="1184.8984"
4213+ y2="-1099.0298" />
4214+ <linearGradient
4215+ inkscape:collect="always"
4216+ xlink:href="#XMLID_38_"
4217+ id="linearGradient12575"
4218+ gradientUnits="userSpaceOnUse"
4219+ gradientTransform="matrix(0.10373775,0.01635385,0.01635385,0.10373775,45.525195,1005.1455)"
4220+ x1="47.877399"
4221+ y1="-8.1499004"
4222+ x2="52.3013"
4223+ y2="-3.7261" />
4224+ <filter
4225+ inkscape:collect="always"
4226+ id="filter4034"
4227+ x="-0.033209807"
4228+ width="1.0664196"
4229+ y="-0.31039071"
4230+ height="1.6207814">
4231+ <feGaussianBlur
4232+ inkscape:collect="always"
4233+ stdDeviation="1.4936906"
4234+ id="feGaussianBlur4036" />
4235+ </filter>
4236+ <linearGradient
4237+ id="linearGradient8918-0">
4238+ <stop
4239+ style="stop-color:#8dff2d;stop-opacity:1;"
4240+ offset="0"
4241+ id="stop8920-9" />
4242+ <stop
4243+ style="stop-color:#6bc500;stop-opacity:1;"
4244+ offset="1"
4245+ id="stop8922-0" />
4246+ </linearGradient>
4247+ <linearGradient
4248+ id="linearGradient8740-8"
4249+ inkscape:collect="always">
4250+ <stop
4251+ id="stop8742-7"
4252+ offset="0"
4253+ style="stop-color:#ffffff;stop-opacity:1;" />
4254+ <stop
4255+ id="stop8744-0"
4256+ offset="1"
4257+ style="stop-color:#ffffff;stop-opacity:0;" />
4258+ </linearGradient>
4259+ <radialGradient
4260+ inkscape:collect="always"
4261+ xlink:href="#linearGradient8647"
4262+ id="radialGradient4398"
4263+ gradientUnits="userSpaceOnUse"
4264+ gradientTransform="matrix(3.1626045,0,0,3.162675,-126.57491,866.51671)"
4265+ cx="62.200352"
4266+ cy="-8.7256308"
4267+ fx="62.200352"
4268+ fy="-8.7256308"
4269+ r="9.7552834" />
4270+ <radialGradient
4271+ inkscape:collect="always"
4272+ xlink:href="#linearGradient8918-0"
4273+ id="radialGradient4400"
4274+ gradientUnits="userSpaceOnUse"
4275+ gradientTransform="matrix(0.08149757,2.9380136,-1.9765691,0.05480643,102.85337,763.88299)"
4276+ cx="25.969097"
4277+ cy="17.257854"
4278+ fx="25.968998"
4279+ fy="17.257843"
4280+ r="9.8222504" />
4281+ <radialGradient
4282+ inkscape:collect="always"
4283+ xlink:href="#linearGradient8740-8"
4284+ id="radialGradient4402"
4285+ gradientUnits="userSpaceOnUse"
4286+ gradientTransform="matrix(1.2130977,0,0,1.1284641,39.32502,824.65892)"
4287+ cx="62.225391"
4288+ cy="-3.4420195"
4289+ fx="62.225391"
4290+ fy="-3.4420195"
4291+ r="10.081216" />
4292+ <radialGradient
4293+ inkscape:collect="always"
4294+ xlink:href="#linearGradient8918-0"
4295+ id="radialGradient4404"
4296+ gradientUnits="userSpaceOnUse"
4297+ gradientTransform="matrix(0.08149757,2.9380136,-1.9765691,0.05480643,102.85337,763.88299)"
4298+ cx="25.969097"
4299+ cy="17.257854"
4300+ fx="25.968998"
4301+ fy="17.257843"
4302+ r="9.8222504" />
4303+ <radialGradient
4304+ inkscape:collect="always"
4305+ xlink:href="#linearGradient8740-8"
4306+ id="radialGradient4406"
4307+ gradientUnits="userSpaceOnUse"
4308+ gradientTransform="matrix(1.2130977,0,0,1.1284641,39.32502,824.65892)"
4309+ cx="62.225391"
4310+ cy="-3.4420195"
4311+ fx="62.225391"
4312+ fy="-3.4420195"
4313+ r="10.081216" />
4314+ <radialGradient
4315+ inkscape:collect="always"
4316+ xlink:href="#linearGradient8918-0"
4317+ id="radialGradient4408"
4318+ gradientUnits="userSpaceOnUse"
4319+ gradientTransform="matrix(0.08149757,2.9380136,-1.9765691,0.05480643,102.85337,763.88299)"
4320+ cx="25.969097"
4321+ cy="17.257854"
4322+ fx="25.968998"
4323+ fy="17.257843"
4324+ r="9.8222504" />
4325+ <radialGradient
4326+ inkscape:collect="always"
4327+ xlink:href="#linearGradient8740-8"
4328+ id="radialGradient4410"
4329+ gradientUnits="userSpaceOnUse"
4330+ gradientTransform="matrix(1.2130977,0,0,1.1284641,39.32502,824.65892)"
4331+ cx="62.225391"
4332+ cy="-3.4420195"
4333+ fx="62.225391"
4334+ fy="-3.4420195"
4335+ r="10.081216" />
4336+ <radialGradient
4337+ inkscape:collect="always"
4338+ xlink:href="#linearGradient8918-0"
4339+ id="radialGradient4412"
4340+ gradientUnits="userSpaceOnUse"
4341+ gradientTransform="matrix(0.08149757,2.9380136,-1.9765691,0.05480643,102.85337,763.88299)"
4342+ cx="25.969097"
4343+ cy="17.257854"
4344+ fx="25.968998"
4345+ fy="17.257843"
4346+ r="9.8222504" />
4347+ <radialGradient
4348+ inkscape:collect="always"
4349+ xlink:href="#linearGradient8740-8"
4350+ id="radialGradient4414"
4351+ gradientUnits="userSpaceOnUse"
4352+ gradientTransform="matrix(1.2130977,0,0,1.1284641,39.32502,824.65892)"
4353+ cx="62.225391"
4354+ cy="-3.4420195"
4355+ fx="62.225391"
4356+ fy="-3.4420195"
4357+ r="10.081216" />
4358+ <radialGradient
4359+ inkscape:collect="always"
4360+ xlink:href="#linearGradient8918-0"
4361+ id="radialGradient4416"
4362+ gradientUnits="userSpaceOnUse"
4363+ gradientTransform="matrix(0.08149757,2.9380136,-1.9765691,0.05480643,102.85337,763.88299)"
4364+ cx="25.969097"
4365+ cy="17.257854"
4366+ fx="25.968998"
4367+ fy="17.257843"
4368+ r="9.8222504" />
4369+ <radialGradient
4370+ inkscape:collect="always"
4371+ xlink:href="#linearGradient8740-8"
4372+ id="radialGradient4418"
4373+ gradientUnits="userSpaceOnUse"
4374+ gradientTransform="matrix(1.2130977,0,0,1.1284641,39.32502,824.65892)"
4375+ cx="62.225391"
4376+ cy="-3.4420195"
4377+ fx="62.225391"
4378+ fy="-3.4420195"
4379+ r="10.081216" />
4380+ <radialGradient
4381+ inkscape:collect="always"
4382+ xlink:href="#linearGradient8918-0"
4383+ id="radialGradient4420"
4384+ gradientUnits="userSpaceOnUse"
4385+ gradientTransform="matrix(0.08149757,2.9380136,-1.9765691,0.05480643,102.85337,763.88299)"
4386+ cx="25.969097"
4387+ cy="17.257854"
4388+ fx="25.968998"
4389+ fy="17.257843"
4390+ r="9.8222504" />
4391+ <radialGradient
4392+ inkscape:collect="always"
4393+ xlink:href="#linearGradient8740-8"
4394+ id="radialGradient4422"
4395+ gradientUnits="userSpaceOnUse"
4396+ gradientTransform="matrix(1.2130977,0,0,1.1284641,39.32502,824.65892)"
4397+ cx="62.225391"
4398+ cy="-3.4420195"
4399+ fx="62.225391"
4400+ fy="-3.4420195"
4401+ r="10.081216" />
4402+ <radialGradient
4403+ inkscape:collect="always"
4404+ xlink:href="#linearGradient8924"
4405+ id="radialGradient4424"
4406+ gradientUnits="userSpaceOnUse"
4407+ gradientTransform="matrix(0.09014828,3.249873,-2.3186934,0.0643248,110.69782,760.45336)"
4408+ cx="24.652573"
4409+ cy="18.94449"
4410+ fx="24.652485"
4411+ fy="18.944481"
4412+ r="8.6174498" />
4413+ <radialGradient
4414+ inkscape:collect="always"
4415+ xlink:href="#linearGradient8740"
4416+ id="radialGradient4426"
4417+ gradientUnits="userSpaceOnUse"
4418+ gradientTransform="matrix(1.1772704,0,0,1.0951353,39.945039,825.47547)"
4419+ cx="62.225391"
4420+ cy="-3.4420195"
4421+ fx="62.225391"
4422+ fy="-3.4420195"
4423+ r="10.081216" />
4424+ <radialGradient
4425+ inkscape:collect="always"
4426+ xlink:href="#linearGradient8918-0"
4427+ id="radialGradient4428"
4428+ gradientUnits="userSpaceOnUse"
4429+ gradientTransform="matrix(0.08149757,2.9380136,-1.9765691,0.05480643,102.85337,763.88299)"
4430+ cx="25.969097"
4431+ cy="17.257854"
4432+ fx="25.968998"
4433+ fy="17.257843"
4434+ r="9.8222504" />
4435+ <radialGradient
4436+ inkscape:collect="always"
4437+ xlink:href="#linearGradient8740-8"
4438+ id="radialGradient4430"
4439+ gradientUnits="userSpaceOnUse"
4440+ gradientTransform="matrix(1.2130977,0,0,1.1284641,39.32502,824.65892)"
4441+ cx="62.225391"
4442+ cy="-3.4420195"
4443+ fx="62.225391"
4444+ fy="-3.4420195"
4445+ r="10.081216" />
4446+ <radialGradient
4447+ inkscape:collect="always"
4448+ xlink:href="#linearGradient8918-0"
4449+ id="radialGradient4432"
4450+ gradientUnits="userSpaceOnUse"
4451+ gradientTransform="matrix(0.08149757,2.9380136,-1.9765691,0.05480643,102.85337,763.88299)"
4452+ cx="25.969097"
4453+ cy="17.257854"
4454+ fx="25.968998"
4455+ fy="17.257843"
4456+ r="9.8222504" />
4457+ <radialGradient
4458+ inkscape:collect="always"
4459+ xlink:href="#linearGradient8740-8"
4460+ id="radialGradient4434"
4461+ gradientUnits="userSpaceOnUse"
4462+ gradientTransform="matrix(1.2130977,0,0,1.1284641,39.32502,824.65892)"
4463+ cx="62.225391"
4464+ cy="-3.4420195"
4465+ fx="62.225391"
4466+ fy="-3.4420195"
4467+ r="10.081216" />
4468+ <radialGradient
4469+ inkscape:collect="always"
4470+ xlink:href="#linearGradient8918"
4471+ id="radialGradient4436"
4472+ gradientUnits="userSpaceOnUse"
4473+ gradientTransform="matrix(0.08149757,2.9380136,-1.9765691,0.05480643,102.85337,763.88299)"
4474+ cx="25.969097"
4475+ cy="17.257854"
4476+ fx="25.968998"
4477+ fy="17.257843"
4478+ r="9.8222504" />
4479+ <radialGradient
4480+ inkscape:collect="always"
4481+ xlink:href="#linearGradient8740"
4482+ id="radialGradient4438"
4483+ gradientUnits="userSpaceOnUse"
4484+ gradientTransform="matrix(1.2130977,0,0,1.1284641,39.32502,824.65892)"
4485+ cx="62.225391"
4486+ cy="-3.4420195"
4487+ fx="62.225391"
4488+ fy="-3.4420195"
4489+ r="10.081216" />
4490+ <radialGradient
4491+ inkscape:collect="always"
4492+ xlink:href="#linearGradient3245"
4493+ id="radialGradient4544"
4494+ gradientUnits="userSpaceOnUse"
4495+ gradientTransform="matrix(1.959694,0,0,1.657851,-14.97639,-13.84084)"
4496+ cx="15.902422"
4497+ cy="21.731947"
4498+ fx="15.902422"
4499+ fy="21.731947"
4500+ r="2.9999986" />
4501+ <linearGradient
4502+ inkscape:collect="always"
4503+ xlink:href="#linearGradient3221"
4504+ id="linearGradient4546"
4505+ gradientUnits="userSpaceOnUse"
4506+ x1="14.49791"
4507+ y1="20.819609"
4508+ x2="15.223973"
4509+ y2="22.249367" />
4510+ <linearGradient
4511+ inkscape:collect="always"
4512+ xlink:href="#linearGradient3221"
4513+ id="linearGradient4548"
4514+ gradientUnits="userSpaceOnUse"
4515+ gradientTransform="translate(-6,0)"
4516+ x1="14.49791"
4517+ y1="20.819609"
4518+ x2="15.005223"
4519+ y2="21.905617" />
4520+ <linearGradient
4521+ inkscape:collect="always"
4522+ xlink:href="#linearGradient3221"
4523+ id="linearGradient4550"
4524+ gradientUnits="userSpaceOnUse"
4525+ gradientTransform="translate(-0.999989,4.2915367e-6)"
4526+ x1="14.49791"
4527+ y1="20.819609"
4528+ x2="14.911473"
4529+ y2="22.593117" />
4530+ <linearGradient
4531+ inkscape:collect="always"
4532+ xlink:href="#linearGradient3619"
4533+ id="linearGradient6771"
4534+ gradientUnits="userSpaceOnUse"
4535+ gradientTransform="matrix(5.7747637,0,0,5.7747637,-1.0468874,4.73005)"
4536+ x1="8"
4537+ y1="7"
4538+ x2="8"
4539+ y2="19" />
4540+ <linearGradient
4541+ inkscape:collect="always"
4542+ xlink:href="#linearGradient6439-0"
4543+ id="linearGradient6746-6"
4544+ gradientUnits="userSpaceOnUse"
4545+ gradientTransform="matrix(5.7747637,0,0,5.7747637,-1.046887,-5003.8934)"
4546+ x1="3.5"
4547+ y1="1044.3622"
4548+ x2="18.5"
4549+ y2="1044.3622" />
4550+ <linearGradient
4551+ id="linearGradient6439-0">
4552+ <stop
4553+ style="stop-color:#ffffff;stop-opacity:0.22142857;"
4554+ offset="0"
4555+ id="stop6441-76" />
4556+ <stop
4557+ id="stop6447-60"
4558+ offset="0.04977778"
4559+ style="stop-color:#ffffff;stop-opacity:0;" />
4560+ <stop
4561+ style="stop-color:#ffffff;stop-opacity:0;"
4562+ offset="0.93333334"
4563+ id="stop6449-8" />
4564+ <stop
4565+ style="stop-color:#ffffff;stop-opacity:0.22857143;"
4566+ offset="1"
4567+ id="stop6443-0" />
4568+ </linearGradient>
4569+ <linearGradient
4570+ inkscape:collect="always"
4571+ xlink:href="#linearGradient8432"
4572+ id="linearGradient8438"
4573+ x1="75.026443"
4574+ y1="-46.331055"
4575+ x2="75.026443"
4576+ y2="-66.652649"
4577+ gradientUnits="userSpaceOnUse"
4578+ gradientTransform="translate(0,1024.3622)" />
4579+ </defs>
4580+ <sodipodi:namedview
4581+ id="base"
4582+ pagecolor="#ffffff"
4583+ bordercolor="#666666"
4584+ borderopacity="1.0"
4585+ inkscape:pageopacity="0.0"
4586+ inkscape:pageshadow="2"
4587+ inkscape:zoom="2"
4588+ inkscape:cx="58.559921"
4589+ inkscape:cy="57.459415"
4590+ inkscape:document-units="px"
4591+ inkscape:current-layer="layer1"
4592+ showgrid="false"
4593+ showborder="true"
4594+ inkscape:showpageshadow="false"
4595+ inkscape:window-width="1024"
4596+ inkscape:window-height="694"
4597+ inkscape:window-x="0"
4598+ inkscape:window-y="25"
4599+ inkscape:window-maximized="1">
4600+ <inkscape:grid
4601+ type="xygrid"
4602+ id="grid2816"
4603+ empspacing="5"
4604+ visible="true"
4605+ enabled="true"
4606+ snapvisiblegridlinesonly="true" />
4607+ </sodipodi:namedview>
4608+ <metadata
4609+ id="metadata7">
4610+ <rdf:RDF>
4611+ <cc:Work
4612+ rdf:about="">
4613+ <dc:format>image/svg+xml</dc:format>
4614+ <dc:type
4615+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
4616+ <dc:title />
4617+ </cc:Work>
4618+ </rdf:RDF>
4619+ </metadata>
4620+ <g
4621+ inkscape:label="Layer 1"
4622+ inkscape:groupmode="layer"
4623+ id="layer1"
4624+ transform="translate(0,-924.3622)">
4625+ <path
4626+ style="opacity:0.12999998;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4034);enable-background:accumulate"
4627+ d="M 8.50264,1038.8126 L 116.44839,1038.8126 L 109.44839,1050.3621 L 15.50264,1050.3621 L 8.50264,1038.8126 L 8.50264,1038.8126 z"
4628+ id="rect17154"
4629+ sodipodi:nodetypes="ccccc"
4630+ transform="matrix(0.9166248,0,0,-1,5.2089094,2087.6747)" />
4631+ <path
4632+ style="fill:url(#radialGradient5117);fill-opacity:1;stroke:none;stroke-width:2.39999999999999991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.45539903999999998;stroke-dasharray:none"
4633+ d="m 19.164786,969.51559 7.218454,-8.66214 1.443691,-8.66215 69.297164,0 1.443691,8.66215 7.218454,8.66214 -86.621454,0 z"
4634+ id="path3631"
4635+ sodipodi:nodetypes="ccccccc" />
4636+ <g
4637+ transform="matrix(0.98893746,-0.5709633,0.5709633,0.98893746,4.7765435,951.71342)"
4638+ id="g6726">
4639+ <rect
4640+ ry="2.875"
4641+ rx="2.875"
4642+ y="8.0407381"
4643+ x="5.5"
4644+ height="36.459362"
4645+ width="37"
4646+ id="rect2157"
4647+ style="color:#000000;fill:url(#linearGradient3129);fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:6;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.4;marker:none;visibility:visible;display:inline;overflow:visible" />
4648+ <rect
4649+ ry="1.9236857"
4650+ rx="1.9236857"
4651+ y="2.4999993"
4652+ x="6.5"
4653+ height="41.000008"
4654+ width="35.000004"
4655+ id="rect3052"
4656+ style="opacity:0.3;color:#000000;fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:6;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.4;marker:none;visibility:visible;display:inline;overflow:visible" />
4657+ <path
4658+ sodipodi:nodetypes="cccccc"
4659+ id="rect3047"
4660+ d="m 42.5,17 0,-12.625 C 42.5,2.78225 41.21775,1.5 39.625,1.5 l -31.25,0 C 6.78225,1.5 5.5,2.7822502 5.5,4.375 L 5.5,17"
4661+ style="color:#000000;fill:url(#linearGradient3099);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:6;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.4;marker:none;visibility:visible;display:inline;overflow:visible" />
4662+ <rect
4663+ ry="1.1762378"
4664+ rx="1.1762378"
4665+ y="7"
4666+ x="8"
4667+ height="9"
4668+ width="32"
4669+ id="rect3045"
4670+ style="color:#000000;fill:#8ae234;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible" />
4671+ <path
4672+ sodipodi:nodetypes="cccccc"
4673+ id="path3072"
4674+ d="m 41.500004,16.510137 0,-12.1622631 c 0,-1.0495514 -0.797965,-1.8478726 -1.847049,-1.8478726 l -31.3059059,0 c -1.0490833,0 -1.8470485,0.7983215 -1.8470485,1.8478726 l 0,12.1622631"
4675+ style="opacity:0.2;color:#000000;fill:none;stroke:url(#linearGradient3402);stroke-width:1.00000036;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:6;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.4;marker:none;visibility:visible;display:inline;overflow:visible" />
4676+ <rect
4677+ y="9"
4678+ x="13"
4679+ height="5"
4680+ width="22"
4681+ id="rect3075"
4682+ style="opacity:0.6;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" />
4683+ <path
4684+ id="rect3555"
4685+ d="m 13,9 0,0.5 0,4.5 0.5,0 0,-4.5 L 35,9.5 35,9 13.5,9 13,9 z"
4686+ style="opacity:0.3;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" />
4687+ <path
4688+ sodipodi:nodetypes="ccccccc"
4689+ id="rect3109"
4690+ d="M 9.1875,7 C 8.5358642,7 8,7.535864 8,8.1875 l 0,5.03125 c 11.702209,-4.660713 24.206019,-2.226938 32,1.3125 L 40,8.1875 C 40,7.5358642 39.464137,7 38.8125,7 L 9.1875,7 z"
4691+ style="opacity:0.4;color:#000000;fill:url(#linearGradient3121);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible" />
4692+ <g
4693+ transform="translate(4.887581e-6,4.172325e-6)"
4694+ id="g3253">
4695+ <rect
4696+ style="color:#000000;fill:url(#radialGradient4544);fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:1.00000024;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:6;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.4;marker:none;visibility:visible;display:inline;overflow:visible"
4697+ id="rect3133"
4698+ width="4.9999967"
4699+ height="3.9999957"
4700+ x="13.499995"
4701+ y="19.5"
4702+ rx="1.046875"
4703+ ry="1.046875" />
4704+ <rect
4705+ style="opacity:0.4;color:#000000;fill:none;stroke:url(#linearGradient4546);stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:6;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.4;marker:none;visibility:visible;display:inline;overflow:visible"
4706+ id="rect3211"
4707+ width="3.0000131"
4708+ height="2.0000167"
4709+ x="14.499989"
4710+ y="20.499979"
4711+ rx="0"
4712+ ry="0" />
4713+ </g>
4714+ <g
4715+ id="g3279">
4716+ <rect
4717+ style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.0000006;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:6;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.4;marker:none;visibility:visible;display:inline;overflow:visible"
4718+ id="rect3131"
4719+ width="4.0000024"
4720+ height="3.9999957"
4721+ x="7.500001"
4722+ y="19.500013"
4723+ rx="1.016466"
4724+ ry="1.016466" />
4725+ <rect
4726+ style="opacity:0.3;color:#000000;fill:none;stroke:url(#linearGradient4548);stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:6;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.4;marker:none;visibility:visible;display:inline;overflow:visible"
4727+ id="rect3229"
4728+ width="2.0000114"
4729+ height="2.000021"
4730+ x="8.4999886"
4731+ y="20.499979"
4732+ rx="0"
4733+ ry="0" />
4734+ </g>
4735+ <use
4736+ height="48"
4737+ width="48"
4738+ transform="translate(0,6)"
4739+ id="use3283"
4740+ xlink:href="#g3279"
4741+ y="0"
4742+ x="0" />
4743+ <use
4744+ height="48"
4745+ width="48"
4746+ transform="translate(0,6)"
4747+ id="use3285"
4748+ xlink:href="#use3283"
4749+ y="0"
4750+ x="0" />
4751+ <use
4752+ height="48"
4753+ width="48"
4754+ transform="translate(0,6)"
4755+ id="use3287"
4756+ xlink:href="#use3285"
4757+ y="0"
4758+ x="0" />
4759+ <use
4760+ height="48"
4761+ width="48"
4762+ transform="translate(-4.887581e-6,5.999996)"
4763+ id="use3331"
4764+ xlink:href="#g3253"
4765+ y="0"
4766+ x="0" />
4767+ <use
4768+ height="48"
4769+ width="48"
4770+ transform="translate(-4.887581e-6,12)"
4771+ id="use3333"
4772+ xlink:href="#g3253"
4773+ y="0"
4774+ x="0" />
4775+ <use
4776+ height="48"
4777+ width="48"
4778+ transform="translate(6.999995,-4.172325e-6)"
4779+ id="use3335"
4780+ xlink:href="#g3253"
4781+ y="0"
4782+ x="0" />
4783+ <use
4784+ height="48"
4785+ width="48"
4786+ transform="translate(6.999995,5.999996)"
4787+ id="use3337"
4788+ xlink:href="#g3253"
4789+ y="0"
4790+ x="0" />
4791+ <use
4792+ height="48"
4793+ width="48"
4794+ transform="translate(6.999995,12)"
4795+ id="use3339"
4796+ xlink:href="#g3253"
4797+ y="0"
4798+ x="0" />
4799+ <use
4800+ height="48"
4801+ width="48"
4802+ transform="translate(6.999995,18)"
4803+ id="use3341"
4804+ xlink:href="#g3253"
4805+ y="0"
4806+ x="0" />
4807+ <use
4808+ height="48"
4809+ width="48"
4810+ transform="translate(14,-4.172325e-6)"
4811+ id="use3343"
4812+ xlink:href="#g3253"
4813+ y="0"
4814+ x="0" />
4815+ <use
4816+ height="48"
4817+ width="48"
4818+ transform="translate(14,12)"
4819+ id="use3345"
4820+ xlink:href="#g3253"
4821+ y="0"
4822+ x="0" />
4823+ <use
4824+ height="48"
4825+ width="48"
4826+ transform="translate(14,5.999996)"
4827+ id="use3347"
4828+ xlink:href="#g3253"
4829+ y="0"
4830+ x="0" />
4831+ <g
4832+ transform="translate(22,0)"
4833+ id="g3349">
4834+ <rect
4835+ style="color:#000000;fill:#888a85;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:1.00000024;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:6;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.4;marker:none;visibility:visible;display:inline;overflow:visible"
4836+ id="rect3351"
4837+ width="5.9999919"
4838+ height="3.9999957"
4839+ x="12.5"
4840+ y="19.5"
4841+ rx="1.046875"
4842+ ry="1.046875" />
4843+ <rect
4844+ style="opacity:0.4;color:#000000;fill:none;stroke:url(#linearGradient4550);stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:6;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.4;marker:none;visibility:visible;display:inline;overflow:visible"
4845+ id="rect3353"
4846+ width="4"
4847+ height="2.0000172"
4848+ x="13.5"
4849+ y="20.499983"
4850+ rx="0"
4851+ ry="0" />
4852+ </g>
4853+ <use
4854+ height="48"
4855+ width="48"
4856+ transform="translate(0,6)"
4857+ id="use3359"
4858+ xlink:href="#g3349"
4859+ y="0"
4860+ x="0" />
4861+ <g
4862+ id="use3363"
4863+ transform="translate(22,12)">
4864+ <rect
4865+ ry="1.046875"
4866+ rx="1.046875"
4867+ y="19.5"
4868+ x="12.5"
4869+ height="10"
4870+ width="6"
4871+ id="rect3367"
4872+ style="color:#000000;fill:#888a85;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:1.00000024;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:6;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.4;marker:none;visibility:visible;display:inline;overflow:visible" />
4873+ <rect
4874+ ry="0"
4875+ rx="0"
4876+ y="20.499983"
4877+ x="13.5"
4878+ height="8.0000172"
4879+ width="4"
4880+ id="rect3369"
4881+ style="opacity:0.4;color:#000000;fill:none;stroke:url(#linearGradient3371);stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:6;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.4;marker:none;visibility:visible;display:inline;overflow:visible" />
4882+ </g>
4883+ <use
4884+ height="48"
4885+ width="48"
4886+ transform="translate(-4.887581e-6,18)"
4887+ id="use3375"
4888+ xlink:href="#g3253"
4889+ y="0"
4890+ x="0" />
4891+ <g
4892+ transform="translate(14,18)"
4893+ id="use3377">
4894+ <rect
4895+ ry="1.046875"
4896+ rx="1.046875"
4897+ y="19.5"
4898+ x="13.499995"
4899+ height="3.9999957"
4900+ width="4.9999967"
4901+ id="rect3381"
4902+ style="color:#000000;fill:#888a85;fill-opacity:1;fill-rule:nonzero;stroke:#555753;stroke-width:1.00000024;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:6;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.4;marker:none;visibility:visible;display:inline;overflow:visible" />
4903+ <rect
4904+ ry="0"
4905+ rx="0"
4906+ y="20.499979"
4907+ x="14.499989"
4908+ height="2.0000167"
4909+ width="3.0000131"
4910+ id="rect3383"
4911+ style="opacity:0.4;color:#000000;fill:none;stroke:url(#linearGradient3387);stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:6;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.4;marker:none;visibility:visible;display:inline;overflow:visible" />
4912+ </g>
4913+ <path
4914+ id="text3390"
4915+ d="m 12.512552,3.7387398 0,0.452242 c -0.07537,-0.051625 -0.151265,-0.089828 -0.22767,-0.1146093 -0.07537,-0.024779 -0.153846,-0.037169 -0.235413,-0.037171 -0.154879,1.4e-6 -0.275683,0.045432 -0.362414,0.1362921 -0.0857,0.08983 -0.128548,0.2157969 -0.128548,0.3779008 0,0.1621057 0.04285,0.2885888 0.128548,0.3794496 0.08673,0.089829 0.207535,0.1347437 0.362414,0.1347434 0.08673,3e-7 0.168815,-0.012906 0.246255,-0.038719 0.07847,-0.025813 0.150745,-0.064016 0.216828,-0.1146093 l 0,0.4537908 c -0.08673,0.032008 -0.175013,0.055756 -0.26484,0.071244 -0.0888,0.01652 -0.178111,0.02478 -0.267938,0.02478 -0.312853,-10e-8 -0.557559,-0.08002 -0.734119,-0.24006 -0.176561,-0.1610721 -0.264841,-0.3846116 -0.26484,-0.6706191 -10e-7,-0.2860057 0.08828,-0.5090289 0.26484,-0.6690703 0.17656,-0.1610707 0.421266,-0.2416069 0.734119,-0.2416087 0.09086,1.8e-6 0.180172,0.00826 0.267938,0.02478 0.08879,0.01549 0.177074,0.039237 0.26484,0.071244 m 1.307165,0.3004621 c -0.12287,1.4e-6 -0.216829,0.044399 -0.281877,0.1331946 -0.06402,0.087765 -0.09602,0.2147643 -0.09602,0.3809983 0,0.1662358 0.03201,0.2937514 0.09602,0.3825472 0.06505,0.087764 0.159007,0.1316461 0.281877,0.1316458 0.120803,3e-7 0.213213,-0.043882 0.277231,-0.1316458 0.06401,-0.088796 0.09602,-0.2163114 0.09602,-0.3825472 -2e-6,-0.166234 -0.03201,-0.2932333 -0.09602,-0.3809983 C 14.03293,4.0836014 13.94052,4.0392033 13.819717,4.0392019 m 0,-0.3964861 c 0.298396,1.8e-6 0.531228,0.080538 0.698497,0.2416087 0.168298,0.1610739 0.252448,0.3840971 0.25245,0.6690703 -2e-6,0.284975 -0.08415,0.5079982 -0.25245,0.6690703 -0.167269,0.1610725 -0.400101,0.2416087 -0.698497,0.2416088 -0.29943,-10e-8 -0.533811,-0.080536 -0.703143,-0.2416088 -0.168301,-0.1610721 -0.252451,-0.3840953 -0.25245,-0.6690703 -1e-6,-0.2849732 0.08415,-0.5079964 0.25245,-0.6690703 0.169332,-0.1610707 0.403713,-0.2416069 0.703143,-0.2416087 m 2.756817,0.096024 0,0.452242 c -0.07537,-0.051625 -0.151265,-0.089828 -0.227669,-0.1146093 -0.07538,-0.024779 -0.153847,-0.037169 -0.235414,-0.037171 -0.154878,1.4e-6 -0.275683,0.045432 -0.362413,0.1362921 -0.0857,0.08983 -0.128549,0.2157969 -0.128548,0.3779008 -1e-6,0.1621057 0.04285,0.2885888 0.128548,0.3794496 0.08673,0.089829 0.207535,0.1347437 0.362413,0.1347434 0.08673,3e-7 0.168815,-0.012906 0.246255,-0.038719 0.07847,-0.025813 0.150746,-0.064016 0.216828,-0.1146093 l 0,0.4537908 c -0.08673,0.032008 -0.175013,0.055756 -0.26484,0.071244 -0.0888,0.01652 -0.17811,0.02478 -0.267938,0.02478 -0.312853,-10e-8 -0.557559,-0.08002 -0.734119,-0.24006 -0.17656,-0.1610721 -0.26484,-0.3846116 -0.26484,-0.6706191 0,-0.2860057 0.08828,-0.5090289 0.26484,-0.6690703 0.17656,-0.1610707 0.421266,-0.2416069 0.734119,-0.2416087 0.09086,1.8e-6 0.180173,0.00826 0.267938,0.02478 0.0888,0.01549 0.177075,0.039237 0.26484,0.071244 m 1.307165,0.3004621 c -0.12287,1.4e-6 -0.216829,0.044399 -0.281876,0.1331946 -0.06402,0.087765 -0.09603,0.2147643 -0.09602,0.3809983 -1e-6,0.1662358 0.03201,0.2937514 0.09602,0.3825472 0.06505,0.087764 0.159006,0.1316461 0.281876,0.1316458 0.120804,3e-7 0.213214,-0.043882 0.277231,-0.1316458 0.06401,-0.088796 0.09602,-0.2163114 0.09602,-0.3825472 -2e-6,-0.166234 -0.03201,-0.2932333 -0.09602,-0.3809983 -0.06402,-0.088795 -0.156427,-0.1331932 -0.277231,-0.1331946 m 0,-0.3964861 c 0.298396,1.8e-6 0.531228,0.080538 0.698497,0.2416087 0.168299,0.1610739 0.252449,0.3840971 0.252451,0.6690703 -2e-6,0.284975 -0.08415,0.5079982 -0.252451,0.6690703 -0.167269,0.1610725 -0.400101,0.2416087 -0.698497,0.2416088 -0.29943,-10e-8 -0.533811,-0.080536 -0.703143,-0.2416088 -0.1683,-0.1610721 -0.25245,-0.3840953 -0.25245,-0.6690703 0,-0.2849732 0.08415,-0.5079964 0.25245,-0.6690703 0.169332,-0.1610707 0.403713,-0.2416069 0.703143,-0.2416087 m 2.132662,0.9958616 c -0.115643,8e-7 -0.20289,0.019619 -0.261743,0.058853 -0.05782,0.039236 -0.08673,0.097057 -0.08673,0.1734627 -1e-6,0.070212 0.02323,0.1254511 0.06969,0.1657188 0.0475,0.039236 0.113059,0.058854 0.196694,0.058853 0.104283,3e-7 0.192047,-0.03717 0.263292,-0.1115117 0.07124,-0.075373 0.106864,-0.169332 0.106865,-0.2818769 l 0,-0.0635 -0.288072,0 m 0.847179,-0.2090845 0,0.9896665 -0.559107,0 0,-0.2570964 c -0.07434,0.1053167 -0.157976,0.1822391 -0.250901,0.2307673 -0.09293,0.047496 -0.205988,0.071244 -0.339182,0.071244 -0.179658,-10e-8 -0.325759,-0.052142 -0.438303,-0.1564262 -0.111512,-0.1053164 -0.167268,-0.2416084 -0.167267,-0.4088763 -10e-7,-0.2034049 0.06969,-0.3526033 0.209084,-0.4475956 0.140422,-0.09499 0.360347,-0.1424861 0.659778,-0.1424872 l 0.326791,0 0,-0.043366 c -10e-7,-0.087763 -0.03459,-0.1517785 -0.103768,-0.192048 -0.06918,-0.041299 -0.177077,-0.06195 -0.323694,-0.061951 -0.11874,1.4e-6 -0.229219,0.011875 -0.331437,0.035622 -0.10222,0.023749 -0.197211,0.059371 -0.284975,0.1068654 l 0,-0.4228153 c 0.118739,-0.028909 0.237995,-0.050591 0.357767,-0.065049 0.119771,-0.015486 0.239543,-0.02323 0.359316,-0.023232 0.312851,1.8e-6 0.538455,0.061953 0.676814,0.1858529 0.139388,0.1228708 0.209082,0.3231787 0.209084,0.6009242"
4916+ style="font-size:3.17188883px;font-style:normal;font-weight:bold;fill:#eeeeec;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
4917+ transform="scale(0.910679,1.098081)" />
4918+ <rect
4919+ y="4"
4920+ x="31"
4921+ height="2"
4922+ width="8"
4923+ id="rect3394"
4924+ style="opacity:0.3;color:#000000;fill:#fcaf3e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible" />
4925+ <g
4926+ id="g3522">
4927+ <path
4928+ style="font-size:2.1034534px;font-style:normal;font-weight:bold;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial"
4929+ d="m 16.500046,34.000104 -0.436339,0 0,-0.719423 c -0.159423,0.06522 -0.347312,0.11345 -0.56367,0.1447 l 0,-0.173233 c 0.113872,-0.0163 0.23758,-0.0471 0.371122,-0.09239 0.133541,-0.04574 0.225156,-0.09896 0.274846,-0.159645 l 0.354041,0 0,0.999991"
4930+ id="text3443" />
4931+ <path
4932+ style="font-size:2.10345578px;font-style:normal;font-weight:bold;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial"
4933+ d="m 23.764759,33.822846 0,0.177308 -1.529518,0 c 0.01656,-0.06703 0.06625,-0.130433 0.149069,-0.190215 0.08282,-0.06024 0.246379,-0.139945 0.490688,-0.239129 0.196689,-0.08016 0.317289,-0.13451 0.361805,-0.163042 0.06004,-0.0394 0.09006,-0.07835 0.09006,-0.116847 -2e-6,-0.04257 -0.0264,-0.07518 -0.07919,-0.09783 -0.05176,-0.0231 -0.123709,-0.03465 -0.215841,-0.03465 -0.0911,10e-7 -0.163563,0.012 -0.217393,0.03601 -0.05383,0.024 -0.08489,0.06386 -0.09317,0.119565 l -0.434788,-0.01902 c 0.02588,-0.105071 0.107145,-0.180478 0.243793,-0.226221 0.136646,-0.04574 0.307456,-0.06861 0.512426,-0.06861 0.22464,0 0.401142,0.02649 0.529509,0.07948 0.128364,0.05299 0.192548,0.118885 0.192549,0.197688 -1e-6,0.04484 -0.01864,0.08764 -0.0559,0.128396 -0.03623,0.04031 -0.09421,0.08265 -0.173915,0.127037 -0.0528,0.02944 -0.148037,0.07178 -0.285717,0.127037 -0.137685,0.05525 -0.225159,0.09194 -0.262425,0.110053 -0.03623,0.01812 -0.06574,0.03578 -0.08851,0.05299 l 0.866469,0"
4934+ id="text3447" />
4935+ <path
4936+ style="font-size:2.10345769px;font-style:normal;font-weight:bold;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial"
4937+ d="m 29.275646,33.73593 0.422364,-0.02242 c 0.01346,0.0471 0.04969,0.08311 0.108698,0.108016 0.059,0.02491 0.130435,0.03736 0.214288,0.03736 0.09006,0 0.165631,-0.01494 0.22671,-0.04484 0.06211,-0.02989 0.09317,-0.0702 0.09317,-0.120923 -2e-6,-0.04801 -0.0295,-0.08605 -0.08851,-0.11413 -0.05901,-0.02808 -0.130955,-0.04212 -0.215841,-0.04212 -0.0559,0 -0.122673,0.0048 -0.200314,0.01427 l 0.04814,-0.15557 c 0.118013,0.0014 0.208076,-0.0097 0.27019,-0.03329 0.06211,-0.024 0.09317,-0.0557 0.09317,-0.09511 0,-0.03351 -0.02277,-0.06023 -0.06832,-0.08016 -0.04555,-0.01993 -0.106111,-0.02989 -0.181679,-0.02989 -0.07454,1e-6 -0.138202,0.01132 -0.190996,0.03397 -0.0528,0.02265 -0.08489,0.05571 -0.09628,0.09918 l -0.402177,-0.02989 c 0.02795,-0.06023 0.06987,-0.108241 0.125777,-0.14402 0.05693,-0.03623 0.135612,-0.06454 0.236027,-0.08492 0.10145,-0.02083 0.214805,-0.03125 0.340066,-0.03125 0.214286,10e-7 0.386132,0.02989 0.515533,0.08967 0.106626,0.04891 0.159939,0.104167 0.159941,0.16576 -2e-6,0.08741 -0.109216,0.157155 -0.327644,0.209237 0.130435,0.01223 0.234473,0.03963 0.312115,0.0822 0.07867,0.04257 0.118012,0.09398 0.118014,0.154211 -2e-6,0.08741 -0.07298,0.16191 -0.218946,0.223504 -0.145967,0.06159 -0.327646,0.09239 -0.545038,0.09239 -0.206007,0 -0.376816,-0.02582 -0.512428,-0.07745 -0.135611,-0.05208 -0.214288,-0.120017 -0.236027,-0.203803"
4938+ id="text3451" />
4939+ <path
4940+ style="font-size:2.10346055px;font-style:normal;font-weight:bold;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial"
4941+ d="m 30.769506,27.248206 -0.422366,0.02038 c -0.01035,-0.03804 -0.03727,-0.06612 -0.08075,-0.08424 -0.04348,-0.01812 -0.0999,-0.02717 -0.169257,-0.02717 -0.09213,1e-6 -0.170293,0.01812 -0.234475,0.05435 -0.06315,0.03623 -0.103004,0.11164 -0.119566,0.226222 0.108696,-0.05616 0.243791,-0.08424 0.405283,-0.08424 0.182195,10e-7 0.337995,0.03035 0.467398,0.09103 0.130434,0.06069 0.195653,0.13904 0.195654,0.235053 -10e-7,0.101902 -0.06833,0.183649 -0.204972,0.245243 -0.136649,0.06159 -0.312117,0.09239 -0.526403,0.09239 -0.229817,0 -0.418744,-0.03895 -0.566777,-0.116847 -0.148036,-0.07835 -0.222053,-0.20652 -0.222053,-0.384508 0,-0.182517 0.07712,-0.314083 0.231369,-0.394699 0.154246,-0.08061 0.354558,-0.120923 0.600939,-0.120923 0.17288,0 0.315738,0.02129 0.428576,0.06386 0.113873,0.04212 0.186337,0.103487 0.217396,0.184102 m -0.989144,0.416437 c 0,0.06205 0.03261,0.110055 0.09783,0.144021 0.06522,0.03352 0.139753,0.05027 0.223606,0.05027 0.08075,0 0.148033,-0.01381 0.201867,-0.04144 0.05383,-0.02763 0.08074,-0.07292 0.08075,-0.135869 -2e-6,-0.06476 -0.02899,-0.112091 -0.08696,-0.141982 -0.05797,-0.03034 -0.130437,-0.04552 -0.217393,-0.04552 -0.08385,10e-7 -0.154765,0.01449 -0.212736,0.04348 -0.05797,0.02853 -0.08696,0.07088 -0.08696,0.127037"
4942+ id="text3455" />
4943+ <path
4944+ style="font-size:2.10346389px;font-style:normal;font-weight:bold;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial"
4945+ d="m 22.297487,27.744179 0.434789,-0.0197 c 0.01242,0.04303 0.04917,0.07722 0.11025,0.10258 0.06108,0.02491 0.131471,0.03737 0.211183,0.03737 0.0911,0 0.16822,-0.01608 0.231369,-0.04823 0.06315,-0.03261 0.09472,-0.08152 0.09472,-0.146739 -1e-6,-0.06114 -0.03158,-0.106882 -0.09472,-0.137227 -0.06211,-0.0308 -0.143376,-0.0462 -0.243792,-0.0462 -0.125262,1e-6 -0.237582,0.02423 -0.336961,0.07269 l -0.354042,-0.02242 0.223606,-0.51834 1.153742,0 0,0.178667 -0.822992,0 -0.06832,0.169158 c 0.09731,-0.02129 0.19669,-0.03193 0.298141,-0.03193 0.193583,1e-6 0.357664,0.0308 0.492243,0.09239 0.134576,0.0616 0.201865,0.141531 0.201867,0.239809 -2e-6,0.08197 -0.05435,0.155117 -0.163047,0.219428 -0.148036,0.08786 -0.353525,0.131793 -0.616467,0.131793 -0.210149,0 -0.381477,-0.02468 -0.513984,-0.07405 -0.132506,-0.04937 -0.211699,-0.115715 -0.23758,-0.199048"
4946+ id="text3459" />
4947+ <path
4948+ style="font-size:2.10346723px;font-style:normal;font-weight:bold;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial"
4949+ d="m 16.146912,28.000345 0,-0.200406 -0.931691,0 0,-0.16712 0.987593,-0.632471 0.366464,0 0,0.631792 0.282614,0 0,0.167799 -0.282614,0 0,0.200406 -0.422366,0 m 0,-0.368205 0,-0.340352 -0.523299,0.340352 0.523299,0"
4950+ id="text3467" />
4951+ <path
4952+ style="font-size:2.10347009px;font-style:normal;font-weight:bold;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial"
4953+ d="m 15.291336,21.19536 0,-0.17731 1.492262,0 0,0.138587 c -0.123193,0.05299 -0.248454,0.129076 -0.375783,0.22826 -0.127333,0.09919 -0.224643,0.20471 -0.291931,0.316576 -0.06626,0.111413 -0.09886,0.21105 -0.09783,0.298912 l -0.420814,0 c 0.0072,-0.13768 0.07195,-0.278078 0.194101,-0.421194 0.123191,-0.143116 0.287271,-0.271059 0.492245,-0.383831 l -0.992253,0"
4954+ id="text3473" />
4955+ <path
4956+ style="font-size:2.10347342px;font-style:normal;font-weight:bold;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial"
4957+ d="m 22.665601,21.463056 c -0.112839,-0.02083 -0.195139,-0.04937 -0.246899,-0.0856 -0.05073,-0.03668 -0.07609,-0.07677 -0.07609,-0.120244 0,-0.07428 0.05901,-0.135642 0.177022,-0.184104 0.119049,-0.04846 0.287789,-0.07269 0.50622,-0.07269 0.216359,2e-6 0.384064,0.02423 0.503115,0.07269 0.120083,0.04846 0.180126,0.109829 0.180127,0.184104 -10e-7,0.0462 -0.02743,0.08741 -0.0823,0.123642 -0.05487,0.03578 -0.131991,0.06318 -0.23137,0.0822 0.126295,0.02219 0.222052,0.05457 0.287273,0.09715 0.06625,0.04257 0.09938,0.09171 0.09938,0.147418 -2e-6,0.09194 -0.06729,0.166667 -0.201867,0.224186 -0.133544,0.05752 -0.311601,0.08628 -0.534172,0.08628 -0.207043,0 -0.379407,-0.02378 -0.51709,-0.07133 -0.162529,-0.05616 -0.243792,-0.133152 -0.243792,-0.230978 0,-0.0539 0.03054,-0.10326 0.09162,-0.148098 0.06108,-0.04529 0.157353,-0.08016 0.288825,-0.10462 m 0.09006,-0.192255 c -2e-6,0.03804 0.02433,0.06771 0.07298,0.089 0.04969,0.02129 0.115426,0.03193 0.197209,0.03193 0.08282,1e-6 0.14907,-0.01064 0.198761,-0.03193 0.04969,-0.02174 0.07453,-0.05163 0.07454,-0.08967 -1e-6,-0.03578 -0.02485,-0.06431 -0.07454,-0.0856 -0.04866,-0.02174 -0.113357,-0.03261 -0.194103,-0.03261 -0.08385,1e-6 -0.150625,0.01087 -0.200314,0.03261 -0.04969,0.02174 -0.07454,0.0505 -0.07454,0.08628 m -0.04037,0.42663 c -2e-6,0.05254 0.03054,0.09352 0.09162,0.122963 0.06211,0.02944 0.139236,0.04416 0.231371,0.04416 0.09006,1e-6 0.164597,-0.01404 0.223606,-0.04212 0.05901,-0.02853 0.08851,-0.06952 0.08851,-0.122963 -2e-6,-0.04665 -0.03002,-0.08401 -0.09006,-0.112092 -0.06004,-0.02853 -0.136132,-0.0428 -0.228265,-0.0428 -0.106628,0 -0.18634,0.01608 -0.239135,0.04823 -0.05176,0.03216 -0.07764,0.06703 -0.07764,0.104619"
4958+ id="text3477" />
4959+ <path
4960+ style="font-size:2.10347676px;font-style:normal;font-weight:bold;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial"
4961+ d="m 29.300734,21.770157 0.422369,-0.02038 c 0.01035,0.03759 0.03727,0.06544 0.08075,0.08356 0.04348,0.01812 0.100933,0.02717 0.172364,0.02717 0.09006,0 0.166669,-0.01812 0.229818,-0.05435 0.06315,-0.03623 0.10352,-0.111413 0.121121,-0.225543 -0.109735,0.05571 -0.246901,0.08356 -0.4115,0.08356 -0.179093,1e-6 -0.333857,-0.03012 -0.464294,-0.09035 -0.129403,-0.06069 -0.194103,-0.139493 -0.194103,-0.236414 0,-0.100996 0.06832,-0.182291 0.204972,-0.243886 0.137684,-0.06205 0.312635,-0.09307 0.524855,-0.09307 0.230852,10e-7 0.420297,0.03918 0.568335,0.117527 0.148034,0.0779 0.222052,0.206297 0.222054,0.385191 -2e-6,0.182067 -0.07713,0.313407 -0.231371,0.394023 -0.154249,0.08062 -0.355082,0.120924 -0.602496,0.120924 -0.178058,0 -0.321953,-0.02061 -0.431687,-0.06182 -0.109733,-0.04167 -0.180127,-0.103714 -0.211184,-0.186141 m 0.987597,-0.417121 c 0,-0.06159 -0.03261,-0.109374 -0.09783,-0.143343 -0.06419,-0.03397 -0.13872,-0.05095 -0.223607,-0.05095 -0.08075,0 -0.148037,0.01404 -0.201867,0.04212 -0.0528,0.02763 -0.07919,0.07314 -0.07919,0.136549 0,0.06431 0.02899,0.111641 0.08696,0.141984 0.05797,0.02989 0.130437,0.04484 0.217395,0.04484 0.08385,1e-6 0.154248,-0.01449 0.211185,-0.04348 0.05797,-0.02899 0.08696,-0.07156 0.08696,-0.127718"
4962+ id="text3481" />
4963+ <path
4964+ style="font-size:2.10345864px;font-style:normal;font-weight:bold;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial"
4965+ d="m 23.028762,39.000222 c 0.220499,10e-7 0.392861,0.03442 0.517087,0.10326 0.148034,0.08152 0.22205,0.216711 0.222052,0.405568 -2e-6,0.188405 -0.07454,0.32382 -0.223605,0.406247 -0.123191,0.06793 -0.295035,0.101902 -0.515534,0.101902 -0.221535,0 -0.400108,-0.03714 -0.53572,-0.111412 -0.135613,-0.07473 -0.203419,-0.207653 -0.203419,-0.398775 0,-0.187498 0.07454,-0.322461 0.223606,-0.404888 0.123188,-0.06793 0.295034,-0.101901 0.515533,-0.101902 m 0,0.158287 c -0.0528,10e-7 -0.0999,0.0075 -0.141306,0.02242 -0.04141,0.01449 -0.0735,0.04076 -0.09627,0.0788 -0.03002,0.04937 -0.04503,0.132473 -0.04503,0.249319 -2e-6,0.116848 0.01346,0.197236 0.04037,0.241167 0.02691,0.04348 0.06056,0.07246 0.100932,0.08696 0.04141,0.01449 0.08851,0.02174 0.141306,0.02174 0.05279,0 0.0999,-0.0072 0.141307,-0.02174 0.04141,-0.01495 0.0735,-0.04144 0.09627,-0.07948 0.03002,-0.04891 0.04503,-0.131792 0.04503,-0.24864 -1e-6,-0.116846 -0.01346,-0.197008 -0.04037,-0.240488 -0.02692,-0.04393 -0.06108,-0.07314 -0.102486,-0.08764 -0.04037,-0.01494 -0.08696,-0.02242 -0.139753,-0.02242"
4966+ id="text3485" />
4967+ </g>
4968+ </g>
4969+ <g
4970+ id="g4385"
4971+ transform="translate(1,100)">
4972+ <path
4973+ id="path6495"
4974+ d="m 96.220074,853.61416 c 0,14.40399 -11.677202,26.08114 -26.079509,26.08114 -14.403624,0 -26.080155,-11.67715 -26.080155,-26.08114 0,-14.40399 11.676531,-26.07999 26.080155,-26.07999 14.402307,0 26.079509,11.676 26.079509,26.07999 l 0,0 z"
4975+ style="fill:url(#radialGradient4398);fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:1.15495276;stroke-miterlimit:4;stroke-dasharray:none" />
4976+ <path
4977+ d="m 71.307593,834.64522 -0.09673,0.65197 0.67358,0.43888 1.150957,-0.76054 -0.575397,-0.65312 -0.768974,0.43888 -0.383155,-0.10972"
4978+ id="path6534"
4979+ style="color:#000000;fill:url(#radialGradient4400);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient4402);stroke-width:1.32126439;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4980+ <path
4981+ d="m 73.214402,839.32104 -0.384483,-0.97998 -0.67358,0.21367 0.19357,1.1948 0.864505,-0.42733"
4982+ id="path6550"
4983+ style="color:#000000;fill:url(#radialGradient4404);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient4406);stroke-width:1.32126439;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4984+ <path
4985+ d="m 74.095706,839.10102 -0.192299,1.30568 1.056747,-0.21367 0.767784,-0.75938 -0.672258,-0.65313 c -0.225793,-0.59999 -0.485196,-1.16303 -0.767784,-1.73936 l -0.575455,0 0,0.65198 0.383156,0.43888 0,0.97824"
4986+ id="path6558"
4987+ style="color:#000000;fill:url(#radialGradient4408);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient4410);stroke-width:1.32126439;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4988+ <path
4989+ d="m 59.013623,835.07948 0.960032,0.65197 0.768979,0 0,-0.75996 -0.960032,-0.43888 -0.768979,0.54282"
4990+ id="path6574"
4991+ style="color:#000000;fill:url(#radialGradient4412);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient4414);stroke-width:1.32126439;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4992+ <path
4993+ d="m 61.592558,832.98728 0.480691,-0.43888 0.96069,-0.21367 c 0.657982,-0.31761 1.318621,-0.53705 2.016772,-0.76169 l -0.383155,-0.65197 -1.240015,0.17324 -0.58581,0.58037 -0.965846,0.14437 -0.85869,0.40423 -0.4174,0.20212 -0.254898,0.34071 1.247672,0.21366"
4994+ id="path6610"
4995+ style="color:#000000;fill:url(#radialGradient4416);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient4418);stroke-width:1.32126439;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4996+ <path
4997+ d="m 62.105212,842.56704 0.576726,-0.86968 -0.865169,-0.65197 0.288391,1.52107"
4998+ id="path6618"
4999+ style="color:#000000;fill:url(#radialGradient4420);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient4422);stroke-width:1.32126439;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
5000+ <path
The diff has been truncated for viewing.