Merge lp:~brian-murray/software-center/apport-hook into lp:software-center

Proposed by Brian Murray
Status: Merged
Merge reported by: Michael Vogt
Merged at revision: not available
Proposed branch: lp:~brian-murray/software-center/apport-hook
Merge into: lp:software-center
Diff against target: 76105 lines (+74463/-0) (has conflicts)
271 files modified
.bzr-builddeb/default.conf (+2/-0)
AUTHORS (+27/-0)
COPYING (+676/-0)
COPYING.LGPL (+165/-0)
README (+91/-0)
TODO (+79/-0)
apt-xapian-index-plugin/display_name.py (+100/-0)
apt-xapian-index-plugin/origin.py (+106/-0)
apt-xapian-index-plugin/software-center.py (+145/-0)
contrib/appstream-xml/appdata.xml (+34/-0)
daily-build.recipe (+2/-0)
data/com.ubuntu.SoftwareCenter.conf (+15/-0)
data/featured.menu.in (+35/-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 (+19/-0)
data/software-center.menu.in (+542/-0)
data/sources/softwarecenter-progress.svg (+4743/-0)
data/templates/AppDetailsViewWebkit.html (+355/-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 (+506/-0)
data/ui/dialogs.ui (+592/-0)
data/ui/login.ui (+228/-0)
data/ui/report_abuse.ui (+317/-0)
data/ui/submit_review.ui (+477/-0)
data/ui/submit_usefulness.ui (+247/-0)
data/unbranded-software-center.desktop.in (+12/-0)
debian/TODO (+3/-0)
debian/changelog (+4702/-0)
debian/compat (+1/-0)
debian/control (+66/-0)
debian/copyright (+38/-0)
debian/rules (+44/-0)
debian/software-center.dirs (+4/-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)
debian/source_software-center.py (+14/-0)
doc/example_plugin.py (+41/-0)
help/C/legal.xml (+76/-0)
help/C/software-center-C.omf (+30/-0)
help/C/software-center.xml (+332/-0)
man/software-center.1 (+52/-0)
man/update-software-center.8 (+23/-0)
po/POTFILES.in (+53/-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 (+516/-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 (+1815/-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)
run_against_rnr_testing_env.sh (+13/-0)
run_local.sh (+18/-0)
setup.cfg (+23/-0)
setup.py (+125/-0)
software-center (+140/-0)
software-center-qml (+3/-0)
softwarecenter/__init__.py (+18/-0)
softwarecenter/app.py (+1232/-0)
softwarecenter/backend/__init__.py (+23/-0)
softwarecenter/backend/aptd.py (+748/-0)
softwarecenter/backend/channel.py (+490/-0)
softwarecenter/backend/installbackend.py (+43/-0)
softwarecenter/backend/launchpad.py (+326/-0)
softwarecenter/backend/login.py (+58/-0)
softwarecenter/backend/login_sso.py (+86/-0)
softwarecenter/backend/restfulclient.py (+533/-0)
softwarecenter/backend/reviews.py (+872/-0)
softwarecenter/backend/rnrclient.py (+83/-0)
softwarecenter/backend/rnrclient_pristine.py (+169/-0)
softwarecenter/backend/transactionswatcher.py (+47/-0)
softwarecenter/backend/weblive.py (+377/-0)
softwarecenter/backend/weblive_pristine.py (+231/-0)
softwarecenter/backend/zeitgeist_simple.py (+136/-0)
softwarecenter/cmdfinder.py (+84/-0)
softwarecenter/config.py (+49/-0)
softwarecenter/db/application.py (+585/-0)
softwarecenter/db/categories.py (+314/-0)
softwarecenter/db/database.py (+511/-0)
softwarecenter/db/debfile.py (+178/-0)
softwarecenter/db/history.py (+110/-0)
softwarecenter/db/history_impl/apthistory.py (+157/-0)
softwarecenter/db/pkginfo.py (+123/-0)
softwarecenter/db/pkginfo_impl/aptcache.py (+586/-0)
softwarecenter/db/update.py (+778/-0)
softwarecenter/distro/Debian.py (+86/-0)
softwarecenter/distro/Ubuntu.py (+243/-0)
softwarecenter/distro/__init__.py (+170/-0)
softwarecenter/drawing.py (+86/-0)
softwarecenter/enums.py (+185/-0)
softwarecenter/gwibber_helper.py (+116/-0)
softwarecenter/log.py (+121/-0)
softwarecenter/netstatus.py (+134/-0)
softwarecenter/paths.py (+83/-0)
softwarecenter/plugin.py (+127/-0)
softwarecenter/ui/gtk/SimpleGtkbuilderApp.py (+60/-0)
softwarecenter/ui/gtk/appdetailsview.py (+181/-0)
softwarecenter/ui/gtk/appdetailsview_gtk.py (+1875/-0)
softwarecenter/ui/gtk/appdetailsview_webkit.py (+568/-0)
softwarecenter/ui/gtk/appview.py (+1237/-0)
softwarecenter/ui/gtk/availablepane.py (+788/-0)
softwarecenter/ui/gtk/basepane.py (+57/-0)
softwarecenter/ui/gtk/catview_gtk.py (+597/-0)
softwarecenter/ui/gtk/catview_webkit.py (+256/-0)
softwarecenter/ui/gtk/channelpane.py (+282/-0)
softwarecenter/ui/gtk/deauthorize_dialog.py (+110/-0)
softwarecenter/ui/gtk/dependency_dialogs.py (+135/-0)
softwarecenter/ui/gtk/dialogs.py (+140/-0)
softwarecenter/ui/gtk/historypane.py (+367/-0)
softwarecenter/ui/gtk/installedpane.py (+246/-0)
softwarecenter/ui/gtk/logindialog.py (+135/-0)
softwarecenter/ui/gtk/models/appstore.py (+588/-0)
softwarecenter/ui/gtk/models/viewswitcherlist.py (+235/-0)
softwarecenter/ui/gtk/navhistory.py (+263/-0)
softwarecenter/ui/gtk/pendingview.py (+303/-0)
softwarecenter/ui/gtk/purchaseview.py (+349/-0)
softwarecenter/ui/gtk/softwarepane.py (+822/-0)
softwarecenter/ui/gtk/viewmanager.py (+52/-0)
softwarecenter/ui/gtk/viewswitcher.py (+450/-0)
softwarecenter/ui/gtk/widgets/actionbar.py (+371/-0)
softwarecenter/ui/gtk/widgets/actionbar2.py (+122/-0)
softwarecenter/ui/gtk/widgets/animatedimage.py (+187/-0)
softwarecenter/ui/gtk/widgets/backforward.py (+349/-0)
softwarecenter/ui/gtk/widgets/buttons.py (+168/-0)
softwarecenter/ui/gtk/widgets/carousel.py (+712/-0)
softwarecenter/ui/gtk/widgets/description.py (+1165/-0)
softwarecenter/ui/gtk/widgets/dialogs.py (+39/-0)
softwarecenter/ui/gtk/widgets/gbwidget.py (+78/-0)
softwarecenter/ui/gtk/widgets/imagedialog.py (+155/-0)
softwarecenter/ui/gtk/widgets/label.py (+849/-0)
softwarecenter/ui/gtk/widgets/mkit.py (+1492/-0)
softwarecenter/ui/gtk/widgets/mkit_themes.py (+687/-0)
softwarecenter/ui/gtk/widgets/packagenamesview.py (+69/-0)
softwarecenter/ui/gtk/widgets/pathbar_gtk_atk.py (+863/-0)
softwarecenter/ui/gtk/widgets/reviews.py (+1386/-0)
softwarecenter/ui/gtk/widgets/searchentry.py (+150/-0)
softwarecenter/ui/gtk/widgets/spinner.py (+107/-0)
softwarecenter/ui/gtk/widgets/thumbnail.py (+593/-0)
softwarecenter/ui/gtk/widgets/urltextview.py (+188/-0)
softwarecenter/ui/gtk/widgets/weblivedialog.py (+116/-0)
softwarecenter/ui/gtk/widgets/wkwidget.py (+202/-0)
softwarecenter/ui/qml/AppListView.qml (+223/-0)
softwarecenter/ui/qml/Button.qml (+51/-0)
softwarecenter/ui/qml/CategoriesView.qml (+100/-0)
softwarecenter/ui/qml/CloudsHeader.qml (+35/-0)
softwarecenter/ui/qml/DetailsView.qml (+308/-0)
softwarecenter/ui/qml/NavigationBar.qml (+69/-0)
softwarecenter/ui/qml/ProgressBar.qml (+47/-0)
softwarecenter/ui/qml/ScrollBar.qml (+74/-0)
softwarecenter/ui/qml/SearchBox.qml (+95/-0)
softwarecenter/ui/qml/app.py (+70/-0)
softwarecenter/ui/qml/categoriesmodel.py (+94/-0)
softwarecenter/ui/qml/pkglist.py (+175/-0)
softwarecenter/ui/qml/reviewslist.py (+93/-0)
softwarecenter/ui/qml/sc.qml (+151/-0)
softwarecenter/utils.py (+521/-0)
softwarecenter/version.py (+5/-0)
test/Makefile (+24/-0)
test/axi-test-values (+18/-0)
test/channel_query.py (+39/-0)
test/create_transactions.py (+52/-0)
test/data/app-info-json/apps.json (+12/-0)
test/data/app-info/appdata.xml (+34/-0)
test/data/app-info/archive.ubuntu.com_ubuntu_dists_maverick_main_amd64_AppInfo (+12/-0)
test/data/app-install/desktop/deja-dup.desktop (+54/-0)
test/data/app-install/desktop/kde4__soundkonverter.desktop (+15/-0)
test/data/appdetails/var/lib/dpkg/status (+25/-0)
test/data/applications/deja-dup.desktop (+147/-0)
test/data/applications/kde4/soundkonverter.desktop (+10/-0)
test/data/apt-history/history.log (+184/-0)
test/data/aptroot/etc/apt/sources.list (+3/-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/fake-applications.menu (+287/-0)
test/data/plugins/mock_plugin.py (+8/-0)
test/disabled_test_gnomekeyring.py (+63/-0)
test/disabled_test_gui_ldtp.py (+77/-0)
test/graph/gen-startup-data.sh (+35/-0)
test/graph/gnuplot.plot (+28/-0)
test/graph/plot-startup-data.py (+41/-0)
test/mago/mago_simple.py (+128/-0)
test/test_addons.py (+66/-0)
test/test_appdetails_view.py (+215/-0)
test/test_appstore.py (+147/-0)
test/test_appview_ui.py (+66/-0)
test/test_aptcache.py (+37/-0)
test/test_aptd.py (+56/-0)
test/test_apthistory.py (+101/-0)
test/test_cat_parsing.py (+43/-0)
test/test_catview.py (+90/-0)
test/test_cmdfiner.py (+31/-0)
test/test_custom_lists.py (+75/-0)
test/test_database.py (+308/-0)
test/test_distro.py (+31/-0)
test/test_downloader.py (+60/-0)
test/test_gui.py (+255/-0)
test/test_gui_buy_something.py (+163/-0)
test/test_gui_withmainloop.py (+128/-0)
test/test_gwibber.py (+54/-0)
test/test_htmlize.py (+105/-0)
test/test_launchpad.py (+43/-0)
test/test_load_icons.py (+41/-0)
test/test_mime.py (+37/-0)
test/test_origin.py (+33/-0)
test/test_package_info.py (+44/-0)
test/test_plugin.py (+28/-0)
test/test_ppa_iconfilename.py (+56/-0)
test/test_reinstall_purchased.py (+93/-0)
test/test_reviews.py (+146/-0)
test/test_search_per_spec.py (+88/-0)
test/test_software_channels.py (+80/-0)
test/test_startup.py (+72/-0)
test/test_ui_qml_helpers.py (+104/-0)
test/test_unity_launcher_integration.py (+163/-0)
test/test_utils.py (+65/-0)
test/test_viewswitcher.py (+64/-0)
test/test_where_is_it.py (+77/-0)
test/test_xapian.py (+105/-0)
test/xapian_query.py (+77/-0)
utils/bench.py (+88/-0)
utils/get_review_stats_helper.py (+65/-0)
utils/get_reviews_helper.py (+92/-0)
utils/get_useful_votes_helper.py (+45/-0)
utils/installedapps.py (+31/-0)
utils/query.py (+72/-0)
utils/search_query.py (+54/-0)
utils/stats.py (+67/-0)
utils/submit_review.py (+1224/-0)
utils/topapps.py (+34/-0)
utils/update-software-center (+174/-0)
utils/update-software-center-agent (+104/-0)
utils/wildcard_query_parser.py (+41/-0)
utils/x2go_helper.py (+102/-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 contrib.  Moved existing file to contrib.moved.
Conflict adding file daily-build.recipe.  Moved existing file to daily-build.recipe.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 run_against_rnr_testing_env.sh.  Moved existing file to run_against_rnr_testing_env.sh.moved.
Conflict adding file run_local.sh.  Moved existing file to run_local.sh.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-qml.  Moved existing file to software-center-qml.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:~brian-murray/software-center/apport-hook
Reviewer Review Type Date Requested Status
Michael Vogt Approve
Review via email: mp+63924@code.launchpad.net

Description of the change

I've added an apport package hook for software-center.

To post a comment you must log in.
Revision history for this message
Michael Vogt (mvo) wrote :

Thanks! merged manually in trunk now.

review: Approve

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